diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 000000000..e69de29bb diff --git a/404.html b/404.html new file mode 100644 index 000000000..d411b936a --- /dev/null +++ b/404.html @@ -0,0 +1 @@ +Oops! Nothing here...

HTTP 404

Oops! Nothing here...

Maybe the webpage was moved or deleted; or did you maybe mistype the link?

No problem!

Try…
…to start over on the home page;
…to search below;
if you can’t find it, ask about it.

diff --git a/CITATION b/CITATION new file mode 100644 index 000000000..a2413086b --- /dev/null +++ b/CITATION @@ -0,0 +1,29 @@ +To reference Software Carpentry in publications, please cite: + +Greg Wilson: "Software Carpentry: Lessons Learned". F1000Research, +2016, 3:62 (doi: 10.12688/f1000research.3-62.v2). + +@online{wilson-software-carpentry-2016, + author = {Greg Wilson}, + title = {Software Carpentry: Lessons Learned}, + version = {2}, + date = {2016-01-28}, + url = {http://f1000research.com/articles/3-62/v2}, + doi = {10.12688/f1000research.3-62.v2} +} + +To reference HPC Carpentry in publications, please cite: + +Alan Ó Cais and Peter Steinbach: "Expanding user communities with HPC Carpentry". +The Journal of Computational Science Education. 11. 21-25. (doi: 10.22369/issn.2153-4136/11/1/4). + +@article{article, + author = {Cais, Alan and Steinbach, Peter}, + year = {2020}, + month = {01}, + pages = {21-25}, + title = {Expanding user communities with HPC Carpentry}, + volume = {11}, + journal = {The Journal of Computational Science Education}, + doi = {10.22369/issn.2153-4136/11/1/4} +} diff --git a/CNAME b/CNAME new file mode 100644 index 000000000..1879c45be --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +www.hpc-carpentry.org \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..62e98830e --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,153 @@ +# Contributing + +Like the official [Carpentries][c-site] sites---[Software +Carpentry][swc-site], [Data Carpentry][dc-site], and +[Library Carpentry][lc-site]---[HPC Carpentry][hpcc-site] +is an open source project, and we welcome +contributions of all kinds: blog posts, fixes to existing material, +bug reports, and reviews of proposed changes are all welcome. + +## Contributor Agreement + +By contributing, you agree that we may redistribute your work under +[our license](LICENSE). Everyone involved in +[HPC Carpentry][hpcc-site] agrees to abide by our +[code of conduct][conduct]. + +## How to Contribute a Fix or Suggested Change + +The easiest way to get started is to file an issue to tell us about a +spelling mistake, some awkward wording, or a factual error. This is +a good way to introduce yourself and to meet some of our community +members. + +1. If you do not have a [GitHub][github] account, you can send + comments to the [community email list][discuss-list]. + However, we will be able to respond more quickly if you use one of + the other methods described below. + +2. If you have a [GitHub][github] account, or are willing to + [create one][github-join], but do not know how to use Git, + you can report problems or suggest improvements by + [creating an issue][issues]. + This allows us to assign the item to someone and to respond + to it in a threaded discussion. + +3. If you are comfortable with Git, and would like to add or change + material, you can submit a pull request (PR). + +## Where to Contribute + +1. If you wish to change the website, please work in + , + which can be viewed at . + +2. If you wish to change CSS style files, tools, or HTML boilerplate + for lessons or workshops stored in `_includes` or `_layouts`, + please work in + (on which this website is based). + +## How to Contribute a Blog Post + +1. If you wish to contribute a blog post, please work in + , + which can be viewed at . + +2. Posts go in the `_posts` folder, which is divided up first by + year, e.g. `2018`, and then by month, e.g. `04`. Be sure to start + creating your file in the correct folder. + +3. Posts need to be created in [Markdown][md-guide] and named + according to this convention (all-lower-case filenames are + preferred): + + `YYYY-MM-DD-filename.md` + + e.g., + + `2017-07-10-assess_report.md` + +4. In order to render correctly, posts need to have a header block, + which should be [created like this example][hdr-block]: + + ```yaml + --- + layout: page + authors: ["Tracy Teal", "Maneesha Sane", "Belinda Weaver"] + title: "Launching our New Handbook" + teaser: "Find new pathways to a range of Carpentries material" + date: 2018-04-11 + time: "9:00:00" + tags: ["Communications"] + --- + ``` + + Separate the header block from the post proper by a new line. + You can leave the `time` field as-is or set it to a meaningful + value. Please make your best effort to accurately populate the + rest of the fields. + +5. If there is more than one author, separate the quoted author + names using commas, like this: + + ```yaml + ["Name 1", "Name 2"] + ``` + + Separate any tags the same way. + +6. Images should be uploaded to the appropriate year in the + `files//` folder. Images should be linked using + Markdown, and paths to the image should be relative. Example: + + ```markdown + ![Image Description]({{ site.filesurl }}/2017/07/myimage.jpg "alt text") + ``` + + A web link should be used for images hosted elsewhere. + Example: + + ```markdown + ![Image Description](https://web_address/pathway_to_full_image_filename) + ``` + + If you are not sure how to add images in Markdown format, + look at an existing Carpentries post with a + [locally hosted image][md-img-local] or + [one with a web link][md-img-remote] and copy the formatting + from there. + +7. Once you have previewed your file, commit the Markdown file to + your fork and start a Pull Request. We automatically run tests + using [GitHub Actions][actions] on your Pull Requests. Please + review your pull request a few minutes after you've submitted it + to make sure those tests have passed. These tests look for valid + YAML headers and make sure that the post will build properly. + +## Other Resources + +General discussion of [HPC Carpentry][hpcc-site] happens on the +[discussion mailing list][discuss-list], which everyone is welcome +to join. You can also [reach the maintainers by email][contact]. + + + +[actions]: https://github.com/hpc-carpentry/hpc-carpentry.github.io/actions +[conduct]: https://docs.carpentries.org/topic_folders/policies/code-of-conduct.html +[contact]: mailto:maintainers-hpc@lists.carpentries.org +[discuss-list]: https://carpentries.topicbox.com/groups/discuss-hpc +[issues]: https://github.com/hpc-carpentry/hpc-carpentry.github.io/issues/ +[hpcc-site]: https://www.hpc-carpentry.org + + + +[c-site]: https://carpentries.org +[dc-site]: https://datacarpentry.org/ +[github-join]: https://github.com/join +[github]: http://github.com +[hdr-block]: https://github.com/hpc-carpentry/hpc-carpentry.github.io/blob/967908bd97f2e30f34185ad98d575a9125754b01/_posts/2024/08/2024-08-13-llnl-workshop-blog-post.md?plain=1#L1 +[lc-site]: https://librarycarpentry.org/ +[md-guide]: https://guides.github.com/features/mastering-markdown/ +[md-img-local]: https://github.com/carpentries/carpentries.org/blob/5524366743246303aa1dd80343dd4759685b44e9/_posts/2017/06/2017-06-19-mqu-ttt.md?plain=1#L29 +[md-img-remote]: https://github.com/carpentries/carpentries.org/blob/5524366743246303aa1dd80343dd4759685b44e9/_posts/2017/07/2017-07-10-assess_report.md?plain=1#L24 +[swc-site]: http://software-carpentry.org/ diff --git a/about/index.html b/about/index.html new file mode 100644 index 000000000..f012cd7e9 --- /dev/null +++ b/about/index.html @@ -0,0 +1 @@ +About Us

About Us

HPC Carpentry operates in the spirit of The Carpentries but we are not (currently) an official program of The Carpentries. We do try to inherit some of the best practices and effort of The Carpentries, which is clearly reflected in things like our Code of Conduct (and how we created this website!).

Vision: Our vision is to be the leading inclusive community teaching data and coding skills for HPC resources.

Mission: Lower the barrier to entry to HPC operations for a wide range of users, so that more people can benefit from the increasing availability of increasingly sophisticated computer systems.

Strategy: Our path to achieving this goal includes developing and aggregating relevant resources, and working closely with like-minded communities.

  • Take advantage of Carpentries open-source and pedagogical standards, so that our material continuously improves.
  • Develop workshops suitable for integration into the existing Carpentries workflow, to allow
    • An “HPC Users” workshop, starting with the Unix Shell and HPC Intro lessons, and following up with example applications using data analysis or containers to demonstrate the advantages of HPC operations.
    • An “HPC Developers” workshop, also starting with Unix Shell and HPC Intro lessons, with follow-up lessons covering how to develop applications for HPC systems.
  • Collect, develop, and organize related material that doesn’t fit into the workshop framework, making it easy to find for interested developers.
diff --git a/apt_cache/archives/attr_1%3a2.5.1-1build1_amd64.deb b/apt_cache/archives/attr_1%3a2.5.1-1build1_amd64.deb new file mode 100644 index 000000000..8dc91558a Binary files /dev/null and b/apt_cache/archives/attr_1%3a2.5.1-1build1_amd64.deb differ diff --git a/apt_cache/archives/autofs_5.1.8-1ubuntu1.3_amd64.deb b/apt_cache/archives/autofs_5.1.8-1ubuntu1.3_amd64.deb new file mode 100644 index 000000000..6bca92925 Binary files /dev/null and b/apt_cache/archives/autofs_5.1.8-1ubuntu1.3_amd64.deb differ diff --git a/apt_cache/archives/cgroup-tools_2.0-2_amd64.deb b/apt_cache/archives/cgroup-tools_2.0-2_amd64.deb new file mode 100644 index 000000000..e6d812fc4 Binary files /dev/null and b/apt_cache/archives/cgroup-tools_2.0-2_amd64.deb differ diff --git a/apt_cache/archives/cvmfs-config-default_2.0-1_all.deb b/apt_cache/archives/cvmfs-config-default_2.0-1_all.deb new file mode 100644 index 000000000..13c7a0918 Binary files /dev/null and b/apt_cache/archives/cvmfs-config-default_2.0-1_all.deb differ diff --git a/apt_cache/archives/cvmfs-config.deb b/apt_cache/archives/cvmfs-config.deb new file mode 100644 index 000000000..5c60b095e Binary files /dev/null and b/apt_cache/archives/cvmfs-config.deb differ diff --git a/apt_cache/archives/cvmfs-fuse3_2.11.5~1+ubuntu22.04_amd64.deb b/apt_cache/archives/cvmfs-fuse3_2.11.5~1+ubuntu22.04_amd64.deb new file mode 100644 index 000000000..f49f25521 Binary files /dev/null and b/apt_cache/archives/cvmfs-fuse3_2.11.5~1+ubuntu22.04_amd64.deb differ diff --git a/apt_cache/archives/cvmfs-libs_2.11.5~1+ubuntu22.04_amd64.deb b/apt_cache/archives/cvmfs-libs_2.11.5~1+ubuntu22.04_amd64.deb new file mode 100644 index 000000000..cc411f484 Binary files /dev/null and b/apt_cache/archives/cvmfs-libs_2.11.5~1+ubuntu22.04_amd64.deb differ diff --git a/apt_cache/archives/cvmfs-release-latest_all.deb b/apt_cache/archives/cvmfs-release-latest_all.deb new file mode 100644 index 000000000..5cdad1a2e Binary files /dev/null and b/apt_cache/archives/cvmfs-release-latest_all.deb differ diff --git a/apt_cache/archives/cvmfs_2.11.5~1+ubuntu22.04_amd64.deb b/apt_cache/archives/cvmfs_2.11.5~1+ubuntu22.04_amd64.deb new file mode 100644 index 000000000..7f5fcf5e2 Binary files /dev/null and b/apt_cache/archives/cvmfs_2.11.5~1+ubuntu22.04_amd64.deb differ diff --git a/apt_cache/archives/gdb_12.1-0ubuntu1~22.04.2_amd64.deb b/apt_cache/archives/gdb_12.1-0ubuntu1~22.04.2_amd64.deb new file mode 100644 index 000000000..b1b3d354f Binary files /dev/null and b/apt_cache/archives/gdb_12.1-0ubuntu1~22.04.2_amd64.deb differ diff --git a/apt_cache/archives/libbabeltrace1_1.5.8-2build1_amd64.deb b/apt_cache/archives/libbabeltrace1_1.5.8-2build1_amd64.deb new file mode 100644 index 000000000..ef251e5f4 Binary files /dev/null and b/apt_cache/archives/libbabeltrace1_1.5.8-2build1_amd64.deb differ diff --git a/apt_cache/archives/libboost-regex1.74.0_1.74.0-14ubuntu3_amd64.deb b/apt_cache/archives/libboost-regex1.74.0_1.74.0-14ubuntu3_amd64.deb new file mode 100644 index 000000000..6fe634a33 Binary files /dev/null and b/apt_cache/archives/libboost-regex1.74.0_1.74.0-14ubuntu3_amd64.deb differ diff --git a/apt_cache/archives/libc6-dbg_2.35-0ubuntu3.8_amd64.deb b/apt_cache/archives/libc6-dbg_2.35-0ubuntu3.8_amd64.deb new file mode 100644 index 000000000..5cea912e2 Binary files /dev/null and b/apt_cache/archives/libc6-dbg_2.35-0ubuntu3.8_amd64.deb differ diff --git a/apt_cache/archives/libcgroup1_2.0-2_amd64.deb b/apt_cache/archives/libcgroup1_2.0-2_amd64.deb new file mode 100644 index 000000000..af35e5d65 Binary files /dev/null and b/apt_cache/archives/libcgroup1_2.0-2_amd64.deb differ diff --git a/apt_cache/archives/libdebuginfod-common_0.186-1build1_all.deb b/apt_cache/archives/libdebuginfod-common_0.186-1build1_all.deb new file mode 100644 index 000000000..3e3184cfd Binary files /dev/null and b/apt_cache/archives/libdebuginfod-common_0.186-1build1_all.deb differ diff --git a/apt_cache/archives/libdebuginfod1_0.186-1build1_amd64.deb b/apt_cache/archives/libdebuginfod1_0.186-1build1_amd64.deb new file mode 100644 index 000000000..d7d58804c Binary files /dev/null and b/apt_cache/archives/libdebuginfod1_0.186-1build1_amd64.deb differ diff --git a/apt_cache/archives/libfuse2_2.9.9-5ubuntu3_amd64.deb b/apt_cache/archives/libfuse2_2.9.9-5ubuntu3_amd64.deb new file mode 100644 index 000000000..790c74d2a Binary files /dev/null and b/apt_cache/archives/libfuse2_2.9.9-5ubuntu3_amd64.deb differ diff --git a/apt_cache/archives/libipt2_2.0.5-1_amd64.deb b/apt_cache/archives/libipt2_2.0.5-1_amd64.deb new file mode 100644 index 000000000..fc36de06a Binary files /dev/null and b/apt_cache/archives/libipt2_2.0.5-1_amd64.deb differ diff --git a/apt_cache/archives/libnfsidmap1_1%3a2.6.1-1ubuntu1.2_amd64.deb b/apt_cache/archives/libnfsidmap1_1%3a2.6.1-1ubuntu1.2_amd64.deb new file mode 100644 index 000000000..622a33100 Binary files /dev/null and b/apt_cache/archives/libnfsidmap1_1%3a2.6.1-1ubuntu1.2_amd64.deb differ diff --git a/apt_cache/archives/libossp-uuid16_1.6.2-1.5build9_amd64.deb b/apt_cache/archives/libossp-uuid16_1.6.2-1.5build9_amd64.deb new file mode 100644 index 000000000..733bc894b Binary files /dev/null and b/apt_cache/archives/libossp-uuid16_1.6.2-1.5build9_amd64.deb differ diff --git a/apt_cache/archives/libsource-highlight-common_3.1.9-4.1build2_all.deb b/apt_cache/archives/libsource-highlight-common_3.1.9-4.1build2_all.deb new file mode 100644 index 000000000..8f414d088 Binary files /dev/null and b/apt_cache/archives/libsource-highlight-common_3.1.9-4.1build2_all.deb differ diff --git a/apt_cache/archives/libsource-highlight4v5_3.1.9-4.1build2_amd64.deb b/apt_cache/archives/libsource-highlight4v5_3.1.9-4.1build2_amd64.deb new file mode 100644 index 000000000..538c75ec2 Binary files /dev/null and b/apt_cache/archives/libsource-highlight4v5_3.1.9-4.1build2_amd64.deb differ diff --git a/apt_cache/archives/nfs-common_1%3a2.6.1-1ubuntu1.2_amd64.deb b/apt_cache/archives/nfs-common_1%3a2.6.1-1ubuntu1.2_amd64.deb new file mode 100644 index 000000000..ce5b6910a Binary files /dev/null and b/apt_cache/archives/nfs-common_1%3a2.6.1-1ubuntu1.2_amd64.deb differ diff --git a/apt_cache/archives/rpcbind_1.2.6-2build1_amd64.deb b/apt_cache/archives/rpcbind_1.2.6-2build1_amd64.deb new file mode 100644 index 000000000..c465fc7da Binary files /dev/null and b/apt_cache/archives/rpcbind_1.2.6-2build1_amd64.deb differ diff --git a/apt_cache/archives/uuid_1.6.2-1.5build9_amd64.deb b/apt_cache/archives/uuid_1.6.2-1.5build9_amd64.deb new file mode 100644 index 000000000..8b9f42f1b Binary files /dev/null and b/apt_cache/archives/uuid_1.6.2-1.5build9_amd64.deb differ diff --git a/apt_cache/lists/cvmrepo.s3.cern.ch_cvmrepo_apt_dists_jammy-prod_Release b/apt_cache/lists/cvmrepo.s3.cern.ch_cvmrepo_apt_dists_jammy-prod_Release new file mode 100644 index 000000000..e0f03bda9 --- /dev/null +++ b/apt_cache/lists/cvmrepo.s3.cern.ch_cvmrepo_apt_dists_jammy-prod_Release @@ -0,0 +1,37 @@ +Version: 7.0 +Codename: jammy-prod +Component: main +Origin: CERN +Label: CernVM +Architecture: i386 amd64 +Date: Wed, 11 Sep 2024 15:31:04 +0000 +MD5Sum: + b57bcdd757510986088ceeb9e36cdab7 2498 main/list.html + 5fd3e73068a25c78554d3a2148e8d375 2582 main/binary-arm64/list.html + f7e8cb95aa5c065c072835ba1d0a7172 1622 main/binary-arm64/Packages.gz + 28ba2b6c599f64f5e2d2f9fd5f8a9d5a 4681 main/binary-arm64/Packages + c817183715fc830cd3668969a3851eaa 1760 main/binary-arm64/Packages.bz2 + eac2017817ea8a2a9ff29519fa04da0f 2582 main/binary-amd64/list.html + 8e9ced33ef2cba2ddda370e56472cf1a 1806 main/binary-amd64/Packages.gz + 92578682b140a3c1236e8d1b77bbbbfd 5329 main/binary-amd64/Packages + 0ec70ae1c5c1d53586cc7d0945a2d344 1917 main/binary-amd64/Packages.bz2 +SHA1: + 65e440df30c62ab3fe9ee9da328f78cce09a7294 2498 main/list.html + ddbd4ff5035ec549a57ab8a5cb1f28b114db5668 2582 main/binary-arm64/list.html + 7d170af758f866101a20d35f3e66bda76221ae37 1622 main/binary-arm64/Packages.gz + d0d1e505df3042ae7799fd8cc9f3aec8d9f10a42 4681 main/binary-arm64/Packages + 270f2a503e1e1342375da1d3e17d0b8c73abfbd7 1760 main/binary-arm64/Packages.bz2 + 118e472311c2647c0f4782a95649574efd0a4511 2582 main/binary-amd64/list.html + 5cb5a5f158f9ea8dbb5fc4165cf7a4aef834adc2 1806 main/binary-amd64/Packages.gz + 1805b5572677932604bb55400f4bb653bb4cdae3 5329 main/binary-amd64/Packages + 6b4a8f3c4593ca773ba8dfc248164cc6dbdd37de 1917 main/binary-amd64/Packages.bz2 +SHA256: + 108421b21a8b31a7725fb1322333d66181dafc7a21e08f77bdba8d38e5e8b5eb 2498 main/list.html + 3fffb97a00e32eb70757edc33029425d814374738b10fbb5083e4ed5fc1ac6d2 2582 main/binary-arm64/list.html + 5bfc1febbfc00683cecd5974033124e7aa8f487ac50ef093726fb2d1bab2ff85 1622 main/binary-arm64/Packages.gz + ac756479e64248d56e90b48a5220fa2f768b285c095a7ec253a67aaaf63e7e63 4681 main/binary-arm64/Packages + f24e255ab2e0542a12bf61818f33c9931528a88a6573a9412d8127a403a24cef 1760 main/binary-arm64/Packages.bz2 + 662e7ed41e6a36c8aeaa984272c854313d63d636cb44d2c26fb74fff3341c09a 2582 main/binary-amd64/list.html + de9b23da52bf94cdf409c837cdd19db381fcc901663fd23827301c5e4acd0459 1806 main/binary-amd64/Packages.gz + ef3036bf8e63f06bc848dde7220ed5a2e0f0fa733f93ced1931f7bf9489651bb 5329 main/binary-amd64/Packages + 1abf74afe81b92e61f904c985650c37afee466e04baeca2de4c57db33deb5897 1917 main/binary-amd64/Packages.bz2 diff --git a/apt_cache/lists/cvmrepo.s3.cern.ch_cvmrepo_apt_dists_jammy-prod_Release.gpg b/apt_cache/lists/cvmrepo.s3.cern.ch_cvmrepo_apt_dists_jammy-prod_Release.gpg new file mode 100644 index 000000000..e7d32b69f --- /dev/null +++ b/apt_cache/lists/cvmrepo.s3.cern.ch_cvmrepo_apt_dists_jammy-prod_Release.gpg @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v2.0.22 (GNU/Linux) + +iEYEABEIAAYFAmbhuJ8ACgkQIw04nYrkXOdjqACgmgxESZcTnojPa3BWTZQt0fR4 +zFIAnRaFCilQwSUAiYieobPvnylMjuvZ +=2H5B +-----END PGP SIGNATURE----- diff --git a/apt_cache/lists/cvmrepo.s3.cern.ch_cvmrepo_apt_dists_jammy-prod_main_binary-amd64_Packages b/apt_cache/lists/cvmrepo.s3.cern.ch_cvmrepo_apt_dists_jammy-prod_main_binary-amd64_Packages new file mode 100644 index 000000000..6c19810e9 --- /dev/null +++ b/apt_cache/lists/cvmrepo.s3.cern.ch_cvmrepo_apt_dists_jammy-prod_main_binary-amd64_Packages @@ -0,0 +1,148 @@ +Package: cvmfs +Version: 2.11.5~1+ubuntu22.04 +Architecture: amd64 +Maintainer: Jakob Blomer +Installed-Size: 49841 +Depends: cvmfs-config-default | cvmfs-config, gawk, psmisc, lsof, autofs, fuse, curl, attr, libfuse2, zlib1g, gdb, uuid-dev, uuid, adduser, cvmfs-libs (= 2.11.5~1+ubuntu22.04) +Recommends: cvmfs-fuse3, autofs (>= 5.1.2) +Filename: pool/jammy-prod/main/cvmfs_2.11.5~1+ubuntu22.04_amd64.deb +Size: 14525608 +MD5sum: d14c53221c325c0aaf8d9629dbbc6915 +SHA1: 0fe2f3f81f51ced36f7730e695948f982a007558 +SHA256: 075ce9dcebd2391bd0f6b9afc2aed14ce5323541022cf089b1c8f9d9cdaad8d1 +Section: misc +Priority: extra +Homepage: http://cernvm.cern.ch +Description: CernVM File System + HTTP File System for Distributing Software to CernVM. + +Package: cvmfs-config-default +Version: 2.0-1 +Architecture: all +Maintainer: Jakob Blomer +Installed-Size: 13 +Conflicts: cvmfs-config, cvmfs-keys +Breaks: cvmfs (<< 2.1.20), cvmfs-keys, cvmfs-server (<< 2.1.20) +Replaces: cvmfs-keys +Provides: cvmfs-config +Filename: pool/jammy-prod/main/cvmfs-config-default_2.0-1_all.deb +Size: 6426 +MD5sum: e04d7102bef2361b49dd6fbbcd6f6f91 +SHA1: 7c7b95d8a2ef10112323b50c9c809962d6dacbbb +SHA256: 9fc9b6204eddf13ac51b7ee7ddf98f3ec4e31b5cc22e94ad6d40bdce1a4fb7ae +Section: misc +Priority: extra +Homepage: http://cernvm.cern.ch/portal/filesystem +Description: CernVM File System Default Configuration + Defaulf configuration and public keys for mounting common CernVM-FS + repositories. + +Package: cvmfs-dev +Source: cvmfs +Version: 2.11.5~1+ubuntu22.04 +Architecture: amd64 +Maintainer: Jakob Blomer +Installed-Size: 66 +Depends: openssl +Filename: pool/jammy-prod/main/cvmfs-dev_2.11.5~1+ubuntu22.04_amd64.deb +Size: 39360 +MD5sum: 523adfe525ec23bde6d999409cb9a399 +SHA1: 57cc2ba02cdebf3c1ba41f1f320c7a5d15ca7368 +SHA256: cae0da25f78c585f86219028f3b8941b89662695d7519641688d39e686b09a7d +Section: misc +Priority: extra +Homepage: http://cernvm.cern.ch +Description: CernVM-FS client library + CernVM-FS static client library + +Package: cvmfs-fuse3 +Source: cvmfs +Version: 2.11.5~1+ubuntu22.04 +Architecture: amd64 +Maintainer: Jakob Blomer +Installed-Size: 43228 +Depends: fuse3, libfuse3-3, cvmfs (= 2.11.5~1+ubuntu22.04) +Filename: pool/jammy-prod/main/cvmfs-fuse3_2.11.5~1+ubuntu22.04_amd64.deb +Size: 12892636 +MD5sum: 2b0a50ccc07a8d62d25c88c8b73c5b71 +SHA1: f9f9470bde1a90610fad3aad96aabedcd75bb0ed +SHA256: ef593333c92ae3226afcbeb8fe83f51b7cf07539ddc848f8f5fadc5ba0cf7390 +Section: misc +Priority: extra +Homepage: http://cernvm.cern.ch +Description: CernVM File System fuse3 libraries + Shared libraries implementing the CernVM-FS fuse module based on libfuse3 + +Package: cvmfs-gateway +Source: cvmfs +Version: 2.11.5~1+ubuntu22.04 +Architecture: amd64 +Maintainer: Jakob Blomer +Installed-Size: 15192 +Depends: psmisc, cvmfs-server +Filename: pool/jammy-prod/main/cvmfs-gateway_2.11.5~1+ubuntu22.04_amd64.deb +Size: 8414880 +MD5sum: f52d7ed3888bd0f9083b7998bc40a456 +SHA1: f69cde14d818bc95a46bd925fffd20e2505dc735 +SHA256: 17cae3ab0e24747c6928854a49cd5b6c3f4a5eb3315926af20dbecf81ee21e9e +Section: misc +Priority: extra +Homepage: http://cernvm.cern.ch +Description: CernVM-FS Repository Gateway + The CernVM-FS repository gateway service enables multiple remote publishers to write to the same repository. + +Package: cvmfs-libs +Source: cvmfs +Version: 2.11.5~1+ubuntu22.04 +Architecture: amd64 +Maintainer: Jakob Blomer +Installed-Size: 37410 +Filename: pool/jammy-prod/main/cvmfs-libs_2.11.5~1+ubuntu22.04_amd64.deb +Size: 10410820 +MD5sum: fe84c9ebd12c9b2b4de3d4bac110f719 +SHA1: 53daea171961b36a8a12a88417b36714f92f2af8 +SHA256: ead71525a10d148661bf70af8cfae0c1b2571a4400004a9c727c9318d979c274 +Section: misc +Priority: extra +Homepage: http://cernvm.cern.ch +Description: CernVM-FS common libraries + Common utility libraries for CernVM-FS packages. + +Package: cvmfs-server +Source: cvmfs +Version: 2.11.5~1+ubuntu22.04 +Architecture: amd64 +Maintainer: Jakob Blomer +Installed-Size: 139355 +Depends: psmisc, curl, attr, openssl, libcap2, libcap2-bin, lsof, rsync, jq, usbutils, sqlite3, cvmfs-libs (= 2.11.5~1+ubuntu22.04) +Recommends: cvmfs-fuse3, apache2 +Conflicts: cvmfs-server (<< 2.1) +Filename: pool/jammy-prod/main/cvmfs-server_2.11.5~1+ubuntu22.04_amd64.deb +Size: 39998156 +MD5sum: 8ce50f3c466cbb228d0b06c9c4633577 +SHA1: b1e52da56c04299e4601d71582908404fd22530b +SHA256: 3a2679575291eb0b6feca0eaae8afef29e10911732bb2f6dfc10ffd5ec0adb28 +Section: misc +Priority: extra +Homepage: http://cernvm.cern.ch +Description: CernVM-FS server utilities + HTTP File System Repository Server for Distributing Software to CernVM. + +Package: cvmfs-shrinkwrap +Source: cvmfs +Version: 2.11.5~1+ubuntu22.04 +Architecture: amd64 +Maintainer: Jakob Blomer +Installed-Size: 2011 +Depends: openssl, python3, cvmfs-libs (= 2.11.5~1+ubuntu22.04) +Filename: pool/jammy-prod/main/cvmfs-shrinkwrap_2.11.5~1+ubuntu22.04_amd64.deb +Size: 633536 +MD5sum: 642c3ec112fc98bf4edb8e5dd08749b7 +SHA1: 97dd0a3535c4a0dae9cdbaabbc742783538beb7c +SHA256: f6a6f085b0cee80d8ec6efb51921183f572f3950b34a305906768e7bac33b8a2 +Section: misc +Priority: extra +Homepage: http://cernvm.cern.ch +Description: CernVM-FS shrinkwrap utility to export /cvmfs file system trees + CernVM-FS shrinkwrap utility to export /cvmfs file system trees into container images. + diff --git a/apt_cache/lists/packages.microsoft.com_repos_azure-cli_dists_jammy_InRelease b/apt_cache/lists/packages.microsoft.com_repos_azure-cli_dists_jammy_InRelease new file mode 100644 index 000000000..0d540589c --- /dev/null +++ b/apt_cache/lists/packages.microsoft.com_repos_azure-cli_dists_jammy_InRelease @@ -0,0 +1,45 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA256 + +Origin: azure-cli jammy +Label: azure-cli jammy +Suite: jammy +Codename: jammy +Date: Tue, 03 Sep 2024 02:50:01 +0000 +Architectures: amd64 arm64 armhf all +Components: main +Description: Generated by aptly +Acquire-By-Hash: yes +SHA256: + 18d98927d08a3dc5c52630dee4e50ac333d2f6fb9cad434d53bcfa4fa3471380 15122 main/binary-amd64/Packages + e371ac84a58f08bf4c716444b81484499736ba5bbc4d2f839d40db729f93a2d9 1804 main/binary-amd64/Packages.gz + 15d571cb5ea09a2b017c61a9202cded2f80543b60edc040ef782d2811707369a 15122 main/binary-arm64/Packages + 85d4ee8e7f871ddf61aed386ea4dd74d3be89d57f59976ba24d3dd1fd202e95c 1807 main/binary-arm64/Packages.gz + e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 main/binary-armhf/Packages + 5ab4281e542952a555beb734d739846e4a46d335a7c1ea354b6903fe246bc294 29 main/binary-armhf/Packages.gz + 539ce543216fffc387c9a90e2ab717b55e4b820ac7d700d4f2308f5b491aa65a 6523 main/binary-all/Packages + f56eedb993d32e87f45ff03daff5c5b562625360db2f9c87b9933a345bf35415 1099 main/binary-all/Packages.gz + e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 main/source/Sources + c3629d9c4de36162bb63f0db14e0a736b19bc21c483d4548fdb74249a2ed7a03 28 main/source/Sources.gz +SHA512: + 397fffa80b8fbbc881c4b16439e6b6ce33ec5aeba96aea11d5fec8b952ba72c83941eff653a7223ed876fecfebaae347a4241b7d0e4773be329b28ee47fee80e 15122 main/binary-amd64/Packages + 0f18ab00f7682897996c4408d3b57f37ff104bd9abef71ae9c33ca7544ee17b43f14c125a278d8982e552b752ec2af64b7b3df091967c4b5614ed7a3579dc59b 1804 main/binary-amd64/Packages.gz + ceee8e19b2152f9f5fa41e55d0eca9b98735fb2183316cd7d27ab2e136ca037b8be1b9c821a8aed205e86adc4097e11c3bc434cd10c285e1fa076b5c70eb8370 15122 main/binary-arm64/Packages + 61a27318aed1646b61f8e275f36a4c66d71ba83a0621ff29a6d4d9b26a2fc891fb2a79a2eb36cf62da7643bd678235acc86a256ce3f86e574c1ad2065920e363 1807 main/binary-arm64/Packages.gz + cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e 0 main/binary-armhf/Packages + 3a5580706b0a0a512df14454cd075328e95bc3ba35c9ce826edf92a112720e66ffee90fb90e83b5ed3c37d7b5ac8ae31c8e03552db5d08e150f21d037865e556 29 main/binary-armhf/Packages.gz + ae3af3bda2f49ee60fdcfea0784cd82bf23b8acb240a08fb1610d204e1e18ee560c6012528adb0bc4b15c48066ebd9e5ba6b66ca4a49c76a59cd3356dcb1fdd2 6523 main/binary-all/Packages + 734f3d729321a616221e6c15b685ca5787d79eefe366937c774e8c4c0e75b5b9b518ec36ad531690a8af727bd5af6d3f8506ae9baa83f88b84b86a285a850c2f 1099 main/binary-all/Packages.gz + cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e 0 main/source/Sources + 51e76056ebc7986a071005fd297855cac1b835beb57b1ba99b040d7426436dfb0eb329a5f7476384f6d2a9fcb9f21cfc09522b4c0e4f0bfd20c616681c3c90de 28 main/source/Sources.gz + +-----BEGIN PGP SIGNATURE----- +Version: BSN Pgp v1.0.0.0 + +iQEcBAEBCAAGBQJm1nmOAAoJEOs+lK2+EinPrAwH/A07LxBt2bUzLqVf9/dx9+Ig +745x0a4Q8x3jtCmZPsL3fccB3Sty2OxUrYP6hxzn1pS1gH1cHxn7CAYNu9PhAHGD +x2jk6FOs9DB1drwvvPTxNEmVdkEqR/L3YU5/dxFBUEaWNdg6OD4z+p3WU6OKztVl +jxBOYzvkzn8q9cTP1FF4JKn55MykTOMR1yx42NoZ4J1WOui5G2MsPAl4zQzxUfV8 +vovIwBZsWz88S7IjjnnlxcjiE3cYutKQxeT6wwsPXQbEVEPxsTCGyk4Sz1ArATeJ +fnD+7AvHDH7JWwNfB3rt6WBVZcd4DksHHDMfuXG7ydP0VRS7+24jWoOo2kHesjo= +-----END PGP SIGNATURE----- diff --git a/apt_cache/lists/packages.microsoft.com_repos_azure-cli_dists_jammy_main_binary-all_Packages b/apt_cache/lists/packages.microsoft.com_repos_azure-cli_dists_jammy_main_binary-all_Packages new file mode 100644 index 000000000..292b14723 --- /dev/null +++ b/apt_cache/lists/packages.microsoft.com_repos_azure-cli_dists_jammy_main_binary-all_Packages @@ -0,0 +1,176 @@ +Package: azure-cli +Version: 2.43.0-1~jammy +Architecture: all +Section: python +Priority: extra +Installed-Size: 1163905 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libssl3 (>= 3.0.0~~alpha1) +SHA256: cc2d59755109b71adea282c770174a49ffa7a4177348d7929180d5240a27bd07 +Size: 83759630 +Filename: pool/main/a/azure-cli/azure-cli_2.43.0-1~jammy_all.deb + +Package: azure-cli +Version: 2.37.0-1~jammy +Architecture: all +Section: python +Priority: extra +Installed-Size: 1034768 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libssl3 (>= 3.0.0~~alpha1) +SHA256: 9989d0bd32b383ca044c901aa50e6b6445be427323bbe9e634c3e6e08cffbc68 +Size: 80005852 +Filename: pool/main/a/azure-cli/azure-cli_2.37.0-1~jammy_all.deb + +Package: azure-cli +Version: 2.44.1-1~jammy +Architecture: all +Section: python +Priority: extra +Installed-Size: 1128865 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libssl3 (>= 3.0.0~~alpha1) +SHA256: 207301813bc2b0e17a0221050d374da672f098c66b8ac5897a818692b4f4c40d +Size: 83477658 +Filename: pool/main/a/azure-cli/azure-cli_2.44.1-1~jammy_all.deb + +Package: azure-cli +Version: 2.42.0-1~jammy +Architecture: all +Section: python +Priority: extra +Installed-Size: 1145228 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libssl3 (>= 3.0.0~~alpha1) +SHA256: bffceb8e6781df319df0aee87afe469b6318e5336a290984391eaaef422b1543 +Size: 83336892 +Filename: pool/main/a/azure-cli/azure-cli_2.42.0-1~jammy_all.deb + +Package: azure-cli +Version: 2.45.0-1~jammy +Architecture: all +Section: python +Priority: extra +Installed-Size: 1182614 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libssl3 (>= 3.0.0~~alpha1) +SHA256: d276d9e5e53fc25b5ee869c1ed406191bc304c1ebe127ffedbde86a079241de1 +Size: 85225844 +Filename: pool/main/a/azure-cli/azure-cli_2.45.0-1~jammy_all.deb + +Package: azure-cli +Version: 2.39.0-1~jammy +Architecture: all +Section: python +Priority: extra +Installed-Size: 1040228 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libssl3 (>= 3.0.0~~alpha1) +SHA256: b6121da591182d35195391ea1f554a5d6699d2cb20b52798b2e90169673f864d +Size: 79780498 +Filename: pool/main/a/azure-cli/azure-cli_2.39.0-1~jammy_all.deb + +Package: azure-cli +Version: 2.36.0-1~jammy +Architecture: all +Section: python +Priority: extra +Installed-Size: 1040660 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libssl3 (>= 3.0.0~~alpha1) +SHA256: 1a8fde271e16e78c5d7b3ad05ef6544c803a0180bffdee4b2bb9a34a7d1b439f +Size: 77251356 +Filename: pool/main/a/azure-cli/azure-cli_2.36.0-1~jammy_all.deb + +Package: azure-cli +Version: 2.41.0-1~jammy +Architecture: all +Section: python +Priority: extra +Installed-Size: 1128168 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libssl3 (>= 3.0.0~~alpha1) +SHA256: 30d86059b08948b594c40c2321b639cbdef5b18abf27f005e46f845efa1c020e +Size: 83005194 +Filename: pool/main/a/azure-cli/azure-cli_2.41.0-1~jammy_all.deb + +Package: azure-cli +Version: 2.38.0-1~jammy +Architecture: all +Section: python +Priority: extra +Installed-Size: 1024508 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libssl3 (>= 3.0.0~~alpha1) +SHA256: b7c8efcb70b49a4b893064fd6711a8286b06b0e70c535ea2dd8902b31c1ef94c +Size: 79375552 +Filename: pool/main/a/azure-cli/azure-cli_2.38.0-1~jammy_all.deb + +Package: azure-cli +Version: 2.44.0-1~jammy +Architecture: all +Section: python +Priority: extra +Installed-Size: 1128859 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libssl3 (>= 3.0.0~~alpha1) +SHA256: b5174f7176c4e63bc9a7048733270b5c2814cd510902c6962b834ae96cb20832 +Size: 83489204 +Filename: pool/main/a/azure-cli/azure-cli_2.44.0-1~jammy_all.deb + +Package: azure-cli +Version: 2.40.0-1~jammy +Architecture: all +Section: python +Priority: extra +Installed-Size: 1078745 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libssl3 (>= 3.0.0~~alpha1) +SHA256: 640803ba2847b1e686e9de11eef2b33cfee1510fea94708874d3bda667ac1fb6 +Size: 80878726 +Filename: pool/main/a/azure-cli/azure-cli_2.40.0-1~jammy_all.deb + diff --git a/apt_cache/lists/packages.microsoft.com_repos_azure-cli_dists_jammy_main_binary-amd64_Packages b/apt_cache/lists/packages.microsoft.com_repos_azure-cli_dists_jammy_main_binary-amd64_Packages new file mode 100644 index 000000000..01da53fea --- /dev/null +++ b/apt_cache/lists/packages.microsoft.com_repos_azure-cli_dists_jammy_main_binary-amd64_Packages @@ -0,0 +1,336 @@ +Package: azure-cli +Version: 2.60.0-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 680474 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: d0141195b137bbc4a484ddcc6c7879f596458f797c1890f6ae1e67f195e2e6d8 +Size: 56262350 +Filename: pool/main/a/azure-cli/azure-cli_2.60.0-1~jammy_amd64.deb + +Package: azure-cli +Version: 2.62.0-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 678575 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: 252f36e1d7b7839e89d5f8d0b4f77a24c9291594b8b5b2fc4d5b4d57f81a1a5a +Size: 55955878 +Filename: pool/main/a/azure-cli/azure-cli_2.62.0-1~jammy_amd64.deb + +Package: azure-cli +Version: 2.64.0-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 682523 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: 1418e9fcdec249d78da1cb34406af1bfd3eb38072f61812de2ad4f808e1efcc0 +Size: 56374316 +Filename: pool/main/a/azure-cli/azure-cli_2.64.0-1~jammy_amd64.deb + +Package: azure-cli +Version: 2.53.0-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 599435 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libnsl2 (>= 1.0), libssl3 (>= 3.0.0~~alpha1), libtirpc3 (>= 1.0.2), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: 8860134b363c15d148bde3b3f3cdd7eb53eb1eb3a0efb49fd62de526c428ca84 +Size: 52153106 +Filename: pool/main/a/azure-cli/azure-cli_2.53.0-1~jammy_amd64.deb + +Package: azure-cli +Version: 2.55.0-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 782983 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: decb2dcb80cee6a352f5bf0341cab4e2a08b9f0e10f2aa55671eb7a073ccd3b8 +Size: 65585718 +Filename: pool/main/a/azure-cli/azure-cli_2.55.0-1~jammy_amd64.deb + +Package: azure-cli +Version: 2.54.0-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 783977 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: 319ac380b98fc00e6d2f62d889487198e28b568862ce79355b9abd02a5acfef5 +Size: 65603516 +Filename: pool/main/a/azure-cli/azure-cli_2.54.0-1~jammy_amd64.deb + +Package: azure-cli +Version: 2.47.0-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 942698 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libnsl2 (>= 1.0), libssl3 (>= 3.0.0~~alpha1), libtirpc3 (>= 1.0.2), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: 9f201ee9d33a6eb9c9583abb620be0d5e27d8c8bf6f30ed54bc6f70307cb5ced +Size: 58005382 +Filename: pool/main/a/azure-cli/azure-cli_2.47.0-1~jammy_amd64.deb + +Package: azure-cli +Version: 2.61.0-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 681814 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: d9600358766aca003fa5246e91e4dcde0291e4cb94e6c325f0a9780e0114df2d +Size: 56375120 +Filename: pool/main/a/azure-cli/azure-cli_2.61.0-1~jammy_amd64.deb + +Package: azure-cli +Version: 2.50.0-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 585646 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libnsl2 (>= 1.0), libssl3 (>= 3.0.0~~alpha1), libtirpc3 (>= 1.0.2), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: 046eaeda52847c7acdcecf5f91b1d2bce0a383ad808d070b23f813abaa47a7d4 +Size: 51482532 +Filename: pool/main/a/azure-cli/azure-cli_2.50.0-1~jammy_amd64.deb + +Package: azure-cli +Version: 2.53.1-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 599579 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libnsl2 (>= 1.0), libssl3 (>= 3.0.0~~alpha1), libtirpc3 (>= 1.0.2), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: bc84ccd83bf81bb51a4ac4394dea7a2731c147faee5876df6392103038a3d775 +Size: 52172426 +Filename: pool/main/a/azure-cli/azure-cli_2.53.1-1~jammy_amd64.deb + +Package: azure-cli +Version: 2.63.0-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 683197 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: 3456d6f941884d764aeb47d83392123cfcc42beffb976c6328ebb93f4356fdf7 +Size: 57045258 +Filename: pool/main/a/azure-cli/azure-cli_2.63.0-1~jammy_amd64.deb + +Package: azure-cli +Version: 2.48.0-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 562304 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libnsl2 (>= 1.0), libssl3 (>= 3.0.0~~alpha1), libtirpc3 (>= 1.0.2), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: e23d1f33fdc6a26c6b21d6b7b69384fc3bc69469fd9b021147bf133561508dea +Size: 50744832 +Filename: pool/main/a/azure-cli/azure-cli_2.48.0-1~jammy_amd64.deb + +Package: azure-cli +Version: 2.48.1-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 562324 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libnsl2 (>= 1.0), libssl3 (>= 3.0.0~~alpha1), libtirpc3 (>= 1.0.2), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: 4009d7d968754228c826c06b153371bd5fcc929b641043dfac922c0d453a47a6 +Size: 50760844 +Filename: pool/main/a/azure-cli/azure-cli_2.48.1-1~jammy_amd64.deb + +Package: azure-cli +Version: 2.52.0-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 596422 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libnsl2 (>= 1.0), libssl3 (>= 3.0.0~~alpha1), libtirpc3 (>= 1.0.2), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: 99be6ee8c79092edf48cc16b4d9364991147c372791ec5fcca15a7d215301c43 +Size: 51803968 +Filename: pool/main/a/azure-cli/azure-cli_2.52.0-1~jammy_amd64.deb + +Package: azure-cli +Version: 2.56.0-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 799756 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: aae1913f641da951d180aa12f7204d870892fad90b1f441fdcc3f3f75594ce28 +Size: 66668364 +Filename: pool/main/a/azure-cli/azure-cli_2.56.0-1~jammy_amd64.deb + +Package: azure-cli +Version: 2.49.0-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 578101 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libnsl2 (>= 1.0), libssl3 (>= 3.0.0~~alpha1), libtirpc3 (>= 1.0.2), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: 0410382f5d3c6ceb7b24706dfb2d0b11bb08d3d7aaeebfff98076eb9bab0a366 +Size: 51098532 +Filename: pool/main/a/azure-cli/azure-cli_2.49.0-1~jammy_amd64.deb + +Package: azure-cli +Version: 2.59.0-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 679383 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: daafb3affd615245da4554c146023d66cdde8632f85ccc8b9f6851196e080bad +Size: 55976902 +Filename: pool/main/a/azure-cli/azure-cli_2.59.0-1~jammy_amd64.deb + +Package: azure-cli +Version: 2.46.0-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 1168255 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libnsl2 (>= 1.0), libssl3 (>= 3.0.0~~alpha1), libtirpc3 (>= 1.0.2), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: cf4c26c2670ae7f5146ed7a2a4798233d45ad558291fb60d834fa65e65e7c42c +Size: 64833108 +Filename: pool/main/a/azure-cli/azure-cli_2.46.0-1~jammy_amd64.deb + +Package: azure-cli +Version: 2.51.0-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 592242 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libnsl2 (>= 1.0), libssl3 (>= 3.0.0~~alpha1), libtirpc3 (>= 1.0.2), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: fcd73e1023938ae74f5001a326786775d4665d1114f2e242f13c21e3f750c915 +Size: 51664248 +Filename: pool/main/a/azure-cli/azure-cli_2.51.0-1~jammy_amd64.deb + +Package: azure-cli +Version: 2.58.0-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 674011 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: 1d4ff559569727593222817d01728c931f6769b8afa4c2a93ee0f3e725164313 +Size: 55382398 +Filename: pool/main/a/azure-cli/azure-cli_2.58.0-1~jammy_amd64.deb + +Package: azure-cli +Version: 2.57.0-1~jammy +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 672409 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.35), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: 5a39710f8ad870dc9e7bfce11043300404856b0f8ebf508813db1fdb50e5279d +Size: 55345784 +Filename: pool/main/a/azure-cli/azure-cli_2.57.0-1~jammy_amd64.deb + diff --git a/apt_cache/lists/packages.microsoft.com_ubuntu_22.04_prod_dists_jammy_InRelease b/apt_cache/lists/packages.microsoft.com_ubuntu_22.04_prod_dists_jammy_InRelease new file mode 100644 index 000000000..bddc39b43 --- /dev/null +++ b/apt_cache/lists/packages.microsoft.com_ubuntu_22.04_prod_dists_jammy_InRelease @@ -0,0 +1,45 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA256 + +Origin: microsoft-ubuntu-jammy-prod jammy +Label: microsoft-ubuntu-jammy-prod jammy +Suite: jammy +Codename: jammy +Date: Wed, 18 Sep 2024 08:31:32 +0000 +Architectures: amd64 arm64 armhf all +Components: main +Description: Generated by aptly +Acquire-By-Hash: yes +SHA256: + 6e94973669ea0fe4129509e993f6ba013e29dbea3ab9b84ed1704a7ec19a54e0 1172357 main/binary-amd64/Packages + f08af7a17158002ed27583ef6b101fe4cdc85a21f6c0e07639e3276ef05bc2df 172958 main/binary-amd64/Packages.gz + 48b3d747d2a42e78737bebc4d62c8fb041e16abe3bd8d53a000b6ebeb67b9d5d 314697 main/binary-arm64/Packages + dae81c37cd97db9d1ce4dbe19120e25af317f5366c10f4724409cf284424c16b 43405 main/binary-arm64/Packages.gz + 6f5c1703fb69e95ea7fcd119761c8bafcddd779beba5fe6ab53f00269308444f 163857 main/binary-armhf/Packages + 703583e3a736687c07fc399868d2b7b888f58c31c3d5b6249077796c473c1935 15471 main/binary-armhf/Packages.gz + ae0d15e3916c459333506a40899a69df8a22195e19686a71c12fd11931bd2fb5 5036 main/binary-all/Packages + 42cfa240ab84e00037bd601385dd5434e1dbc5f7bafaf39d28b229c35e4a50d6 1261 main/binary-all/Packages.gz + e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 main/source/Sources + b927ecd67c8c1f4e79d668b5fd0f609615c7ad2687421fd3960005335716cc43 28 main/source/Sources.gz +SHA512: + a83e3e091eb690bc7c7e4918c013a19d0dd57d0a61ee05465166d4803d5c3a396a75a0e6b60222066a35c945eed755360df6a55327833e0980cb1674842332cb 1172357 main/binary-amd64/Packages + af5cfc372fbe4a6ba49fb1be85151ced315991bb839392a1ff9b9dbd238c774ec5d4e9287f1d706d20dd4d3a3bbfd0c6bab78f474cbd4d04bd53dbc26087474f 172958 main/binary-amd64/Packages.gz + 640f94d3021c379ee86f1d9f1334fc49aa8cfcc74430714b3694fc002501465c113e5978f5ae0c4ff42d2b1e51f399ce74b4d652d44e77944e133f6386e8cfc6 314697 main/binary-arm64/Packages + a01f7143bff7f2a1b1b82b2878380928f3a7f88123ca2d5280112b998abbf389097bd01c2346a2804cd3604680c9507c8f5313f5c87c777071edc858269e35ad 43405 main/binary-arm64/Packages.gz + 53312eedc156a0aae98f017ac0abfd5d44880cb751ab9d212dfbf959a6765aee531d0a769ca525fe743c067a539c8949e7469492fdf0454be159352442d11101 163857 main/binary-armhf/Packages + dda6abc177b0f6d37baf434843d4e6ec1530bd21bd3fb4f769a81ab0880847a9361a168290c8c15817207dca3d8629e4274c545c9c1e9d24934c3acf45089169 15471 main/binary-armhf/Packages.gz + 89df21083ad08667cf80b716ae7ecaf97290e8c0e89eede5dd233101130a89f7e84e86adad24afd6b0606a3db7d173f6f02874a53e85c5291d230036826fda00 5036 main/binary-all/Packages + 9582244306550653b9cd0bf8295e6e57cee7a710f3ee988ac9938c390cfea9a361a69c4c8a882851ffba2b410f479cc1354c57c75f24c97daceee9224377a011 1261 main/binary-all/Packages.gz + cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e 0 main/source/Sources + 6f6342ebeab81bcced2eac440bd6d1f6a26a36cb55bb2ae06bfce9873864d4236e52ce59caeacc1175361f7311d1d752b5bb357b2c22ddc59081843f58b07e12 28 main/source/Sources.gz + +-----BEGIN PGP SIGNATURE----- +Version: BSN Pgp v1.0.0.0 + +iQEcBAEBCAAGBQJm6pA/AAoJEOs+lK2+EinPDPoH/Az98OtfpGhBSAtp/oD3acXq +UGb1fAZF4HeY88Pu1qqH1NKBdJjj/xQf2MAMqfO2v8WRvWWuF9kwyZaBDzHcsmzl +1ajSOjO5bhnffrZ0cQU6S18ohfn/sPb9EzNZiGmIXIQoqL+kQgzMDy4LIe/V8m/s +2K6oDFGsRAYf2XUE85YGionepcm6QoKvXy+cdwj6FyeoZwOJiqltd4+Wwhw2mIQ8 +YT4FKs6cXeMmJK6k9Yp/AYVSoGUVBibQ0SJhH1USqosvKAaOF73czVS8WH+79+Gu +Olu+7ru+LIDuUqS28zLvFZySmih4BT9E12+/ucpvQQWiFx1Y+ac4ZEatIyHcpNo= +-----END PGP SIGNATURE----- diff --git a/apt_cache/lists/packages.microsoft.com_ubuntu_22.04_prod_dists_jammy_main_binary-all_Packages b/apt_cache/lists/packages.microsoft.com_ubuntu_22.04_prod_dists_jammy_main_binary-all_Packages new file mode 100644 index 000000000..36731219a --- /dev/null +++ b/apt_cache/lists/packages.microsoft.com_ubuntu_22.04_prod_dists_jammy_main_binary-all_Packages @@ -0,0 +1,142 @@ +Package: sqlcmd +Version: 0.15.2-1~buster +Architecture: all +Section: sql +Priority: extra +Installed-Size: 15702 +Maintainer: sqlcmd tools team +Description: SQLCMD TOOLS CLI + SQLCMD TOOLS CLI, a multi-platform command line experience for Microsoft SQL Server and Azure SQL. +Homepage: https://github.com/microsoft/go-sqlcmd +SHA256: b5f6c01671f15ea4f78fcfd4648a84239ff18b44796475c616802730f674a088 +Size: 4516238 +Filename: pool/main/s/sqlcmd/sqlcmd_0.15.2-1_jammy_all.deb + +Package: mde-netfilter-src +Version: 100.69.73-2 +Architecture: all +Section: alien +Priority: extra +Installed-Size: 63 +Maintainer: root +Description: Microsoft Defender for Endpoints Netfitler + Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace + . + (Converted from a rpm package by alien version 8.95.) +SHA256: 8a745da95a44546cb2b034184fa51a1e9270ca67a0ef827613b651eb7b186c2c +Size: 13578 +Filename: pool/main/m/mde-netfilter-src/mde-netfilter-src_100.69.73-2_all.deb + +Package: sqlcmd +Version: 1.5.0-1~buster +Architecture: all +Section: sql +Priority: extra +Installed-Size: 19246 +Maintainer: sqlcmd tools team +Description: SQLCMD TOOLS CLI + SQLCMD TOOLS CLI, a multi-platform command line experience for Microsoft SQL Server and Azure SQL. +Homepage: https://github.com/microsoft/go-sqlcmd +SHA256: 839c6832e2e1ba034a5840554454f78dfb37a802308f58a0c6afe5ea3b762ef3 +Size: 5340762 +Filename: pool/main/s/sqlcmd/sqlcmd_1.5.0-1_jammy_all.deb + +Package: sqlcmd +Version: 0.15.1-1~buster +Architecture: all +Section: sql +Priority: extra +Installed-Size: 15702 +Maintainer: sqlcmd tools team +Description: SQLCMD TOOLS CLI + SQLCMD TOOLS CLI, a multi-platform command line experience for Microsoft SQL Server and Azure SQL. +Homepage: https://github.com/microsoft/go-sqlcmd +SHA256: ae86042937d48dbe1d2388746e43617709abd18e09a9757f99a6240ba9ae964c +Size: 4516198 +Filename: pool/main/s/sqlcmd/sqlcmd_0.15.1-1_jammy_all.deb + +Package: sqlcmd +Version: 1.0.0-1~buster +Architecture: all +Section: sql +Priority: extra +Installed-Size: 18954 +Maintainer: sqlcmd tools team +Description: SQLCMD TOOLS CLI + SQLCMD TOOLS CLI, a multi-platform command line experience for Microsoft SQL Server and Azure SQL. +Homepage: https://github.com/microsoft/go-sqlcmd +SHA256: 7b9a6f9ab726a1c1559cda91197db5e1d5520fb5ae164662d5fd81040e35aa6f +Size: 5290342 +Filename: pool/main/s/sqlcmd/sqlcmd_1.0.0-1_jammy_all.deb + +Package: sqlcmd +Version: 0.15.0-1~buster +Architecture: all +Section: sql +Priority: extra +Installed-Size: 15702 +Maintainer: sqlcmd tools team +Description: SQLCMD TOOLS CLI + SQLCMD TOOLS CLI, a multi-platform command line experience for Microsoft SQL Server and Azure SQL. +Homepage: https://github.com/microsoft/go-sqlcmd +SHA256: e4031ea9f47751c8e14d361cd6729a2d71d1edd70a18b510c38efe68324719ef +Size: 4514746 +Filename: pool/main/s/sqlcmd/sqlcmd_0.15.0-1_jammy_all.deb + +Package: packages-microsoft-prod +Version: 1.0-ubuntu22.04.1 +Architecture: all +Section: admin +Priority: extra +Installed-Size: 42 +Maintainer: Linux Repo Admins +Description: Apt configuration for packages.microsoft.com + This package contains the apt repo configuration + for packages.microsoft.com and the public GPG key. +Depends: apt-transport-https, ca-certificates +SHA256: b8713c36d3e6f6b2520830180cf6b5779e48410ad5d5e1b192635b0c7359fcc6 +Size: 3692 +Filename: pool/main/p/packages-microsoft-prod/packages-microsoft-prod_1.0-ubuntu22.04.1_amd64.deb + +Package: sqlcmd +Version: 1.2.1-1~buster +Architecture: all +Section: sql +Priority: extra +Installed-Size: 18878 +Maintainer: sqlcmd tools team +Description: SQLCMD TOOLS CLI + SQLCMD TOOLS CLI, a multi-platform command line experience for Microsoft SQL Server and Azure SQL. +Homepage: https://github.com/microsoft/go-sqlcmd +SHA256: c0464eefcabb1a79dfaf5fe5001e77b2d30bfcfd9069636e55cdcdb94863359c +Size: 5241642 +Filename: pool/main/s/sqlcmd/sqlcmd_1.2.1-1_jammy_all.deb + +Package: sqlcmd +Version: 0.15.4-1~buster +Architecture: all +Section: sql +Priority: extra +Installed-Size: 18950 +Maintainer: sqlcmd tools team +Description: SQLCMD TOOLS CLI + SQLCMD TOOLS CLI, a multi-platform command line experience for Microsoft SQL Server and Azure SQL. +Homepage: https://github.com/microsoft/go-sqlcmd +SHA256: 740a0a6568d71daf6c86a92fa0b38bcbca65165a19de4267c1d4642537430434 +Size: 5287254 +Filename: pool/main/s/sqlcmd/sqlcmd_0.15.4-1_jammy_all.deb + +Package: sqlcmd +Version: 0.15.3-1~buster +Architecture: all +Section: sql +Priority: extra +Installed-Size: 18950 +Maintainer: sqlcmd tools team +Description: SQLCMD TOOLS CLI + SQLCMD TOOLS CLI, a multi-platform command line experience for Microsoft SQL Server and Azure SQL. +Homepage: https://github.com/microsoft/go-sqlcmd +SHA256: d1284f96f0c2a9106d097620e65f37a0893c2d040f0694ac680e3fc279fa11fa +Size: 5291854 +Filename: pool/main/s/sqlcmd/sqlcmd_0.15.3-1_jammy_all.deb + diff --git a/apt_cache/lists/packages.microsoft.com_ubuntu_22.04_prod_dists_jammy_main_binary-amd64_Packages b/apt_cache/lists/packages.microsoft.com_ubuntu_22.04_prod_dists_jammy_main_binary-amd64_Packages new file mode 100644 index 000000000..e5b1d4a26 --- /dev/null +++ b/apt_cache/lists/packages.microsoft.com_ubuntu_22.04_prod_dists_jammy_main_binary-amd64_Packages @@ -0,0 +1,21782 @@ +Package: libmsquic +Version: 2.3.4 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 13431 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: e3340955e84aafd62be9b22e576f07db81fb8b91a43153b46523222ae07c1f0b +Size: 4112014 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.4_amd64.deb + +Package: dotnet-host +Version: 6.0.18-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.18 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 8ffa1b39d77d6a94bd176906fb800283f6234546933df852f72179bebb7701d4 +Size: 55844 +Filename: pool/main/d/dotnet-host/dotnet-host-6.0.18-x64.deb + +Package: dotnet-targeting-pack-7.0 +Version: 7.0.4-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 31135 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 7.0.4 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 451a6f449278670d33b5a24b68fb512968349936ec04b45109d2b35a172bcf05 +Size: 2568714 +Filename: pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.4-x64.deb + +Package: dotnet-apphost-pack-7.0 +Version: 7.0.19-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11285 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 7.0.19 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: ff6beacc5a2f16355bb6ac09025892ffc61ff87964a702ebc4d09c013183945a +Size: 3524990 +Filename: pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.19-1_amd64.deb + +Package: dotnet-host +Version: 6.0.21-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.21 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 10c0bb4a6e888b7b793ce8c2119cce80ec85c5dc2efcf36fd42be9c2ff123fe3 +Size: 55830 +Filename: pool/main/d/dotnet-host/dotnet-host_6.0.21-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.407-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 337182 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.407 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.15), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.15), dotnet-apphost-pack-6.0 (>= 6.0.15), dotnet-runtime-6.0 (>= 6.0.15), aspnetcore-targeting-pack-6.0 (>= 6.0.15) +SHA256: 6749bdafa013e4681150e83b49102e7dabe276d5cf2effafc74505b597dc63ba +Size: 86699018 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.407-x64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.16-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.16 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: dab9c7f9d0e4a250212c5bb52fda8dd85f965a0e81246e6b41c3a8be54195e0b +Size: 2798 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.16-x64.deb + +Package: dotnet-apphost-pack-8.0 +Version: 8.0.3-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11075 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 8.0.3 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: a62ad352584fafa1f8fe3b8a01a370ee0ce9f1d866dc5edf109d223bfa8ce968 +Size: 3516398 +Filename: pool/main/d/dotnet-apphost-pack-8.0/dotnet-apphost-pack-8.0_8.0.3-1_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.21-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68462 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.21 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.21), dotnet-runtime-deps-6.0 (>= 6.0.21) +SHA256: 94954b3e7667d6fcc8c6f2de4f07602653cba4b8419edaa41eacbc205c931466 +Size: 22867970 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.21-1_amd64.deb + +Package: azure-functions-core-tools-3 +Version: 3.0.4585-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v3 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools, azure-functions-core-tools-2 +Replaces: azure-functions-core-tools, azure-functions-core-tools-2 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: df947f9098d0f38c78695438129d5e9c50584a6b967f39169ef9a6fb1313ab71 +Size: 224541056 +Filename: pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4585-1.deb + +Package: dotnet-runtime-8.0 +Version: 8.0.6-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70242 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 8.0.6 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-8.0 (>= 8.0.6), dotnet-runtime-deps-8.0 (>= 8.0.6) +SHA256: 5b5079c38ba2f992f366f5a76e1038e6b199d2eaa2fd3041c352da7498ae93fd +Size: 23042950 +Filename: pool/main/d/dotnet-runtime-8.0/dotnet-runtime-8.0_8.0.6-1_amd64.deb + +Package: moby-tini +Version: 0.19.0-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 839 +Maintainer: Microsoft +Description: tiny but valid init for containers + Tini is the simplest init you could think of. + . + All Tini does is spawn a single child (Tini is meant to be run in a + container), and wait for it to exit all the while reaping zombies and + performing signal forwarding. +Homepage: https://github.com/krallin/tini +SHA256: b492e0f4bdb3882cbad9e11c75769e2e0806bd66d4cb60bdfa00d3a63af666c2 +Size: 363272 +Filename: pool/main/m/moby-tini/moby-tini_0.19.0-ubuntu22.04u1_amd64.deb + +Package: moby-cli +Version: 20.10.15+azure-1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61004 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 9a9804bbac9ec7947049d5b373482fee6823b56447c921708a7ecc761909cbbc +Size: 11843912 +Filename: pool/main/m/moby-cli/moby-cli_20.10.15+azure-1_amd64.deb + +Package: dotnet-host +Version: 7.0.10-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 246 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.10 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: e47b8abe42da934b27969dd4385546e97f8c2c09d83ff3bceb0e28e7ef15d5dd +Size: 57218 +Filename: pool/main/d/dotnet-host/dotnet-host_7.0.10-1_amd64.deb + +Package: aziot-identity-service +Version: 1.4.6-1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 18911 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1) +SHA256: e3ffaf6f41da6b5ef343dada96b64897bfe87e38b6507c1818e1c17227793e8c +Size: 4553036 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.4.6-1_amd64.deb + +Package: dotnet-host +Version: 6.0.4-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.4 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: fbbe8b30c4b7c6c89119dcf4b59022cbb748466af203c2d5cfb8d8e6de55291c +Size: 55768 +Filename: pool/main/d/dotnet-host/dotnet-host-6.0.4-x64.deb + +Package: aspnetcore-runtime-8.0 +Version: 8.0.3-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 23494 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-8.0 (>= 8.0.3) +SHA256: 7bc611470367c2ac9d5c1cbd62be906b63b4dc4396444d82054def78102ec513 +Size: 7667946 +Filename: pool/main/a/aspnetcore-runtime-8.0/aspnetcore-runtime-8.0_8.0.3-1_amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.4590-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: b972ad5aedbdd8ccc8f1fdaed1cec6b3bb0438f1cd1ae22734c0c9011d0095e7 +Size: 124368500 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4590-1.deb + +Package: dotnet-targeting-pack-7.0 +Version: 7.0.11-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 31138 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 7.0.11 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 0abf0aea546c03a27a2948b0ef5f51f2eb6120b39dce94983a2f214249c7b7b1 +Size: 2568446 +Filename: pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.11-1_amd64.deb + +Package: deviceupdate-agent +Version: 1.1.0 +Architecture: amd64 +Section: admin +Priority: extra +Installed-Size: 5618 +Maintainer: aduct@microsoft.com +Description: Device update agent +Homepage: https://github.com/Azure/iot-hub-device-update +Depends: deliveryoptimization-agent (>= 1.0.0), libdeliveryoptimization (>= 1.0.0), libcurl4-openssl-dev, libc6 (>= 2.34), libcurl4 (>= 7.18.2), libgcc-s1 (>= 3.0), libssl3 (>= 3.0.0~~alpha1), libstdc++6 (>= 11), libxml2 (>= 2.7.4) +Suggests: deliveryoptimization-plugin-apt +SHA256: 23dc008c53da0c1a0792041517562e977fb5dd35338102c6dd0fab9c222db6ef +Size: 2029166 +Filename: pool/main/d/deviceupdate-agent/deviceupdate-agent_1.1.0_amd64.deb + +Package: dotnet-runtime-7.0 +Version: 7.0.8-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70836 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 7.0.8 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-deps-7.0 (>= 7.0.8), dotnet-hostfxr-7.0 (>= 7.0.8) +SHA256: ce1576434204df98a773ce62ea757b06997a110fea7d50720c6b39a5c0476337 +Size: 23202254 +Filename: pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.8-x64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.307-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 331351 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.307 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.12), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.12), dotnet-apphost-pack-6.0 (>= 6.0.12), dotnet-runtime-6.0 (>= 6.0.12), aspnetcore-targeting-pack-6.0 (>= 6.0.12) +SHA256: cbd5a89006370129d484ecb59bcff70b18644c2bfef2da621834a0d02d15721d +Size: 85122482 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.307-x64.deb + +Package: azure-functions-core-tools +Version: 4.0.5348-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: a8028acfa074da855eef31805a52ed341f95f33bf74319a083903b8fc17bca7c +Size: 157155760 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5348-1.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.128-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 313967 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.128 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.28), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.28), dotnet-apphost-pack-6.0 (>= 6.0.28), dotnet-runtime-6.0 (>= 6.0.28), aspnetcore-targeting-pack-6.0 (>= 6.0.28) +SHA256: 945199ed4bcb83f0f7294dbd1244a49cc41aab43e8bba391ca6c217b6e6c61ea +Size: 78807966 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.128-1_amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.5312-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: e6ca931e3c33ef55ada53058ec62416516965fcb3f0bfd8377303a8a97cfcbbc +Size: 156812136 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5312-1.deb + +Package: dotnet-apphost-pack-7.0 +Version: 7.0.16-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11285 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 7.0.16 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 9d4f90ce5c982b1fff603460e949f9764156ec7e0db85febbfcd8909b0a90c65 +Size: 3522790 +Filename: pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.16-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.419-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 336985 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.419 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.27), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.27), dotnet-apphost-pack-6.0 (>= 6.0.27), dotnet-runtime-6.0 (>= 6.0.27), aspnetcore-targeting-pack-6.0 (>= 6.0.27) +SHA256: d0ffd0dac5b70284f66c4164cc49d822bdee4837ddb519a1723d9735985a7570 +Size: 86819042 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.419-1_amd64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.16-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.16 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: caa042a6bbd325c7bbb6d43906cc82643139192e294081d965ab9f01fbdfa099 +Size: 2134180 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.16-x64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.406-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 337159 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.406 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.14), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.14), dotnet-apphost-pack-6.0 (>= 6.0.14), dotnet-runtime-6.0 (>= 6.0.14), aspnetcore-targeting-pack-6.0 (>= 6.0.14) +SHA256: 6f0964aa293e16b62a09a7c9729f03739dd5f5580702abafa2836d02bec26014 +Size: 86710362 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.406-x64.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.16-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.16 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 368adfac8bcc11ec0dbb70315aaf22f50ae6b883aff246983f6e65ab48f450ef +Size: 2890 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.16-1_amd64.deb + +Package: moby-cli +Version: 24.0.9-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 35268 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 07e60482fcab22117a853ca57bb65d39bf28e26be79bb52cd2dc6ce9819a0a64 +Size: 15626124 +Filename: pool/main/m/moby-cli/moby-cli_24.0.9-ubuntu22.04u1_amd64.deb + +Package: procdump +Version: 1.4.1-14851 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 11111 +Maintainer: OSS Tooling Dev Team +Description: Sysinternals process dump utility + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +Homepage: https://github.com/Microsoft/ProcDump-for-Linux +Depends: gdb (>= 7.6.1), libc6 +SHA256: a52dc999199e47240f20d68afa15a97609ddda007ee8f07d714eef1816960c8f +Size: 1655962 +Filename: pool/main/p/procdump/procdump_1.4.1-14851_amd64.deb + +Package: dotnet-host +Version: 6.0.31-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.31 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 6a62f0a42d1a175b33dfd2d5e1df37d1d16d2db465a5c736c268a1252398e33a +Size: 55814 +Filename: pool/main/d/dotnet-host/dotnet-host_6.0.31-1_amd64.deb + +Package: aztfexport +Version: 0.14.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 74076 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfexport +Vendor: none +License: MPL-2.0 +SHA256: fa7fe134b64d026931c83563740919ba705303c5683638cbd4f566dbd2bfb50d +Size: 12085508 +Filename: pool/main/a/aztfexport/aztfexport_0.14.0_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.203-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 357031 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.203 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.5), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.5), dotnet-runtime-7.0 (>= 7.0.5), dotnet-targeting-pack-7.0 (>= 7.0.5), aspnetcore-runtime-7.0 (>= 7.0.5) +SHA256: 2e1000a54d809da2b49d0fbfacb4c9eca33805e0334be8fa34815ab17814fead +Size: 91833094 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.203-x64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.14-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19872 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.14) +SHA256: 0734d77b6149db2d071b8b15f126cb9f7da613166cdd6bc835b791bad9f666fe +Size: 6612218 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.14-x64.deb + +Package: aspnetcore-targeting-pack-7.0 +Version: 7.0.7-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 13093 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-7.0 (>= 7.0.7) +SHA256: 0ed727999af4970f63aefcb531cfb0d7f082b6aad5062d168dae767a61191c08 +Size: 1518774 +Filename: pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.7-x64.deb + +Package: powershell-preview +Version: 7.4.0-rc.1-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 176791 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 940ab39342e7222ab0b09aee1182bdc8909db10a57908f8b25f1a1b9817dc60a +Size: 70833626 +Filename: pool/main/p/powershell-preview/powershell-preview_7.4.0-rc.1-1.deb_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.313-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 366484 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.313 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.16), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.16), dotnet-runtime-7.0 (>= 7.0.16), dotnet-targeting-pack-7.0 (>= 7.0.16), aspnetcore-runtime-7.0 (>= 7.0.16) +SHA256: 616f55513b34fd41413c52067eff75e7835f299d64fa7696d6babb50c1453375 +Size: 96381722 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.313-1_amd64.deb + +Package: msopenjdk-17 +Version: 17.0.5-1 +Architecture: amd64 +Section: java +Priority: extra +Installed-Size: 324215 +Maintainer: Microsoft +Description: OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: fonts-dejavu, libx11-6, libxext6, libxi6, libxrender1, libxtst6, libasound2, libfontconfig1, libfreetype6 +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: c58dbc06612034c0478881304b9b96ebee23fe0212dbf38e9023c5d7087d4a85 +Size: 192096976 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.5-1_amd64.deb + +Package: aspnetcore-runtime-7.0 +Version: 7.0.12-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 21370 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-7.0 (>= 7.0.12) +SHA256: 49778ed3574083e50016311ef9880a9e056a3b1a22e927de7c2d85c788b034a0 +Size: 7064358 +Filename: pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.12-1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.109-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 350083 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.109 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.9), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.9), dotnet-runtime-7.0 (>= 7.0.9), dotnet-targeting-pack-7.0 (>= 7.0.9), aspnetcore-runtime-7.0 (>= 7.0.9) +SHA256: bc23f4fa578ffe9206fc1cb4c299e04f890994ed3672571840e5e1d49abfcd57 +Size: 90667862 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.109-x64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.411-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 337371 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.411 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.19), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.19), dotnet-apphost-pack-6.0 (>= 6.0.19), dotnet-runtime-6.0 (>= 6.0.19), aspnetcore-targeting-pack-6.0 (>= 6.0.19) +SHA256: 84f679ab43f1a1f9a9c55801fc7b8be18159b4d39a25e4cdb6e79df3ee4eea05 +Size: 86793590 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.411-x64.deb + +Package: dotnet-runtime-deps-8.0 +Version: 8.0.6-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 8.0.6 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52 +SHA256: 07dd8c045fb7caea46fe15997dcdc7d3a731155c15223036ee089fd3a628e214 +Size: 2890 +Filename: pool/main/d/dotnet-runtime-deps-8.0/dotnet-runtime-deps-8.0_8.0.6-1_amd64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.302-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 408264 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.302 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.6), dotnet-targeting-pack-8.0 (>= 8.0.6), dotnet-apphost-pack-8.0 (>= 8.0.6), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.6), aspnetcore-targeting-pack-8.0 (>= 8.0.6) +SHA256: ec6f6173137afbc94626f68056c8c19b48bc5ba92ef9be818420d110b08b7e2e +Size: 106533710 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.302-1_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.6-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11066 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.6 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: c1d0c68d3c49d41e233931a6298b2f0a659b557beb4a3a2aa4d306583a373a32 +Size: 3509660 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.6-x64.deb + +Package: powershell-preview +Version: 7.3.0-preview.4-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 124805 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 07580974546b886fe611343f06359f58b43e3e3e0fc650ea839554ef7f76a955 +Size: 46699494 +Filename: pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.4-1.deb_amd64.deb + +Package: azcmagent +Version: 1.44.02748.1621 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 38ff17e2347b31136a280615af48378268feec2b9db0d7126e95ed3a3d2e32d1 +Size: 67196506 +Filename: pool/main/a/azcmagent/azcmagent_1.44.02748.1621_amd64.deb + +Package: aziot-identity-service +Version: 1.4.8-1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 19355 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1), psmisc +SHA256: c0e7725220a0ad5711ed9f9d8acbab18e11006f5cc0142a67c94c71b12d8db64 +Size: 4677192 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.4.8-1_amd64.deb + +Package: dotnet-host +Version: 8.0.0-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 174 +Maintainer: .NET Team +Description: Microsoft .NET Host - 8.0.0 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libc6, libgcc1, libstdc++6 +SHA256: ae646b1df4593ff94a73d508bcd987b399d0ab8ec47a1e94b7f60b64c9242720 +Size: 37726 +Filename: pool/main/d/dotnet-host/dotnet-host_8.0.0-1_amd64.deb + +Package: dotnet-host +Version: 6.0.25-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.25 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: b39e210b8ba372c537e59810b3db2a840167ebca6028d3e6145752e00ed35ecd +Size: 55760 +Filename: pool/main/d/dotnet-host/dotnet-host_6.0.25-1_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.13-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.13 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.13), libc6 +SHA256: 93ef511b5897aead2d0d9452c19aa0d9b938e6e7986edd76fb781fb6b770f4f6 +Size: 142394 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.13-x64.deb + +Package: azure-ai-vision-runtime-common +Version: 0.13.0~beta.1 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 2729 +Maintainer: vision-sdk@microsoft.com +Description: Azure AI Vision Common Components Runtime Package +Depends: libc6 (>= 2.4), libgcc1 (>= 1:3.3.1), libstdc++6 (>= 6), libuuid1 (>= 2.16) +SHA256: 3bfe8ee9b4483f22e063417f8441365e412007ce4242107e6857b6c89a25fe67 +Size: 684054 +Filename: pool/main/a/azure-ai-vision-runtime-common/azure-ai-vision-runtime-common-0.13.0~beta.1-Linux.deb + +Package: mdatp +Version: 101.58.80 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 207291 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: curl (>= 7.5), libseccomp2, libuuid1, libatomic1, libc6 (>= 2.23), python3, uuid-runtime, dmidecode, auditd, libselinux1, libfuse2, mde-netfilter, perl +SHA256: 2756a8f62089c0658da3ae4ed07a1ee3ecbf66f7402a949755638fd545bb3636 +Size: 60775648 +Filename: pool/main/m/mdatp/mdatp_101.58.80.amd64.deb + +Package: powershell +Version: 7.2.21-1.deb +Architecture: amd64 +Section: shells +Priority: optional +Installed-Size: 168400 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: eb864aff8773d2e940cbfcbc6536d8e2022e4b1191a8b953cce59de0fb412f1b +Size: 68261212 +Filename: pool/main/p/powershell/powershell_7.2.21-1.deb_amd64.deb + +Package: moby-containerd +Version: 1.5.16+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 109065 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 0c2b9b1589776ca63ec95646df6bc9cfa00697ad84ff231264799c4417f44213 +Size: 28377386 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.16+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.14-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.14 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.14), libc6 +SHA256: 06558a79a1f4004ee029c0ca5e06635ee771f3379b28e409cdb9126c8fa4de71 +Size: 142366 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.14-x64.deb + +Package: intune-portal +Version: 1.2211.21 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 18719 +Maintainer: Microsoft +Description: Microsoft Intune + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +Depends: libpam-pwquality (>= 1.4.0-2), libglib2.0-0 (>= 2.12.0), msalsdk-dbusclient (>= 1.0), libsoup2.4-1 (>= 2.4.0), libjavascriptcoregtk-4.0-18 (>= 2.36.8), libgtk-3-0 (>= 3.9.10), libssl3 (>= 3.0.0~~alpha1), libpam0g (>= 0.99.7.1), libsecret-1-0 (>= 0.19.1), libx11-6, libgtk-3-0 (>= 3.16.2), libsqlite3-0 (>= 3.7.14), libc6 (>= 2.34), libstdc++6 (>= 12), libcurl4 (>= 7.16.2), libsystemd0, libwebkit2gtk-4.0-37 (>= 2.5.3), zlib1g (>= 1:1.2.0), libuuid1 (>= 2.16), libatk1.0-0 (>= 1.12.4), libglib2.0-0 (>= 2.35.8), libpango-1.0-0 (>= 1.14.0), gnome-keyring (>= 3.36) +Recommends: microsoft-edge-stable (>= 102) +SHA256: d713a6496fb0766d7001ddbce0c100643ffd95830080eea9a29b8ff04075d428 +Size: 3347064 +Filename: pool/main/i/intune-portal/intune-portal_1.2211.21_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.306-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 366974 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.306 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.9), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.9), dotnet-runtime-7.0 (>= 7.0.9), dotnet-targeting-pack-7.0 (>= 7.0.9), aspnetcore-runtime-7.0 (>= 7.0.9) +SHA256: 054944c3f1c729ebd4fc08bd58a68bf759e6878d8729815ee59145e945e59857 +Size: 96543430 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.306-x64.deb + +Package: azure-functions-core-tools +Version: 4.0.5700-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: d706b3599d2d06c4217971ae237777c8339a74577019bb494c8a0acd02b6980a +Size: 159831702 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5700-1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.305-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 366874 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.305 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.8), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.8), dotnet-runtime-7.0 (>= 7.0.8), dotnet-targeting-pack-7.0 (>= 7.0.8), aspnetcore-runtime-7.0 (>= 7.0.8) +SHA256: 4d75c12e2936c62b5be154a61969239f44680cc12bd9b157f32ea40b93ebeefd +Size: 96542698 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.305-x64.deb + +Package: netstandard-targeting-pack-2.1 +Version: 2.1.0-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 19773 +Maintainer: .NET Core Team +Description: NETStandard.Library.Ref 2.1.0 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 0f12001d1918f7ad2452d14d70bd396c82080b691407735213e90de637061f57 +Size: 1476016 +Filename: pool/main/n/netstandard-targeting-pack-2.1/netstandard-targeting-pack-2.1_2.1.0-1_amd64.deb + +Package: aziot-edge +Version: 1.4.33-1 +Architecture: amd64 +Section: admin +Priority: extra +Installed-Size: 18514 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, psmisc, sed, aziot-identity-service (= 1.4.8-1) +SHA256: aa5626745aef3619c27bc83fa8f3324bb976b317edd0123a98c4d2e020a2125b +Size: 4875800 +Filename: pool/main/a/aziot-edge/aziot-edge_1.4.33-1_amd64.deb + +Package: aspnetcore-targeting-pack-8.0 +Version: 8.0.4-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 15816 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-8.0 (>= 8.0.4) +SHA256: be736505b48282f1436b6144d85bf72c189cbfac7657a058952f9022f94df862 +Size: 1901158 +Filename: pool/main/a/aspnetcore-targeting-pack-8.0/aspnetcore-targeting-pack-8.0_8.0.4-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.113-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 313399 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.113 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.13), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.13), dotnet-apphost-pack-6.0 (>= 6.0.13), dotnet-runtime-6.0 (>= 6.0.13), aspnetcore-targeting-pack-6.0 (>= 6.0.13) +SHA256: 829fa22bb13f41075e7a253b2588d9848c512fa59c9594fd367561180b9e0ea1 +Size: 78501022 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.113-x64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.7-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68402 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.7 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.7), dotnet-runtime-deps-6.0 (>= 6.0.7) +SHA256: 6099c737128e6076793bd9e7d7076a1189fbcd79e99ece43b3a283b71072d387 +Size: 23053200 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.7-x64.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.20-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.20 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 31cddf44f0775ef9db695ff7f51f6b649bf5e192d6d63eb7af7d2ac3f01de329 +Size: 2890 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.20-1_amd64.deb + +Package: dotnet-host +Version: 7.0.1-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 246 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.1 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: d9220d3f42b7960997b23f3254fbada2b905ea1b91fc80d200580d697bde1914 +Size: 57270 +Filename: pool/main/d/dotnet-host/dotnet-host-7.0.1-x64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.5700-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 386763e343f63aab74e5827d491ebb144e100e0bf1feb2417fd16b70351a8c19 +Size: 159821014 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5700-1_amd64.deb + +Package: intune-portal +Version: 1.2402.12-jammy +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 26973 +Maintainer: Microsoft +Description: Microsoft Intune + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +Depends: libglib2.0-0 (>= 2.35.8), libgtk-3-0 (>= 3.21.4), libc6 (>= 2.34), zlib1g (>= 1:1.2.0), libpam-pwquality (>= 1.4.0-2), libpango-1.0-0 (>= 1.14.0), libatk1.0-0 (>= 1.12.4), libgtk-3-0 (>= 3.9.10), gnome-keyring (>= 3.36), libstdc++6 (>= 12), libpam0g (>= 0.99.7.1), libsoup2.4-1 (>= 2.4.0), libssl3 (>= 3.0.0~~alpha1), libwebkit2gtk-4.0-37 (>= 2.39.90), libsecret-1-0 (>= 0.7), libuuid1 (>= 2.16), libglib2.0-0 (>= 2.12.0), libcurl4 (>= 7.16.2), libjavascriptcoregtk-4.0-18, libx11-6, libdbus-1-3 (>= 1.9.14), msalsdk-dbusclient (>= 1.0), libsqlite3-0 (>= 3.7.14), libsystemd0 +Recommends: microsoft-edge-stable (>= 102) +SHA256: 4b9f83766d77389e1e41343d43c3a0b02aa7a4ce86c6e675844c9c642cbafff8 +Size: 6638942 +Filename: pool/main/i/intune-portal/intune-portal_1.2402.12-jammy_amd64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.5-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11724 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.5) +SHA256: 29b8a014222d013e3cd033f89d51bd7b1fdf5253e1be0dd94e22f219d779417b +Size: 1307204 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.5-x64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.416-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 337401 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.416 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.24), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.24), dotnet-apphost-pack-6.0 (>= 6.0.24), dotnet-runtime-6.0 (>= 6.0.24), aspnetcore-targeting-pack-6.0 (>= 6.0.24) +SHA256: 0c02d6340293058c7af92f3821702e58e7fd340276441b793d9ae44ffeb22f1c +Size: 86825034 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.416-1_amd64.deb + +Package: procdump +Version: 1.4-13733 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 11065 +Maintainer: OSS Tooling Dev Team +Description: Sysinternals process dump utility + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +Homepage: https://github.com/Microsoft/ProcDump-for-Linux +Depends: gdb (>= 7.6.1), libc6 +SHA256: 459930388ecacd1df86996b86fe3c52a714a3a4f9eecd62d594e6e92eb83ec4d +Size: 1646306 +Filename: pool/main/p/procdump/procdump_1.4-13733_amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.5274-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: c6a06548c60acd80cbeae521682d0257bf2d19e04c8b830246ad966b9e7a19c9 +Size: 156768584 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5274-1.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.27-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11075 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.27 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 54eff941bccc2af855748d5722b4c7eac38187975452f16898d585bbe4ffac6d +Size: 3511966 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.27-1_amd64.deb + +Package: msopenjdk-17 +Version: 17.0.8.1-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 324342 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 17 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 56009bcf7b9c08524d134fc97b99611b05d96884feee1a6de79e1e0269dc13bd +Size: 164702238 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8.1-1_amd64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.300-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 408236 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.300 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.5), dotnet-targeting-pack-8.0 (>= 8.0.5), dotnet-apphost-pack-8.0 (>= 8.0.5), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.5), aspnetcore-targeting-pack-8.0 (>= 8.0.5) +SHA256: a73bff62831106fee0f367390046d63e56f6bc958ec0fcd36967c293fe306d84 +Size: 106546494 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.300-1_amd64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.18-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.18 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 71a3aa22666f1348e84d2d308db567fc5acc7dc3877c7b4d329f4bc1c0b587f3 +Size: 2118644 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.18-x64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.3-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19838 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.3) +SHA256: c6f2932646657fc4ba8921d7668e462883a5231dfb7875bf3e4a209aaafbf2c0 +Size: 6601416 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.3-x64.deb + +Package: aspnetcore-runtime-7.0 +Version: 7.0.17-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 21370 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-7.0 (>= 7.0.17) +SHA256: 3bff69bb4502c2bbf5319d602be967d36672956fd91cfc2a69615354d02b9cf1 +Size: 7066030 +Filename: pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.17-1_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.23-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.23 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.23), libc6 +SHA256: b0fd147129b2e43d6f372e0ec8672e9b240b80972102582921b829282cc7bdf2 +Size: 142344 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.23-1_amd64.deb + +Package: azure-functions-core-tools-3 +Version: 3.0.4669-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v3 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools, azure-functions-core-tools-2 +Replaces: azure-functions-core-tools, azure-functions-core-tools-2 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 31e20c09d20ae7e532ba362411737b526cd08ad64ced422fa6ffb46285c243e3 +Size: 227705672 +Filename: pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4669-1.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.206-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 419262 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.206 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.6), dotnet-targeting-pack-8.0 (>= 8.0.6), dotnet-apphost-pack-8.0 (>= 8.0.6), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.6), aspnetcore-targeting-pack-8.0 (>= 8.0.6) +SHA256: c10c2a2ea202d017d6eefa60ba6d82d3fbb63b480cfb9a895d9e23baba7b67ce +Size: 110399326 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.206-1_amd64.deb + +Package: mde-netfilter-src +Version: 100.69.62-2 +Architecture: amd64 +Section: alien +Priority: extra +Installed-Size: 63 +Maintainer: root +Description: Microsoft Defender for Endpoints Netfitler + Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace + . + (Converted from a rpm package by alien version 8.95.) +SHA256: 499d5c0c2caf30b4be33753611c94edd449b87a2b40d4e200b53174c76aabb0d +Size: 13628 +Filename: pool/main/m/mde-netfilter-src/mde-netfilter-src_100.69.62-2.amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.320-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 331575 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.320 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.25), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.25), dotnet-apphost-pack-6.0 (>= 6.0.25), dotnet-runtime-6.0 (>= 6.0.25), aspnetcore-targeting-pack-6.0 (>= 6.0.25) +SHA256: 91353c6f314b6b9ababe54f8ad67180132d507285b1dbccdb9b4650b34a35c91 +Size: 85294566 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.320-1_amd64.deb + +Package: moby-runc +Version: 1.1.7+azure-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 13386 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: 03086ccb7f42283c52e50107174e6e760d818ff4aed6e726321c915eb2fb3804 +Size: 6079054 +Filename: pool/main/m/moby-runc/moby-runc_1.1.7+azure-ubuntu22.04u2_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.29-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11075 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.29 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: e593ab7235112f0040a751b4a197d81e6f5d71609f0d020b5e980cc2d3c17b7c +Size: 3522072 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.29-1_amd64.deb + +Package: azcopy +Version: 10.25.0~preview.2 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 32580 +Maintainer: Azcopy v-Team +Description: A command-line utility that is used to copy data to and from containers and file shares in Azure Storage accounts +Homepage: https://github.com/Azure/azure-storage-azcopy +Vendor: none +License: unknown +SHA256: cb2f0c0758ddc4fedbfd19a5735126792aae387f8943dc566420997deb58de6a +Size: 16158362 +Filename: pool/main/a/azcopy/azcopy_10.25.0~preview.2_amd64.deb + +Package: powershell-lts +Version: 7.4.4-1.deb +Architecture: amd64 +Section: shells +Priority: optional +Installed-Size: 176718 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 5a5f191f9f53605183756f3617c1ecd8246119e234b2a5db7d9beb54f5589ebc +Size: 70958938 +Filename: pool/main/p/powershell-lts/powershell-lts_7.4.4-1.deb_amd64.deb + +Package: moby-cli +Version: 27.0.3-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 39017 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 9c6b02a0e2d1a990e94ae82c9723ce786c1ef5e702aa637a897ec757d340467c +Size: 17193154 +Filename: pool/main/m/moby-cli/moby-cli_27.0.3-ubuntu22.04u1_amd64.deb + +Package: moby-buildx +Version: 0.11.1+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 76252 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 2de3c57c304f63e284c346c54d0cf40702e34929faf04a1c5d4e29a2552eafdf +Size: 29561162 +Filename: pool/main/m/moby-buildx/moby-buildx_0.11.1+azure-ubuntu22.04u1_amd64.deb + +Package: moby-containerd +Version: 1.6.20+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 125633 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 9f315ca1aecb492680b187f194ce314d6cfa6543cd97240e2467b91640cbf185 +Size: 34942828 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.20+azure-ubuntu22.04u1_amd64.deb + +Package: moby-containerd +Version: 1.6.19+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 125352 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 5022e35b197b6dc0e77ef1bb3d5ecd63de86b5327c98f166969ec0d792a7097c +Size: 34783252 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.19+azure-ubuntu22.04u1_amd64.deb + +Package: moby-engine +Version: 20.10.23+azure-ubuntu22.04u3 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 86952 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 4508e8b38b4ef2740a63d79830795ade2a70a89366d27041b9c34daff5736a86 +Size: 22633888 +Filename: pool/main/m/moby-engine/moby-engine_20.10.23+azure-ubuntu22.04u3_amd64.deb + +Package: aspnetcore-targeting-pack-8.0 +Version: 8.0.2-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 15804 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-8.0 (>= 8.0.2) +SHA256: e50990a804ac117c4ef311f21fd6c011a3f4909d1d18779e288eca301ed7cf8d +Size: 1923854 +Filename: pool/main/a/aspnetcore-targeting-pack-8.0/aspnetcore-targeting-pack-8.0_8.0.2-1_amd64.deb + +Package: dotnet-host +Version: 7.0.17-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 246 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.17 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: e8b72dadefe15faaa6efde4570bb1bee51028f7789db261a2cc71dd23c3f55a8 +Size: 57210 +Filename: pool/main/d/dotnet-host/dotnet-host_7.0.17-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.315-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 331510 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.315 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.20), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.20), dotnet-apphost-pack-6.0 (>= 6.0.20), dotnet-runtime-6.0 (>= 6.0.20), aspnetcore-targeting-pack-6.0 (>= 6.0.20) +SHA256: 042fddd433534b98b33305082873f849468056d4a226d1d1addf226c19a95b82 +Size: 85195842 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.315-x64.deb + +Package: msopenjdk-17 +Version: 17.0.12-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 324665 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 17 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 887155b72d617637ef201642d86100eb311371ba763c7d21b1efce654bc16fa2 +Size: 164992854 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.12-1_amd64.deb + +Package: msodbcsql18 +Version: 18.2.2.1-1 +Architecture: amd64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: 2a2e0b7fe70fd41ff87823d67e7544b555657c333f22541f5a1b96fa82b1741f +Size: 752616 +Filename: pool/main/m/msodbcsql18/msodbcsql18_18.2.2.1-1_amd64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.14-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.14 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: a986a11ed09e7b057600954e9c0daa588ef399cab2e27b8293f291129926989d +Size: 2123090 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.14-x64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.20-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.20 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 9d5454c1cdc84def5bdbe93f3388c7183e81e53560114aaa220cf7a14bcb995b +Size: 2130310 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.20-x64.deb + +Package: scx +Source: scx +Version: 1.7.1.0 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 7920 +Maintainer: Microsoft Corporation +Description: Microsoft System Center Operations Manager for UNIX/Linux agent + Provides server for Microsoft System Center Operations Manager. +Depends: omi (>= 1.0.8.6) +Provides: scx +SHA256: 3ecac29d01c168fb7bfe52b72d4f582d2e12b28a6db3071b0374f69f51b96663 +Size: 2748488 +Filename: pool/main/s/scx/scx-1.7.1-0.ssl_300_universal.s.x64.deb + +Package: dotnet-apphost-pack-7.0 +Version: 7.0.15-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11285 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 7.0.15 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: f5cdbbc4f5d9a6c13e749324f6ad3badc68c45a574300ab37366bd2b5806109a +Size: 3519942 +Filename: pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.15-1_amd64.deb + +Package: aspnetcore-runtime-7.0 +Version: 7.0.8-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 21350 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-7.0 (>= 7.0.8) +SHA256: 3064914f58f7f230a74bbe0c9c22e9522898f8f8005999ca536f4a429e0a8af9 +Size: 7057918 +Filename: pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.8-x64.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.10-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.10 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: a8f75b0c7ee0cc1d5701ef4f2ab3c561a8d0cdc0998769794b122e6f9825fa49 +Size: 2890 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.10-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.317-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 331557 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.317 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.22), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.22), dotnet-apphost-pack-6.0 (>= 6.0.22), dotnet-runtime-6.0 (>= 6.0.22), aspnetcore-targeting-pack-6.0 (>= 6.0.22) +SHA256: e332d89262c096975451b24ee0330af9d96f3862d2088a6f322828bdeae3aa80 +Size: 85292586 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.317-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.413-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 337379 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.413 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.21), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.21), dotnet-apphost-pack-6.0 (>= 6.0.21), dotnet-runtime-6.0 (>= 6.0.21), aspnetcore-targeting-pack-6.0 (>= 6.0.21) +SHA256: 6f9a124784e3653bd9e94ca6e5a6bb334876bc0c8c311c6ba9b8f56378175576 +Size: 86794698 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.413-1_amd64.deb + +Package: aadsshlogin-selinux +Version: 1.0.027890001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.3-1), selinux-utils, selinux-policy-default +SHA256: afc069e01d5ab548f9dc32dc28fed76525816fc63ded22f30c4cd189bbc11de6 +Size: 2218 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.027890001_amd64.deb + +Package: aspnetcore-targeting-pack-7.0 +Version: 7.0.18-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 13099 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-7.0 (>= 7.0.18) +SHA256: db95c09ac6ee8b3c3f29b5410efdc771e5cb2601b7a7e9d1843c5737a3663f22 +Size: 1515506 +Filename: pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.18-1_amd64.deb + +Package: dotnet-host +Version: 6.0.16-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.16 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 4f3beedd7786937c7fa0cf6fdc620a9b6e9a0630d49e36f868bd22526ad402bb +Size: 55864 +Filename: pool/main/d/dotnet-host/dotnet-host-6.0.16-x64.deb + +Package: moby-cli +Version: 20.10.18+azure-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 49824 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 2ff63b6ef03a7e949b497bac16a3dcc18ab9404b9c17c6de5abc87afe84c4c32 +Size: 10789762 +Filename: pool/main/m/moby-cli/moby-cli_20.10.18+azure-ubuntu22.04u2_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.312-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 367203 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.312 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.15), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.15), dotnet-runtime-7.0 (>= 7.0.15), dotnet-targeting-pack-7.0 (>= 7.0.15), aspnetcore-runtime-7.0 (>= 7.0.15) +SHA256: 13ff93bf6cfaa9fbd1b76e52a4b0ff7c03eaeb84539a04106e556fea34a2a7cf +Size: 96647470 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.312-1_amd64.deb + +Package: moby-engine +Version: 26.1.1-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 106880 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 9a15d95e18fec8f93a59c23b121fe58622f2c7b5f051e47b051961bbea872d2e +Size: 35778244 +Filename: pool/main/m/moby-engine/moby-engine_26.1.1-ubuntu22.04u1_amd64.deb + +Package: msodbcsql18 +Version: 18.3.1.1-1 +Architecture: amd64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: 526caf38a98d0f850975cb728a670702e5e60b31f75c87234f298b08f3b34990 +Size: 756482 +Filename: pool/main/m/msodbcsql18/msodbcsql18_18.3.1.1-1_amd64.deb + +Package: moby-compose +Version: 2.28.1-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61734 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: f6d49d9d02bd4ea1cee3d20c6760935e6b2d8577a35d52400a1d47b2d609a621 +Size: 18541786 +Filename: pool/main/m/moby-compose/moby-compose_2.28.1-ubuntu22.04u1_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.15-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11071 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.15 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 0e7f8c54b3dfea3b702f365b5a3e6ea6d8cf4a7c4662060468bdc85b7ba5bc0a +Size: 3510880 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.15-x64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.21-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.21 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.21), libc6 +SHA256: 310e219c7383a2a6b98e541ea0458296c6eb4fcbfb80d9d9ac9d5a1f27d0c437 +Size: 142420 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.21-1_amd64.deb + +Package: moby-engine +Version: 26.1.5-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 106893 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: db096997da94cdc78c954188c7f519313d3bbbc26b19f3983a9516fcc9949869 +Size: 35782522 +Filename: pool/main/m/moby-engine/moby-engine_26.1.5-ubuntu22.04u1_amd64.deb + +Package: powershell +Version: 7.2.12-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 168871 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 1b140bf45d3eefdf41ea4dc0793bff981fd16f120845546eb561c998c7b8ee2d +Size: 68191810 +Filename: pool/main/p/powershell/powershell_7.2.12-1.deb_amd64.deb + +Package: azure-functions-core-tools +Version: 3.0.4626-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v3 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools, azure-functions-core-tools-2 +Replaces: azure-functions-core-tools, azure-functions-core-tools-2 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 6869230ff316720ef8a2729482a976f0289f492feb631080d9fc15226700bc38 +Size: 227641572 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4626-1.deb + +Package: msopenjdk-17 +Version: 17.0.11-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 324567 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 17 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 5b69a6173de697ad139acf7d2d350ba8f584ffcb8898cc16dbc19be39e4c157b +Size: 164939082 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.11-1_amd64.deb + +Package: dotnet-host +Version: 7.0.7-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 246 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.7 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 15f7336f94ddc3131fb6977e38fef042fa0fe95198c111ec6faa8b4bf5d0119f +Size: 57386 +Filename: pool/main/d/dotnet-host/dotnet-host-7.0.7-x64.deb + +Package: msopenjdk-11 +Version: 11.0.24-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 329660 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 11 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 508307ae561f26b8285dbecbe19b898c19b2236320b0b9ee6786ea4a3c03e66e +Size: 169327846 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.24-1_amd64.deb + +Package: mde-netfilter +Version: 100.69.62 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 92 +Maintainer: Microsoft Defender for Endponts +Description: Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace +Depends: libnetfilter-queue1, libglib2.0-0 +SHA256: 212e84e652d7b1591429bcf4e6acefee0fb3ba3295b8a2e64652cd8235058974 +Size: 24424 +Filename: pool/main/m/mde-netfilter/mde-netfilter_100.69.62.amd64.deb + +Package: azure-functions-core-tools +Version: 3.0.4899-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v3 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools, azure-functions-core-tools-2 +Replaces: azure-functions-core-tools, azure-functions-core-tools-2 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: b4ee3e096d381244271ad46a50d577c8d846190eb89a0b71a695ab6529b24932 +Size: 228285568 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4899-1.deb + +Package: powershell +Version: 7.4.4-1.deb +Architecture: amd64 +Section: shells +Priority: optional +Installed-Size: 176718 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 475526750724a3bc82a15b0f36c8d16bd36163c1ba1283abb2680b1bc0f8a118 +Size: 70965052 +Filename: pool/main/p/powershell/powershell_7.4.4-1.deb_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.305-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 331325 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.305 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.10), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.10), dotnet-apphost-pack-6.0 (>= 6.0.10), dotnet-runtime-6.0 (>= 6.0.10), aspnetcore-targeting-pack-6.0 (>= 6.0.10) +SHA256: 0d00a3ebb16ac569861b16c79c64a094ae0460767206c4a0663d85010a758286 +Size: 85062916 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.305-x64.deb + +Package: powershell +Version: 7.4.3-1.deb +Architecture: amd64 +Section: shells +Priority: optional +Installed-Size: 176715 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 759d3194971b4bfe1d8b4a50ce3f2aa5effa7133857434b9c74c3594fc36f19b +Size: 70984156 +Filename: pool/main/p/powershell/powershell_7.4.3-1.deb_amd64.deb + +Package: aspnetcore-targeting-pack-7.0 +Version: 7.0.19-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 13100 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-7.0 (>= 7.0.19) +SHA256: 09624b5032a9b71ac27ac26f120f41281dc6f99afd7e16b542e6b906d92dbb9b +Size: 1528030 +Filename: pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.19-1_amd64.deb + +Package: moby-containerd +Version: 1.6.31-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 128917 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 87b24a5018acb9098773242164d8bc53b06cae43cd47d9c676160f81aa7b9cc0 +Size: 46036020 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.31-ubuntu22.04u1_amd64.deb + +Package: moby-buildx +Version: 0.16.2-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 79991 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 7645a5cb03020d235840a3d67b866eaab60df66533bdad5bdf8bb06928b41619 +Size: 36177658 +Filename: pool/main/m/moby-buildx/moby-buildx_0.16.2-ubuntu22.04u1_amd64.deb + +Package: dotnet-host +Version: 6.0.6-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.6 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 293ddde2a6efd98dcfd5cef91444d5a5226bfa3b52592b81c303fe610117314c +Size: 55838 +Filename: pool/main/d/dotnet-host/dotnet-host-6.0.6-x64.deb + +Package: moby-cli +Version: 24.0.7-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 35265 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: a7bea08576838df7cecf4efbf1885d0688bb5e5f5c8a6d9c726f80168312cb3b +Size: 15626578 +Filename: pool/main/m/moby-cli/moby-cli_24.0.7-ubuntu22.04u1_amd64.deb + +Package: blobfuse2 +Version: 2.1.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 31581 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: 1a0543ab79bb13a82781e025c48327af3dfa11c6df34ef4a86d08b8d137ce160 +Size: 15604716 +Filename: pool/main/b/blobfuse2/blobfuse2-2.1.0.x86_64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.19-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.19 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 31c882bf5eed107484514717267ebef2535552d8a5b6477a53d70923dfd2e1a2 +Size: 2798 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.19-x64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.301-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 330672 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.301 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.6), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.6), dotnet-apphost-pack-6.0 (>= 6.0.6), dotnet-runtime-6.0 (>= 6.0.6), aspnetcore-targeting-pack-6.0 (>= 6.0.6) +SHA256: bbebeb9d409cc8531efee42c19ef31cfacb4163b1e0c9c11ecf9f64def2e9d7a +Size: 84510338 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.301-x64.deb + +Package: moby-engine +Version: 26.1.4-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 106893 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 11c7fcc7b4496ac9cb9395f30c1294538da1e0facf7d8fb52e3da9d390b285df +Size: 35779918 +Filename: pool/main/m/moby-engine/moby-engine_26.1.4-ubuntu22.04u1_amd64.deb + +Package: dotnet-targeting-pack-8.0 +Version: 8.0.7-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 36082 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 8.0.7 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 4c189b08d75880d80540ac6ea877554786abbe6e683b59ca7cf1a92cfa76408a +Size: 2802990 +Filename: pool/main/d/dotnet-targeting-pack-8.0/dotnet-targeting-pack-8.0_8.0.7-1_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.26-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11075 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.26 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: fbd605ac5ed6f6a50b14d9be7090db4d5be045b5c01959351797d850d92b3bb3 +Size: 3527318 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.26-1_amd64.deb + +Package: virtualclient +Version: 1.14.36 +Architecture: amd64 +Maintainer: Virtual Client Team +Description: VirtualClient, the open sourced workload automation. +SHA256: fb221a24373502333afb68bc4e70aaec462ca423d898f3ce6d6762a00f739251 +Size: 47290894 +Filename: pool/main/v/virtualclient/virtualclient_1.14.36_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.201-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 357067 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.201 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.3), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.3), dotnet-runtime-7.0 (>= 7.0.3), dotnet-targeting-pack-7.0 (>= 7.0.3), aspnetcore-runtime-7.0 (>= 7.0.3) +SHA256: f76fd2500bc24f7d149bc04898c38b7739855f89083f9ba6bdeb608be077e336 +Size: 91822146 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.201-x64.deb + +Package: azcmagent +Version: 1.40.02664.1492 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 8be0af170a32ab2f900c1a00afb88a0f3770b610cfb1784c6adcc299940c2158 +Size: 67171698 +Filename: pool/main/a/azcmagent/azcmagent_1.40.02664.1492_amd64.deb + +Package: moby-compose +Version: 2.29.5-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61866 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 52d6606e277ceb7626f9328b552c56b3457c3207100630ee6d1c3576d260e4f1 +Size: 18586128 +Filename: pool/main/m/moby-compose/moby-compose_2.29.5-ubuntu22.04u1_amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.4785-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: d337b71bebb235a7e8a19cd961fdb2bd8c82d512755bb965dfb868880d5ff589 +Size: 125664952 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4785-1.deb + +Package: procdump +Version: 2.1-17009 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 10747 +Maintainer: OSS Tooling Dev Team +Description: Sysinternals process dump utility + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +Homepage: https://github.com/Microsoft/ProcDump-for-Linux +Depends: gdb (>= 7.6.1),libc6 +SHA256: 13f33965391c2baad2dcf171aa1ff79bd0f7c6e7c0a541bd18ea6d2ae73b488f +Size: 1649046 +Filename: pool/main/p/procdump/procdump_2.1-17009_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.25-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68476 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.25 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.25), dotnet-runtime-deps-6.0 (>= 6.0.25) +SHA256: ecd5b014bed379b93ffd9915572a84ac9d084c0ca1b2a94b5ced41aef34461c4 +Size: 22776736 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.25-1_amd64.deb + +Package: moby-compose +Version: 2.22.0-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 58356 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: fd09280a6da9c572dab02f5ca8a551270bbf14264948f5ef100c85e60f27f25a +Size: 17591560 +Filename: pool/main/m/moby-compose/moby-compose_2.22.0-ubuntu22.04u1_amd64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.105-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 388319 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.105 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.5), dotnet-targeting-pack-8.0 (>= 8.0.5), dotnet-apphost-pack-8.0 (>= 8.0.5), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.5), aspnetcore-targeting-pack-8.0 (>= 8.0.5) +SHA256: c6ee8c722a9ce0548786f660b1b15a9b1360923abc1f9f0af050f181fb86ca73 +Size: 101730070 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.105-1_amd64.deb + +Package: moby-runc +Version: 1.1.13-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 13503 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: 672a58632cf87f48e2781f603a5aa1173bc348bcf9e79f9ea6a540c423a6c34a +Size: 6831996 +Filename: pool/main/m/moby-runc/moby-runc_1.1.13-ubuntu22.04u1_amd64.deb + +Package: aztfy +Version: 0.8.0 +Architecture: amd64 +Section: default +Priority: extra +Installed-Size: 42176 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfy +Vendor: none +License: MPL-2.0 +SHA256: 9de434526c8483d947b511fe42b3df26b38554b0a5f0e46a4988e5699924841a +Size: 8622710 +Filename: pool/main/a/aztfy/aztfy-0.8.0-1-amd64.deb + +Package: moby-cli +Version: 20.10.20+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 49828 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: daa31379ae5195f79a501a4e98a0e6c805cd987c0fb37d7222f5268d26b56934 +Size: 10750036 +Filename: pool/main/m/moby-cli/moby-cli_20.10.20+azure-ubuntu22.04u1_amd64.deb + +Package: scx +Source: scx +Version: 1.7.3.0 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 7920 +Maintainer: Microsoft Corporation +Description: Microsoft System Center Operations Manager for UNIX/Linux agent + Provides server for Microsoft System Center Operations Manager. +Depends: omi (>= 1.0.8.6) +Provides: scx +SHA256: 094da96499c09df1a8f9fe5f0151ee91fb25e44427b5e9d9187154ff84cf8334 +Size: 2748480 +Filename: pool/main/s/scx/scx-1.7.3-0.ssl_300.universal.s.x64.deb + +Package: moby-cli +Version: 26.1.5-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 38951 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 05c02e6ffb2d185bdbd60aff02e7e02df122fc379012223073eb01bc2bfc594e +Size: 17172898 +Filename: pool/main/m/moby-cli/moby-cli_26.1.5-ubuntu22.04u1_amd64.deb + +Package: azure-ai-vision-dev-common +Version: 0.11.1~beta.1 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 756 +Maintainer: vision-sdk@microsoft.com +Description: Azure AI Vision Common Components Developer Package +Depends: azure-ai-vision-runtime-common, azure-ai-vision-runtime-common-media +SHA256: 4be2318c1cd29827197b2d9645b26bee8401f05aa7971fcc1b742d3daf136de6 +Size: 114308 +Filename: pool/main/a/azure-ai-vision-dev-common/azure-ai-vision-dev-common-0.11.1~beta.1-Linux.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.19-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.19 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.19), libc6 +SHA256: cee694dccc54a8260d4971e39ff1da2b32ab2e15f77c21792625f0b287ba9f27 +Size: 142356 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.19-x64.deb + +Package: moby-compose +Version: 2.14.0+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 43888 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 8e1b94cc073d2ac0cbff4ef71290daf448069fd63ac143cc0d779ad914e709a6 +Size: 10688656 +Filename: pool/main/m/moby-compose/moby-compose_2.14.0+azure-ubuntu22.04u1_amd64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.23-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19903 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.23) +SHA256: d94536b5d048ce4956e9003bb999abaa5269b572cebb85b926da3a2f9732aed0 +Size: 6620078 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.23-1_amd64.deb + +Package: powershell-preview +Version: 7.4.0-preview.2-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 206162 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 573b9336334b5e4df31df0fc62ce82f186770a569d501fc643e15ee68262740b +Size: 74245238 +Filename: pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.2-1.deb_amd64.deb + +Package: moby-cli +Version: 20.10.22+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 49823 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 2887d50cdc39cacbaf533468201fa3884a59e4520a03f9fcff92da5a1c46fbbd +Size: 10741596 +Filename: pool/main/m/moby-cli/moby-cli_20.10.22+azure-ubuntu22.04u1_amd64.deb + +Package: azcmagent +Version: 1.45.02769.1661 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: af9b7b5bf89f1e573de58065de40da975000495e8b369f6b5d9a54b72b3e91a1 +Size: 67228634 +Filename: pool/main/a/azcmagent/azcmagent_1.45.02769.1661_amd64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.32-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.32 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: f893806ed8cf295f8bbd01ab16103d4491804013551cb7a1a19bb4c3fe00056c +Size: 2134544 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.32-1_amd64.deb + +Package: moby-containerd +Version: 1.5.13+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 120356 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 924489bcaf1f0b84ea562342a4eb56c08034671967b2adb5512e7d69e19b9a89 +Size: 28879450 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.13+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.112-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 313428 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.112 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.12), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.12), dotnet-apphost-pack-6.0 (>= 6.0.12), dotnet-runtime-6.0 (>= 6.0.12), aspnetcore-targeting-pack-6.0 (>= 6.0.12) +SHA256: bbb517ce8930b6c25860a34f7d1858c67965ed9a4c445ab36f0482eecd123afd +Size: 78525266 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.112-x64.deb + +Package: moby-compose +Version: 2.18.0+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 52728 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 40a5b823bc35c4970443683ee8b95f19e56dee9770862ad26d86c95425d5cb2b +Size: 12063692 +Filename: pool/main/m/moby-compose/moby-compose_2.18.0+azure-ubuntu22.04u1_amd64.deb + +Package: aspnetcore-runtime-7.0 +Version: 7.0.18-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 21370 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-7.0 (>= 7.0.18) +SHA256: dd4a845c76982ef6f5112bf37883a049a2c4a57dbc4c097d2ad189b31acf5a3b +Size: 7065050 +Filename: pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.18-1_amd64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.24-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.24 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 180c6180ef50729b20d7057f5da16b052ce52825a2e34feb1a39581ad22dd40d +Size: 2132638 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.24-1_amd64.deb + +Package: dotnet-hostfxr-7.0 +Version: 7.0.2-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 424 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 7.0.2 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 7.0.2), libc6 +SHA256: 835aa82ef1cd149f912a69a997286c5e44fbb2dec8c7ae5343cdf76d3afee16f +Size: 143898 +Filename: pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.2-x64.deb + +Package: dotnet-apphost-pack-8.0 +Version: 8.0.0-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11053 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 8.0.0 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 1e9ce788f3a2ecb67ebf252e3b03a15907fe76fd0e9679d24552c185e8e96c15 +Size: 3508078 +Filename: pool/main/d/dotnet-apphost-pack-8.0/dotnet-apphost-pack-8.0_8.0.0-1_amd64.deb + +Package: dotnet-runtime-deps-3.1 +Version: 3.1.31-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Core Team +Description: dotnet-runtime-deps-3.1 3.1.31 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +Homepage: https://dot.net/core +Depends: libgcc1, libssl1.0.0 | libssl1.0.2 | libssl1.1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: f43df5cc056e4efed7fb1834c85c21c1f63af3af9cdbd4a2567b4c62a550d3e8 +Size: 2684 +Filename: pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.31-x64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.118-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 349751 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.118 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.18), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.18), dotnet-runtime-7.0 (>= 7.0.18), dotnet-targeting-pack-7.0 (>= 7.0.18), aspnetcore-runtime-7.0 (>= 7.0.18) +SHA256: 51d9cc864d4c9e4abb509dec0d1b82a0a3033db3997d1431032e537cf8e5b914 +Size: 90595494 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.118-1_amd64.deb + +Package: powershell-preview +Version: 7.3.0-preview.5-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 124351 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: c6294b5e3f4ccd0be66fbbaa85c712a6e8ea40b6b1ef21b2c0fa75665b2a2bbd +Size: 46492464 +Filename: pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.5-1.deb_amd64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.9-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.9 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 04c85e431825e28b2bbcf43e18f3f8bacfde9686ea78dbba815a61e21078bf56 +Size: 2810 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.9-x64.deb + +Package: dotnet-hostfxr-3.1 +Version: 3.1.30-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 408 +Maintainer: .NET Core Team +Description: Microsoft .NET Core Host FX Resolver - 3.1.30 3.1.30 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://dot.net/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 3.1.30), libc6 +SHA256: be3ff69b76c9ceca3c2e664ae2829cedeeebe40a6a8113c65cb3d39c3c15b006 +Size: 120710 +Filename: pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.30-x64.deb + +Package: azure-functions-core-tools +Version: 4.0.5801-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 109c073787d438d68590c25e74c5a733fed9a247ee43f0140d3b512250288e25 +Size: 159935386 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5801-1_amd64.deb + +Package: moby-runc +Version: 1.1.4+azure-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 14259 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: 2511d0d58bdbf5fa1b034e587b849c59fe5b9fd3e6507fa106296d9a3625a8b0 +Size: 5696024 +Filename: pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu22.04u2_amd64.deb + +Package: azure-functions-core-tools +Version: 3.0.5682-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 946b338998bdd5819fca4a37d02e2c3d24c728b588447ad101c4ee39b9a484d0 +Size: 228471230 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.5682-1_amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.5312-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 3976d4e13d7479b7a9768adadb6ed39a8ae039f6e6a6feff7f9fee3f24cfb08b +Size: 156787220 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5312-1.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.412-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 337378 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.412 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.20), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.20), dotnet-apphost-pack-6.0 (>= 6.0.20), dotnet-runtime-6.0 (>= 6.0.20), aspnetcore-targeting-pack-6.0 (>= 6.0.20) +SHA256: dd362800c334d523de07ad66ee417fc7bfb3719fae9e47a6db056bc550a0f071 +Size: 86785310 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.412-x64.deb + +Package: powershell +Version: 7.2.4-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 187001 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 7e764b26ba87196e78dec20665e166eee536d117deb91562a6e4ccf75cc1b6e8 +Size: 69434548 +Filename: pool/main/p/powershell/powershell_7.2.4-1.deb_amd64.deb + +Package: moby-engine +Version: 20.10.16+azure-2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 97682 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: b09114618ec94d9160b8e732120321060b9045b2a3564e2d6532991ab2430f7d +Size: 23178908 +Filename: pool/main/m/moby-engine/moby-engine_20.10.16+azure-2_amd64.deb + +Package: aztfexport +Version: 0.11.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 54596 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfexport +Vendor: none +License: MPL-2.0 +SHA256: 1deb19cd102b06a8444878c2b92effc0fa6599d44118519001555136c6614a1b +Size: 9403238 +Filename: pool/main/a/aztfexport/aztfexport-0.11.0-1-amd64.deb + +Package: libmsquic +Version: 2.3.5 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 13433 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: bd849e57b7a441e05e1f432c355194f9fb2452992c461817219bccd4b32357ea +Size: 4113166 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.5_amd64.deb + +Package: libodbc1 +Source: unixodbc +Version: 2.3.7 +Architecture: amd64 +Section: libs +Priority: optional +Installed-Size: 608 +Maintainer: Ubuntu Developers +Original-Maintainer: Steve Langasek +Description: ODBC library for Unix + UnixODBC is an implementation of the Open DataBase Connectivity standard, + a database abstraction layer that allows applications to be used with + many different relational databases by way of a single library. + . + This package provides the UnixODBC shared library, libodbc; and + libodbctxt.so, a sample driver that reads from and writes to flat text + files. +Homepage: http://www.unixodbc.org/ +Multi-Arch: same +Breaks: unixodbc (<< 2.2.14p2-3) +Depends: libc6 (>= 2.14), libltdl7 (>= 2.4.2) +Suggests: msodbcsql17, unixodbc-bin +Replaces: unixodbc (<< 2.2.14p2-3) +SHA256: 89d9166fec67c6f23e21fbf7e33e0d40f3fb1ec8f77078f79bc42ee2eecc66cd +Size: 510722 +Filename: pool/main/u/unixodbc/libodbc1_2.3.7_amd64.deb + +Package: dotnet-targeting-pack-7.0 +Version: 7.0.5-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 31135 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 7.0.5 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: c404c8d4a732f60814a1cd15730e7f38cbeac70aa46e936dbe8ee7a6c20b1755 +Size: 2567646 +Filename: pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.5-x64.deb + +Package: moby-compose +Version: 2.28.0-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61734 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: df0af797145243540b34fb27906be8ecf4f52338259ade283e584c8e40898a07 +Size: 18541418 +Filename: pool/main/m/moby-compose/moby-compose_2.28.0-ubuntu22.04u1_amd64.deb + +Package: moby-compose +Version: 2.27.0-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61664 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 93bcd5c210d15a7632c9f0c5bd8ded223c25d9a27a8212f1d9fc09686b6e9362 +Size: 18512778 +Filename: pool/main/m/moby-compose/moby-compose_2.27.0-ubuntu22.04u1_amd64.deb + +Package: dotnet-host +Version: 6.0.9-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.9 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 76cf3687d7402eef8425db6f75c13395664c418c3c8c0f66f32c9cce724edbaf +Size: 55690 +Filename: pool/main/d/dotnet-host/dotnet-host-6.0.9-x64.deb + +Package: libmsquic +Version: 2.3.1 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 13430 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 72692249def38f0b5aa81b8f1b438e4c3b21e4e547a8999f01d2e184100fd1de +Size: 4111748 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.1_amd64.deb + +Package: msopenjdk-17 +Version: 17.0.7-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 324493 +Maintainer: Microsoft +Description: OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: fonts-dejavu, libx11-6, libxext6, libxi6, libxrender1, libxtst6, libasound2, libfontconfig1, libfreetype6 +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: d85c672f28263e589bb24c644a0d514c022c54d9a82c932dd7e204913746b408 +Size: 192238598 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.7-1_amd64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.18-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.18 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 24079bf09fc03151279b13f00ec7fd91cf7ec732d78727ae741cf0d708665c2c +Size: 2792 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.18-x64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.5148-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 86d1b67b0287593f023edc08217c3d7b4d9fe34db6bed602f089057c7135ddd4 +Size: 172048900 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5148-1.deb + +Package: moby-runc +Version: 1.1.8+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 13390 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: 442636f7b7e831cb20fe52a2a16ffc88117d250cf0b3876aa9198331376d8cda +Size: 6091086 +Filename: pool/main/m/moby-runc/moby-runc_1.1.8+azure-ubuntu22.04u1_amd64.deb + +Package: aztfexport +Version: 0.15.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 77832 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfexport +Vendor: none +License: MPL-2.0 +SHA256: 0fb90a3a6523614be9f741d6f777e3dd8f0437be6259d51a067795e8bf60c30a +Size: 12908268 +Filename: pool/main/a/aztfexport/aztfexport_0.15.0_amd64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.30-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11750 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.30) +SHA256: f47dfff734481163515ecbb420f9a10feb5d822aabf20041e578a2be705cc5fb +Size: 1316270 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.30-1_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.27-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 456 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.27 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.27), libc6 +SHA256: 697ede7844df707b489d56f758123da9fe9c45ab1fc6aa909cd72ac7b631878b +Size: 143602 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.27-1_amd64.deb + +Package: mdatp +Version: 101.65.77 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 209057 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: curl (>= 7.5), libseccomp2, libuuid1, libatomic1, libc6 (>= 2.23), python3, uuid-runtime, dmidecode, auditd, libselinux1, libfuse2, mde-netfilter +SHA256: 5455c6d16c5a5aeceb81a3f17a3bc7b81cd0bdb0d2f1d70a3014c9ee3ad58b59 +Size: 61280098 +Filename: pool/main/m/mdatp/mdatp_101.65.77.amd64.deb + +Package: moby-engine +Version: 20.10.14+azure-1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 95682 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: df917399e90c4a9125dcf3e5db48d306aa08801c8a631e1d8b45d20502158cb2 +Size: 22974334 +Filename: pool/main/m/moby-engine/moby-engine_20.10.14+azure-1_amd64.deb + +Package: moby-compose +Version: 2.20.0+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 59057 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 9f746db00d4946b30c74f996f43f832ae25f0aff1d3002131788057e524d05c1 +Size: 13214582 +Filename: pool/main/m/moby-compose/moby-compose_2.20.0+azure-ubuntu22.04u1_amd64.deb + +Package: blobfuse2 +Version: 2.1.2 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 30771 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: b918f759f686b5b8a9f271630121728266a2e002521142e4ea361685fcea0c33 +Size: 15372374 +Filename: pool/main/b/blobfuse2/blobfuse2_2.1.2_amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.4736-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: bfb537fe76a7537389d7bbb2184fbb3d47c2507d5618fc6dc6cee489de2cae96 +Size: 124528228 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4736-1.deb + +Package: microsoft-identity-broker +Source: microsoft-identity-broker +Version: 2.0.1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 91403 +Maintainer: Microsoft Identity +Description: microsoft-identity-broker + Microsoft Authentication Broker for Linux. +Conflicts: msft-identity-broker +Depends: default-jre, systemd, dbus-session-bus, dbus-system-bus, gnome-keyring +Recommends: microsoft-identity-diagnostics +Provides: msft-identity-broker +Replaces: msft-identity-broker +SHA256: 23843ab9c4faa6cf3f4068904cd6cc5dc2b1aba50c72ec09d0fadcaafa2fe7a3 +Size: 84382090 +Filename: pool/main/m/microsoft-identity-broker/microsoft-identity-broker_2.0.1_amd64.deb + +Package: dotnet-hostfxr-7.0 +Version: 7.0.9-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 424 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 7.0.9 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 7.0.9), libc6 +SHA256: d11e1cfee96cc2b1bae9292643cd3ba66bc93256eb6a4b575516539ce70dbcd9 +Size: 143918 +Filename: pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.9-x64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.18-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11748 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.18) +SHA256: 428a0d8326d46a397bd195f63b5954618491c838381bb1d550de054d0136883f +Size: 1315186 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.18-x64.deb + +Package: powershell-preview +Version: 7.4.0-preview.1-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 195083 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 2518230120bde23d124e8a8d30d560b14572a588af57e441c4c24ea52ca79e2f +Size: 70861036 +Filename: pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.1-1.deb_amd64.deb + +Package: mdatp +Version: 101.24012.0001 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 524069 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, libpcre3, mde-netfilter +SHA256: 1459be27c92efc7265a4f3803d4a6da699a56dc9ebd80b3673f9d354eace59eb +Size: 143399018 +Filename: pool/main/m/mdatp/mdatp_101.24012.0001_amd64.deb + +Package: aspnetcore-runtime-7.0 +Version: 7.0.0-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 21330 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-7.0 (>= 7.0.0) +SHA256: aac90ab87ac39bf89adcd5218905610d388b9c9721c82a7156eb7b3750c3a726 +Size: 7050452 +Filename: pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.0-x64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.111-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 350086 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.111 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.11), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.11), dotnet-runtime-7.0 (>= 7.0.11), dotnet-targeting-pack-7.0 (>= 7.0.11), aspnetcore-runtime-7.0 (>= 7.0.11) +SHA256: 420c6cbef880bde26abc7174ee4e182b764f04f02803425e340dcafdb1f6790f +Size: 90702250 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.111-1_amd64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.16-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11745 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.16) +SHA256: bd8a0ae1102ed9e2ba317529c889024ac07fd0fd2a2a053e0af1938805ab35eb +Size: 1314134 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.16-x64.deb + +Package: powershell +Version: 7.2.13-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 168858 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 0af024461c5184a387fb346ee00b3da3da5fa734ce7bdeec65b085870ca4ea7e +Size: 68393634 +Filename: pool/main/p/powershell/powershell_7.2.13-1.deb_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.129-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 313971 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.129 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.29), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.29), dotnet-apphost-pack-6.0 (>= 6.0.29), dotnet-runtime-6.0 (>= 6.0.29), aspnetcore-targeting-pack-6.0 (>= 6.0.29) +SHA256: 84dc5bb49fd9e07f7f8ca9141801c1c7cfde8fd8d5e6a7a112e6fa42f73d92bd +Size: 78800138 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.129-1_amd64.deb + +Package: msopenjdk-17 +Version: 17.0.9-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 324191 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 17 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 4d02c06a12e5808ad3a512bb10de1c3290ad7ebcb57fa0b08bd5d83e1aabc92c +Size: 164729206 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.9-1_amd64.deb + +Package: powershell +Version: 7.3.2-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 196826 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 7190f391fdbacfababd8a2801b9ac1ff2b98663fefa2bd70b2bdc4a366ed02e0 +Size: 71622188 +Filename: pool/main/p/powershell/powershell_7.3.2-1.deb_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.410-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 401285 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.410 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.20), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.20), dotnet-runtime-7.0 (>= 7.0.20), dotnet-targeting-pack-7.0 (>= 7.0.20), aspnetcore-runtime-7.0 (>= 7.0.20) +SHA256: 3fd3391227dc041f5c0cc0ff8dfde49c3c00eb51a5bc208abd063b086f6e0bf7 +Size: 108226518 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.410-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.127-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 313967 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.127 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.27), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.27), dotnet-apphost-pack-6.0 (>= 6.0.27), dotnet-runtime-6.0 (>= 6.0.27), aspnetcore-targeting-pack-6.0 (>= 6.0.27) +SHA256: f399f10e2931f48dbc1134816a0c1b07432813677818160346afc236a3305374 +Size: 78831114 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.127-1_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.18-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.18 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.18), libc6 +SHA256: 9930731bace0066046b2ab6be0886548e62a4f0b12aa72e8c59b58f93c88e117 +Size: 142484 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.18-x64.deb + +Package: moby-compose +Version: 2.6.1+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 25720 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 130c0aceaaee9974bad879c5511ed5d86f590e60be1f8e2ead54e3e223854719 +Size: 7128658 +Filename: pool/main/m/moby-compose/moby-compose_2.6.1+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.401-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 403080 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.401 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.11), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.11), dotnet-runtime-7.0 (>= 7.0.11), dotnet-targeting-pack-7.0 (>= 7.0.11), aspnetcore-runtime-7.0 (>= 7.0.11) +SHA256: 65516f369d674b7cb6890bc5938d43689e154d468fadbfa8a0aa5e9739749694 +Size: 108167894 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.401-1_amd64.deb + +Package: moby-engine +Version: 20.10.21+azure-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 86254 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: c0ec5559583ae49797898c610daa788dbbf35c909e75795ffd8860ae519b013c +Size: 22323360 +Filename: pool/main/m/moby-engine/moby-engine_20.10.21+azure-ubuntu22.04u2_amd64.deb + +Package: dotnet-host +Version: 3.1.30-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 145 +Maintainer: .NET Core Team +Description: Microsoft .NET Core Host - 3.1.30 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://dot.net/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: f8fb5cd37c41b554e27f284d14904e2850017d5c8138335a961a3318e50cb1ab +Size: 32518 +Filename: pool/main/d/dotnet-host/dotnet-host-3.1.30-x64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.5-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11062 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.5 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 714fa1cedf1983686dcbc9a2701799cf19b039629da67318ecb2275a5a651084 +Size: 3508800 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.5-x64.deb + +Package: azcmagent +Version: 1.33.02399.1041 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 0306d2c2afa192ef8a6ed1d99aa34a59af54f88b20cf4bf9005316bcba9919ef +Size: 54719874 +Filename: pool/main/a/azcmagent/azcmagent_1.33.02399.1041_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.201-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 319710 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.201 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.3), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.3), dotnet-apphost-pack-6.0 (>= 6.0.3), dotnet-runtime-6.0 (>= 6.0.3), aspnetcore-targeting-pack-6.0 (>= 6.0.3) +SHA256: 548e27d4c5b6560f91a13debf2e6337d1c6fa4f7640edf457b4262693adc056a +Size: 80538626 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.201-x64.deb + +Package: dotnet-apphost-pack-8.0 +Version: 8.0.7-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11075 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 8.0.7 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 870310a2a639839901a1b51fa0c45eeb99ab39c7137c5da6053b420e0e1e8807 +Size: 3515514 +Filename: pool/main/d/dotnet-apphost-pack-8.0/dotnet-apphost-pack-8.0_8.0.7-1_amd64.deb + +Package: aziot-edge +Version: 1.4.16-1 +Architecture: amd64 +Section: admin +Priority: extra +Installed-Size: 18505 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, aziot-identity-service (= 1.4.5-1), sed +SHA256: 2cbcc2497714115389337f449e0710308fceafc76936440b1f860c4e2010b94a +Size: 4884196 +Filename: pool/main/a/aziot-edge/aziot-edge_1.4.16-1_amd64.deb + +Package: aadsshlogin +Version: 1.0.027890001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libc6 (>= 2.34), libcurl4 (>= 7.16.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 3.1~), libsemanage2 (>= 2.0.32), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.16), passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: d583b877aa48b17c9da23db15654204826b1bdc94228c83856be01e0f24dccb9 +Size: 332670 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.027890001_amd64.deb + +Package: mdatp +Version: 101.85.27 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 294233 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, mde-netfilter +SHA256: 6b594c091b2e04b72c82656b7dfc54f908268b9ceacd0adaf96bac3dc7f171b6 +Size: 117375540 +Filename: pool/main/m/mdatp/mdatp_101.85.27.amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.5174-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: c6b0da9bb00c6da874913294ba6880d7fb8b6e2d4a80be638923e0c5adb3bcfc +Size: 154935580 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5174-1.deb + +Package: dotnet-sdk-3.1 +Version: 3.1.423-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 193113 +Maintainer: Microsoft +Description: Microsoft .NET Core SDK 3.1.423 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://dotnet.github.io/core +Depends: libc6 (>= 2.14), libgcc1 (>= 1:3.0), libstdc++6 (>= 4.6), dotnet-targeting-pack-3.1 (>= 3.1.0), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-3.1 (>= 3.1.29), aspnetcore-targeting-pack-3.1 (>= 3.1.10), dotnet-runtime-3.1 (>= 3.1.29), aspnetcore-runtime-3.1 (>= 3.1.29) +SHA256: d50b5e9b7e40adca7013a516a70905f60a8f4482730d0bb17f5d76e6041d6e2e +Size: 49818980 +Filename: pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.423-x64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.109-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 313277 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.109 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.9), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.9), dotnet-apphost-pack-6.0 (>= 6.0.9), dotnet-runtime-6.0 (>= 6.0.9), aspnetcore-targeting-pack-6.0 (>= 6.0.9) +SHA256: 004d1a204598e83b4a42c38cd1e42b273a1d9063f7d78f8ab8d0fc990eec01fd +Size: 78428644 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.109-x64.deb + +Package: azcmagent +Version: 1.38.02601.1377 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 2317ada0028308e0eca214dbaa605729460a550813c0547041bf27a75e79c397 +Size: 62360362 +Filename: pool/main/a/azcmagent/azcmagent_1.38.02601.1377_amd64.deb + +Package: powershell-lts +Version: 7.2.16-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 168889 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 1d06b358202357801f6f90d65cea6d66b0033aabf1464b70862e62f3d296b393 +Size: 68377710 +Filename: pool/main/p/powershell-lts/powershell-lts_7.2.16-1.deb_amd64.deb + +Package: aztfexport +Version: 0.12.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 72408 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfexport +Vendor: none +License: MPL-2.0 +SHA256: 436aa6a7e279bebeafa09d520485ec92bf9336b24dad38f8f226a98a5b1bd0df +Size: 11732782 +Filename: pool/main/a/aztfexport/aztfexport_0.12.0_amd64.deb + +Package: powershell-lts +Version: 7.2.22-1.deb +Architecture: amd64 +Section: shells +Priority: optional +Installed-Size: 168402 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 47042f022568974ddfee6faa359f5bb7d9cddbd8fdc66a485dabb1655ea34dff +Size: 68270368 +Filename: pool/main/p/powershell-lts/powershell-lts_7.2.22-1.deb_amd64.deb + +Package: mdatp +Version: 101.24042.0002 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 604535 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, libpcre3, mde-netfilter +SHA256: d124d38434c72c6dddcc0ae679e09fc7cfc71e332e7a5664f5596a48e6cdebcd +Size: 149366206 +Filename: pool/main/m/mdatp/mdatp_101.24042.0002_amd64.deb + +Package: dotnet-hostfxr-7.0 +Version: 7.0.1-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 424 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 7.0.1 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 7.0.1), libc6 +SHA256: 4bca2d54df5756f1b361876940374502d13bd7f6a282080e8479cb44f2bd2aae +Size: 143974 +Filename: pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.1-x64.deb + +Package: dotnet-host +Version: 3.1.28-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 145 +Maintainer: .NET Core Team +Description: Microsoft .NET Core Host - 3.1.28 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://dot.net/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: caa3845eeafc6c216ba279ff4646785cf2fa433e7927a3183cf89083dfdbfd35 +Size: 32472 +Filename: pool/main/d/dotnet-host/dotnet-host-3.1.28-x64.deb + +Package: azure-functions-core-tools +Version: 3.0.4837-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v3 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools, azure-functions-core-tools-2 +Replaces: azure-functions-core-tools, azure-functions-core-tools-2 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: e440ee439dedac9ca32f22d071667983faeac58a7824679e8613b1f0615baed2 +Size: 227762280 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4837-1.deb + +Package: powershell-lts +Version: 7.2.21-1.deb +Architecture: amd64 +Section: shells +Priority: optional +Installed-Size: 168400 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 890f64617cf288264b075cf7f09232087f2c97c1929f284db9ee8d15ebd11a7e +Size: 68257896 +Filename: pool/main/p/powershell-lts/powershell-lts_7.2.21-1.deb_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.307-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 367122 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.307 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.10), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.10), dotnet-runtime-7.0 (>= 7.0.10), dotnet-targeting-pack-7.0 (>= 7.0.10), aspnetcore-runtime-7.0 (>= 7.0.10) +SHA256: 0dd6e99a413ea41be9ecb5d1815c41f19850d198911ef9d555f0fcd54e4cb7fe +Size: 96591194 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.307-1_amd64.deb + +Package: microsoft-identity-broker +Source: microsoft-identity-broker +Version: 1.5.1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 89256 +Maintainer: Microsoft Identity +Description: microsoft-identity-broker + Microsoft Authentication Broker for Linux. +Conflicts: msft-identity-broker +Depends: default-jre, systemd, dbus-session-bus, dbus-system-bus, gnome-keyring +Recommends: microsoft-identity-diagnostics +Provides: msft-identity-broker +Replaces: msft-identity-broker +SHA256: f74a90828d4b7a9798f774ee72da6a062037f05878ba6992d2d8924983e0aabb +Size: 82333270 +Filename: pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.5.1_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.26-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 69220 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.26 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.26), dotnet-runtime-deps-6.0 (>= 6.0.26) +SHA256: 3d198e2e53f40d7224ad84cf1201940adf9c4e2f7ec7761e33e39af58bc947ab +Size: 23333010 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.26-1_amd64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.11-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.11 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: b5292e77dea925f8f42cebefed36456b7d445550667e4e2f10c421800243eaf3 +Size: 2802 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.11-x64.deb + +Package: moby-buildx +Version: 0.13.0-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 79461 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: f2564f694b52d14197942282fe7d26ec604cbf08727a5271f8d0f5b0a66594e2 +Size: 35756666 +Filename: pool/main/m/moby-buildx/moby-buildx_0.13.0-ubuntu22.04u1_amd64.deb + +Package: powershell +Version: 7.3.4-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 196880 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 1447a6d90aa66616757290e8a4bde7df0ee14d9b77aba8d73021e849ad12f418 +Size: 71750824 +Filename: pool/main/p/powershell/powershell_7.3.4-1.deb_amd64.deb + +Package: aziot-identity-service +Version: 1.4.7-1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 18923 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1) +SHA256: 8c5f9bd9e4764f9baedcef0f7ad8fcbea0f04c05e706c1591e3f908945699120 +Size: 4554116 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.4.7-1_amd64.deb + +Package: powershell-lts +Version: 7.2.13-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 168858 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 75a1204f0853c30057405dca9f725fb28d2a6114c217b501c3a541d1eaf5ed92 +Size: 68396144 +Filename: pool/main/p/powershell-lts/powershell-lts_7.2.13-1.deb_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.16-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.16 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.16), libc6 +SHA256: 92171aaffa0102e35a70d9d06d05bf47af94febe99aff6cb09c45f864289f64e +Size: 142298 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.16-x64.deb + +Package: moby-containerd +Version: 1.6.35-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 129404 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 651d93ce01b199b85eb0554a385831bd0dedaf121e45c61f524cb78e265afd8d +Size: 46243296 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.35-ubuntu22.04u1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.107-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 350056 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.107 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.7), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.7), dotnet-runtime-7.0 (>= 7.0.7), dotnet-targeting-pack-7.0 (>= 7.0.7), aspnetcore-runtime-7.0 (>= 7.0.7) +SHA256: fc203dd1fe23030645b49fa957ca63bc80f3f14dd14c12a07be5ed5d08fe0e20 +Size: 90663186 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.107-x64.deb + +Package: moby-containerd +Version: 1.6.26-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 128988 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 84486468ee91fab94d9300b32072d8b1fa6af1c33c876afdbecd919f24122ec3 +Size: 45791772 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.26-ubuntu22.04u1_amd64.deb + +Package: dotnet-hostfxr-7.0 +Version: 7.0.20-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 428 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 7.0.20 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 7.0.20), libc6 +SHA256: 35d5251248a1005d6eab77f91bbd1caad81369b61dbed7d41ee3bb781caca495 +Size: 144714 +Filename: pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.20-1_amd64.deb + +Package: mdatp +Version: 101.24022.0001 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 593841 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, libpcre3, mde-netfilter +SHA256: 503ef2d658d34300d072da231d10b8f8d2f70f11ad084db97723d0b369b59f15 +Size: 148896866 +Filename: pool/main/m/mdatp/mdatp_101.24022.0001_amd64.deb + +Package: dotnet-apphost-pack-7.0 +Version: 7.0.14-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11285 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 7.0.14 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: bf8342f0a4850432bcb6714ed82d6f8f0deb156ccedd7ec1f9727284a71e9944 +Size: 3520470 +Filename: pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.14-1_amd64.deb + +Package: dotnet-hostfxr-7.0 +Version: 7.0.10-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 424 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 7.0.10 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 7.0.10), libc6 +SHA256: fc05aaf053f3306f2dd18eaabb047097e5fa1609afafd5c0f529072e39b8de6d +Size: 143938 +Filename: pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.10-1_amd64.deb + +Package: procdump +Version: 1.5-16239 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 10616 +Maintainer: OSS Tooling Dev Team +Description: Sysinternals process dump utility + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +Homepage: https://github.com/Microsoft/ProcDump-for-Linux +Depends: gdb (>= 7.6.1),libc6 +SHA256: f38e3b29309d220c4c57729c3ec9ddad737d1d38c56387e971e55c6440b67f53 +Size: 1625738 +Filename: pool/main/p/procdump/procdump_1.5-16239_amd64.deb + +Package: moby-buildx +Version: 0.10.2+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 68424 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 87c848437fac75a2bef556b6e83bea8f66c631337c5e0ba5f3b47e4709666832 +Size: 26763480 +Filename: pool/main/m/moby-buildx/moby-buildx_0.10.2+azure-ubuntu22.04u1_amd64.deb + +Package: aspnetcore-runtime-3.1 +Version: 3.1.30-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 17481 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-3.1 (>= 3.1.30) +SHA256: 402f832862ef2322cff59931844b5adbcbdab63725a9925667883ff45dfe9ed0 +Size: 5775564 +Filename: pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.30-x64.deb + +Package: dotnet-hostfxr-7.0 +Version: 7.0.5-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 424 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 7.0.5 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 7.0.5), libc6 +SHA256: 26ec1b1a281088177f66da1de36d31fd31a427f5a0e42b18538dabc503d52a1e +Size: 143998 +Filename: pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.5-x64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.11-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.11 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.11), libc6 +SHA256: 11d2256fef69f75655ff54b6efaa710980f7497d1ee213953881753cc4ec6be1 +Size: 142394 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.11-x64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.31-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.31 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 844921b4fbb1199e425057a4812d6eeef2882ae30bdf1056660bc1abe6dad2fc +Size: 2810 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.31-1_amd64.deb + +Package: intune-portal +Version: 1.2401.21-jammy +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 27043 +Maintainer: Microsoft +Description: Microsoft Intune + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +Depends: libglib2.0-0 (>= 2.35.8), libuuid1 (>= 2.16), libc6 (>= 2.34), libdbus-1-3 (>= 1.9.14), libsecret-1-0 (>= 0.7), libglib2.0-0 (>= 2.12.0), libgtk-3-0 (>= 3.21.4), libpango-1.0-0 (>= 1.14.0), libgtk-3-0 (>= 3.9.10), libssl3 (>= 3.0.0~~alpha1), libjavascriptcoregtk-4.0-18, libsoup2.4-1 (>= 2.4.0), msalsdk-dbusclient (>= 1.0), libstdc++6 (>= 12), libpam-pwquality (>= 1.4.0-2), gnome-keyring (>= 3.36), libpam0g (>= 0.99.7.1), zlib1g (>= 1:1.2.0), libsystemd0, libcurl4 (>= 7.16.2), libsqlite3-0 (>= 3.7.14), libwebkit2gtk-4.0-37 (>= 2.39.90), libatk1.0-0 (>= 1.12.4), libx11-6 +Recommends: microsoft-edge-stable (>= 102) +SHA256: 0483d3561381cda2b3651d16850397d96f240e0eb85163a0215be06b0d867247 +Size: 6652958 +Filename: pool/main/i/intune-portal/intune-portal_1.2401.21-jammy_amd64.deb + +Package: aspnetcore-targeting-pack-8.0 +Version: 8.0.7-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 15818 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-8.0 (>= 8.0.7) +SHA256: 92ad8987671716172a5c683393bb7f54ba1c1733c6ed742e1d17002a36f29489 +Size: 1917190 +Filename: pool/main/a/aspnetcore-targeting-pack-8.0/aspnetcore-targeting-pack-8.0_8.0.7-1_amd64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.8-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.8 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 18ff586f6e58d8b0b92e371f3dd23c2cc107c1c943be1479a122a1402ac4ba81 +Size: 2808 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.8-x64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.10-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.10 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 6c363e4748de6d674af31db7ba09cee89dae9c22636e883bd418225c08b64926 +Size: 2127714 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.10-x64.deb + +Package: dotnet-host +Version: 7.0.9-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 246 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.9 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 4c6621e18fbc3baf2ba5a45334b8b86073e0a3a3afc20af7df539d34c3e4e833 +Size: 57178 +Filename: pool/main/d/dotnet-host/dotnet-host-7.0.9-x64.deb + +Package: powershell +Version: 7.3.0-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 196907 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: a99e9fe370b0d9c05c736fa81521d32375ddb418ab75c76d9d0a14b4ce3d3df2 +Size: 71728570 +Filename: pool/main/p/powershell/powershell_7.3.0-1.deb_amd64.deb + +Package: moby-compose +Version: 2.19.0+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 59023 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 75ed2c6361fe6ac8e1c20f2352ea0552d9f73693b9c1f689273b6db32e28132e +Size: 13205484 +Filename: pool/main/m/moby-compose/moby-compose_2.19.0+azure-ubuntu22.04u1_amd64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.24-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19903 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.24) +SHA256: 22807c1504a6147d029957b8bb7efb2430ed64dff6f9a09baeb6b8292c4a5e6c +Size: 6621650 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.24-1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.120-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 349766 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.120 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.20), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.20), dotnet-runtime-7.0 (>= 7.0.20), dotnet-targeting-pack-7.0 (>= 7.0.20), aspnetcore-runtime-7.0 (>= 7.0.20) +SHA256: 9155e01d066535b8ed56ba0d49f7e234abe74978fb2fecf6fe5040a61687460c +Size: 90638430 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.120-1_amd64.deb + +Package: aadsshlogin +Version: 1.0.027190001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libc6 (>= 2.34), libcurl4 (>= 7.16.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 3.1~), libsemanage2 (>= 2.0.32), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.16), passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: 59068871d3289c15321bffa219bce09c60b53db58f6d783ae74f95fcaeac75d4 +Size: 332942 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.027190001_amd64.deb + +Package: dotnet-runtime-3.1 +Version: 3.1.31-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 71233 +Maintainer: .NET Core Team +Description: Microsoft .NET Core Runtime - 3.1.31 Microsoft.NETCore.App 3.1.31 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://dot.net/core +Depends: dotnet-hostfxr-3.1 (>= 3.1.31), dotnet-runtime-deps-3.1 (>= 3.1.31) +SHA256: 655e60ffab7d47476c26feb82a4ec22da080f72796d504ce5bb325383a1b842c +Size: 21793662 +Filename: pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.31-x64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.25-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11750 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.25) +SHA256: 81ccede929aca41d334b17700f260b0fa92b08ba1329e9e1578e0b01c72c1377 +Size: 1315614 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.25-1_amd64.deb + +Package: aztfy +Version: 0.9.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 46316 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfy +Vendor: none +License: MPL-2.0 +SHA256: 4724f2facdb5c23b9913f23d89b10316d6cd5cc320fdf436bcf68d6a0b16f8ab +Size: 8770940 +Filename: pool/main/a/aztfy/aztfy-0.9.0-1-amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.402-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 403101 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.402 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.12), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.12), dotnet-runtime-7.0 (>= 7.0.12), dotnet-targeting-pack-7.0 (>= 7.0.12), aspnetcore-runtime-7.0 (>= 7.0.12) +SHA256: 882135010f01d9e5910fa74c786791851b205b7968cab9146849169a06caba7e +Size: 108189490 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.402-1_amd64.deb + +Package: dotnet-sdk-3.1 +Version: 3.1.425-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 193096 +Maintainer: Microsoft +Description: Microsoft .NET Core SDK 3.1.425 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://dotnet.github.io/core +Depends: libc6 (>= 2.14), libgcc1 (>= 1:3.0), libstdc++6 (>= 4.6), dotnet-targeting-pack-3.1 (>= 3.1.0), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-3.1 (>= 3.1.31), aspnetcore-targeting-pack-3.1 (>= 3.1.10), dotnet-runtime-3.1 (>= 3.1.31), aspnetcore-runtime-3.1 (>= 3.1.31) +SHA256: d5baa261325602144fe72944358d02371a8dbec5d2df322e7459a4dcde0dd60a +Size: 49834620 +Filename: pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.425-x64.deb + +Package: azure-ai-vision-runtime-image-analysis +Version: 0.15.1~beta.1 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 682 +Maintainer: vision-sdk@microsoft.com +Description: Azure AI Vision Image Analysis Runtime Package +Depends: azure-ai-vision-runtime-common (= 0.15.1~beta.1) +SHA256: dff4c1804439d9c08d8dd31627040ea654765903eeb4295393585fd9e0e30b56 +Size: 150108 +Filename: pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.15.1~beta.1-Linux.deb + +Package: microsoft-identity-diagnostics +Source: microsoft-identity-diagnostics +Version: 2.0.0 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 4008 +Maintainer: Microsoft Identity +Description: microsoft-identity-diagnostics +Depends: default-jre, jq +Owner: Microsoft Identity +Packager: Microsoft Identity +SHA256: f70a5ad369849e262b4ed493cfeb9eef137f7d49cb1f84f9f2f2e62c362b465b +Size: 3770550 +Filename: pool/main/m/microsoft-identity-diagnostics/microsoft-identity-diagnostics_2.0.0_amd64.deb + +Package: moby-cli +Version: 26.1.1-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 38939 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 35bda55c5d59e360430352c2919c6160fe8808585b4dab834779a9981f39c964 +Size: 17163996 +Filename: pool/main/m/moby-cli/moby-cli_26.1.1-ubuntu22.04u1_amd64.deb + +Package: msopenjdk-11 +Version: 11.0.22-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 329295 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 11 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: efc27a72d699dbd43c67559ee7576012ad6e8c4bebaa251d9f2ebea7afb6f2c4 +Size: 169108034 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.22-1_amd64.deb + +Package: powershell +Version: 7.3.9-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 172238 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 8ec60ee3bd4721f5097f7faf55c1aabf984118821ed78baca70be3612516cc9b +Size: 69171666 +Filename: pool/main/p/powershell/powershell_7.3.9-1.deb_amd64.deb + +Package: msopenjdk-21 +Version: 21.0.4-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 353343 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 21 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 80ac27b5f827a901ff1d1c34de344e894d6537b4521c633a6cdfe693d31a2824 +Size: 176652338 +Filename: pool/main/m/msopenjdk-21/msopenjdk-21_21.0.4-1_amd64.deb + +Package: msodbcsql18 +Version: 18.3.3.1-1 +Architecture: amd64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: f91004ce72fcd92e686154f90e2a80f4f86469e7cb5f42ef79cba79dc6727890 +Size: 755120 +Filename: pool/main/m/msodbcsql18/msodbcsql18_18.3.3.1-1_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.19-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68459 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.19 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.19), dotnet-runtime-deps-6.0 (>= 6.0.19) +SHA256: 2e635f77893cd7a802297f3fe00257d3792befd579820ce1132923fd27dfee95 +Size: 22887618 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.19-x64.deb + +Package: aspnetcore-targeting-pack-7.0 +Version: 7.0.8-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 13093 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-7.0 (>= 7.0.8) +SHA256: f14238d2ea7dc37d5d7c947e950fffa64e4183dcd1a88fcafdf1543cc0e21b43 +Size: 1522110 +Filename: pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.8-x64.deb + +Package: libmsquic +Version: 2.4.4 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 13824 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 30781843b6bb461a09bc22d03aef24bcdf1f6f5a997c9612cac1c0c2bc97f2e6 +Size: 4222988 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.4_amd64.deb + +Package: dotnet-runtime-7.0 +Version: 7.0.5-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70820 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 7.0.5 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-deps-7.0 (>= 7.0.5), dotnet-hostfxr-7.0 (>= 7.0.5) +SHA256: 6fad7162dbcf639ebe9609c6b4ae4167dc0488ae7c0581a6c322c007259cffa3 +Size: 23193486 +Filename: pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.5-x64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.11-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68418 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.11 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.11), dotnet-runtime-deps-6.0 (>= 6.0.11) +SHA256: e745e27dd7fbc813dcdffb896469807ed1a1a9323fbd81dd5c3af95a593e171c +Size: 22847074 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.11-x64.deb + +Package: dotnet-host +Version: 6.0.3-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.3 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 416e02afae3d47adfe80662d495d3c2abbfd44828a2f2c2269f6409c0df07198 +Size: 55716 +Filename: pool/main/d/dotnet-host/dotnet-host-6.0.3-x64.deb + +Package: dotnet-targeting-pack-7.0 +Version: 7.0.19-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 31138 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 7.0.19 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 843ff4f69886a3a095194d13de0be0a35f388bc430714e4a81cee7216aff0443 +Size: 2568454 +Filename: pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.19-1_amd64.deb + +Package: blobfuse2 +Version: 2.0.3 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 27909 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: ff605bf4122ef16eb33411f58240594c45b411b2807431f7a7c8874b6f0ce9fd +Size: 13181856 +Filename: pool/main/b/blobfuse2/blobfuse2-2.0.3.x86_64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.2-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19832 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.2) +SHA256: 62d5edb2667273c90fca39f2bed842e0dd6aad2a66b848a53fa57852b041c173 +Size: 6597956 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.2-x64.deb + +Package: moby-containerd +Version: 1.6.23+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 125899 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 8e26d5caec1dbac0aa0f5b7805d044bd58683c31d779766fd9bd312dfe3feff6 +Size: 34924434 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.23+azure-ubuntu22.04u1_amd64.deb + +Package: azure-ai-vision-dev-core +Version: 0.10.0~beta.1 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 756 +Maintainer: vision-sdk@microsoft.com +Description: Azure AI Vision Core Developer Package +Depends: azure-ai-vision-runtime-core, azure-ai-vision-runtime-core-media +SHA256: 845d2c21326f23d4b1fc2eb3e3731dc0dfe0b93b51af66c99e1013b7b50681b4 +Size: 114288 +Filename: pool/main/a/azure-ai-vision-dev-core/azure-ai-vision-dev-core-0.10.0~beta.1-Linux.deb + +Package: dotnet-host +Version: 7.0.16-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 246 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.16 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 746e33577216dfc77f4a6637471ed71225adb8c7ab13b6aff02fe22eb5a50498 +Size: 57358 +Filename: pool/main/d/dotnet-host/dotnet-host_7.0.16-1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.314-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 366489 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.314 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.17), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.17), dotnet-runtime-7.0 (>= 7.0.17), dotnet-targeting-pack-7.0 (>= 7.0.17), aspnetcore-runtime-7.0 (>= 7.0.17) +SHA256: 0d497b49bc918517e43fc0f0ff8e316d83bdfbee93d76b0edf6cedd94913032e +Size: 96411178 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.314-1_amd64.deb + +Package: dotnet-runtime-deps-8.0 +Version: 8.0.5-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 8.0.5 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52 +SHA256: f67ac8d867340c5d19aab7045ab888d24eb05b1106fd9c3e2cf426c84ac71139 +Size: 2886 +Filename: pool/main/d/dotnet-runtime-deps-8.0/dotnet-runtime-deps-8.0_8.0.5-1_amd64.deb + +Package: powershell +Version: 7.2.22-1.deb +Architecture: amd64 +Section: shells +Priority: optional +Installed-Size: 168402 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 8430f5a6bfeb0be938810a3afe4f8cdc83c81fb4a46095497e43d34470176ed4 +Size: 68268008 +Filename: pool/main/p/powershell/powershell_7.2.22-1.deb_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.4-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68400 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.4 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.4), dotnet-runtime-deps-6.0 (>= 6.0.4) +SHA256: 01f8138ab2c5d9070f1890822f4c4dc24692b6a913b9787c9df6892aff11a234 +Size: 23011424 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.4-x64.deb + +Package: dotnet-runtime-8.0 +Version: 8.0.4-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70242 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 8.0.4 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-8.0 (>= 8.0.4), dotnet-runtime-deps-8.0 (>= 8.0.4) +SHA256: 2fd4b261e01326ba203e2e8a6d03e7b4d8a178b671f3a0dd775acdadd775df91 +Size: 23043998 +Filename: pool/main/d/dotnet-runtime-8.0/dotnet-runtime-8.0_8.0.4-1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.403-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 403061 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.403 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.13), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.13), dotnet-runtime-7.0 (>= 7.0.13), dotnet-targeting-pack-7.0 (>= 7.0.13), aspnetcore-runtime-7.0 (>= 7.0.13) +SHA256: 02fc8659df6b8072d12a3fe4757d0e75c91ef0f4829edd926f0766737c5d315d +Size: 108194782 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.403-1_amd64.deb + +Package: aspnetcore-targeting-pack-8.0 +Version: 8.0.6-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 15818 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-8.0 (>= 8.0.6) +SHA256: 7eba4920a501cb8e55e492062e2fcec150a1f705173978bc333c04404d2850c7 +Size: 1922714 +Filename: pool/main/a/aspnetcore-targeting-pack-8.0/aspnetcore-targeting-pack-8.0_8.0.6-1_amd64.deb + +Package: azcmagent +Version: 1.25.02203.601 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 633d248a735db74f851d802144622a5cba9888a8c9741fdab3d72d0ace467940 +Size: 53677954 +Filename: pool/main/a/azcmagent/azcmagent_1.25.02203.601_amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.5530-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: ef4458b1758e147eb7bc9c4ca6704f94629e833ba21de8c9c22d7aaa62a20c3d +Size: 158161632 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5530-1_amd64.deb + +Package: moby-compose +Version: 2.26.0-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61394 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: f0a85993610847c78dc43c9c1761615abb54169d54246964adcc3512c453f7aa +Size: 18420762 +Filename: pool/main/m/moby-compose/moby-compose_2.26.0-ubuntu22.04u1_amd64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.20-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19885 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.20) +SHA256: 843d5b35e21303e2e9575436c5b4c59e7795186dd4a8759eada1cf23cecb6c6d +Size: 6613502 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.20-x64.deb + +Package: aadsshlogin +Version: 1.0.027980001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libc6 (>= 2.34), libcurl4 (>= 7.16.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 3.1~), libsemanage2 (>= 2.0.32), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.16), passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: 6de70cb6c0640433b51d08e39ecf67504dad17c2e3447c17334c46d2756aa53d +Size: 332668 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.027980001_amd64.deb + +Package: aspnetcore-targeting-pack-7.0 +Version: 7.0.13-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 13099 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-7.0 (>= 7.0.13) +SHA256: 7a8bac3d07539a56ad0cb775e996da6fdd0f6ba1bb21924d7853a1f28e433ec7 +Size: 1514874 +Filename: pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.13-1_amd64.deb + +Package: aspnetcore-targeting-pack-8.0 +Version: 8.0.1-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 15800 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-8.0 (>= 8.0.1) +SHA256: ca96dad2477fa8d46de58bd11d705b5d2d85a63faa6589468887c77e35bd6017 +Size: 1914574 +Filename: pool/main/a/aspnetcore-targeting-pack-8.0/aspnetcore-targeting-pack-8.0_8.0.1-1_amd64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.102-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 389107 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.102 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.2), dotnet-targeting-pack-8.0 (>= 8.0.2), dotnet-apphost-pack-8.0 (>= 8.0.2), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.2), aspnetcore-targeting-pack-8.0 (>= 8.0.2) +SHA256: dceea668f0c4e5733e9f45e1a8ff8afba0be08fe9965383133be2f44d5bcab8b +Size: 101792830 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.102-1_amd64.deb + +Package: azureauth +Version: 0.8.6-1 +Architecture: amd64 +Section: misc +Priority: optional +Installed-Size: 74320 +Maintainer: ES365 Security Experience Team +Description: A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information. +SHA256: 83cb4a6f86937b518168042d2b779f41f9993d399936b6c5d2af0f597a8aabca +Size: 24060058 +Filename: pool/main/a/azureauth/azureauth_0.8.6-1_amd64.deb + +Package: moby-compose +Version: 2.29.4-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61866 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 6da604b54bf6d0aa8ef89a86be5dc8f607140a7b142a1c2a231a078f04f6b216 +Size: 18585282 +Filename: pool/main/m/moby-compose/moby-compose_2.29.4-ubuntu22.04u1_amd64.deb + +Package: intune-portal +Version: 1.2310.8 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 24626 +Maintainer: Microsoft +Description: Microsoft Intune + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +Depends: libssl3 (>= 3.0.0~~alpha1), libgtk-3-0 (>= 3.21.4), libpam-pwquality (>= 1.4.0-2), libstdc++6 (>= 12), libwebkit2gtk-4.0-37 (>= 2.39.90), libsoup2.4-1 (>= 2.4.0), libatk1.0-0 (>= 1.12.4), libjavascriptcoregtk-4.0-18, gnome-keyring (>= 3.36), libpam0g (>= 0.99.7.1), libdbus-1-3 (>= 1.9.14), libc6 (>= 2.34), libx11-6, libglib2.0-0 (>= 2.12.0), libsystemd0, libsqlite3-0 (>= 3.7.14), libcurl4 (>= 7.16.2), libuuid1 (>= 2.16), zlib1g (>= 1:1.2.0), libglib2.0-0 (>= 2.35.8), libpango-1.0-0 (>= 1.14.0), msalsdk-dbusclient (>= 1.0), libgtk-3-0 (>= 3.9.10), libsecret-1-0 (>= 0.7) +Recommends: microsoft-edge-stable (>= 102) +SHA256: 6b561c89312bcb8c6166e5c29b9adda7672bb71921bfbfd600ebe30db6f8f8b5 +Size: 5985522 +Filename: pool/main/i/intune-portal/intune-portal_1.2310.8_amd64.deb + +Package: aspnetcore-runtime-7.0 +Version: 7.0.19-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 21371 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-7.0 (>= 7.0.19) +SHA256: 5acc57c49d95ef3f8381d2a1032dfae57d1e4f5424a1d66ab97ff4118db3663c +Size: 7066002 +Filename: pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.19-1_amd64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.30-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19905 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.30) +SHA256: f1474746a5042fdb2365195f80e6742080544e2e0a7115f3fa18871a31000e2a +Size: 6622446 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.30-1_amd64.deb + +Package: moby-engine +Version: 20.10.15+azure-2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 95693 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 8505d925656c73cf88d58bc347c7acc9c0e37955f51c89549e56c3b874a857a7 +Size: 22977814 +Filename: pool/main/m/moby-engine/moby-engine_20.10.15+azure-2_amd64.deb + +Package: msopenjdk-17 +Version: 17.0.8-3 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 325465 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 17 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 3ea7875f7ee282162012226e206a40de9f8d2d2de720f41f573a45ebeed08bb1 +Size: 165338790 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8-3_amd64.deb + +Package: azcmagent +Version: 1.30.02313.864 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 217334ca96338070b7e7592e98eebff6de450b154e79b095fb77956269d08bb7 +Size: 54191138 +Filename: pool/main/a/azcmagent/azcmagent_1.30.02313.864_amd64.deb + +Package: moby-engine +Version: 20.10.17+azure-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 97682 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: af7bfcdc64a6afed656f8604480c3f27d840f2150c96d6682392aa16c96d309e +Size: 23208250 +Filename: pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu22.04u2_amd64.deb + +Package: mde-netfilter +Version: 100.69.59 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 92 +Maintainer: Microsoft Defender for Endponts +Description: Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace +Depends: libnetfilter-queue1, libglib2.0-0 +SHA256: 9bb51091801bbfa8979e90de219b80ae4ec77bffbb71d63ee87a68242af631a4 +Size: 24414 +Filename: pool/main/m/mde-netfilter/mde-netfilter_100.69.59.amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.404-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 403092 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.404 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.14), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.14), dotnet-runtime-7.0 (>= 7.0.14), dotnet-targeting-pack-7.0 (>= 7.0.14), aspnetcore-runtime-7.0 (>= 7.0.14) +SHA256: 599e15ffb2f95c85aa98c6754bbb6351ace023929158193e7f54654ef9fdb0da +Size: 108209206 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.404-1_amd64.deb + +Package: dotnet-apphost-pack-7.0 +Version: 7.0.8-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11281 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 7.0.8 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: f74114d6282233fc1ba4f5a15b0edf94e7fdc5e5bae13a90917abdfdc228b4ad +Size: 3518666 +Filename: pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.8-x64.deb + +Package: moby-cli +Version: 20.10.14+azure-1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61004 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 9c828952219c8ae3762fd8bce00d4fe08ecbd5e2d3d90d8e75c59d9606d2699f +Size: 11948448 +Filename: pool/main/m/moby-cli/moby-cli_20.10.14+azure-1_amd64.deb + +Package: dotnet-runtime-8.0 +Version: 8.0.2-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70232 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 8.0.2 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-8.0 (>= 8.0.2), dotnet-runtime-deps-8.0 (>= 8.0.2) +SHA256: 2e080cfe720db9c184e76595315ddab5b0ec22d3f2a1df56ac2f956ea067a09a +Size: 23039658 +Filename: pool/main/d/dotnet-runtime-8.0/dotnet-runtime-8.0_8.0.2-1_amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.5174-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 30f04454aaa1fd33c74b40c8e608dfb3810d89de0c21cd0587cefbdc6e7b6621 +Size: 154905788 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5174-1.deb + +Package: dotnet-host +Version: 6.0.27-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.27 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 08c11dac9e74e97eca388dc286de379371aa2db6bed096c1e82cfe3903762f29 +Size: 55774 +Filename: pool/main/d/dotnet-host/dotnet-host_6.0.27-1_amd64.deb + +Package: powershell +Version: 7.3.11-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 172258 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 05e9727d4acbd24522ebfac6b7be72ff2e199d2d94105276d7ed712ca811cff7 +Size: 69229196 +Filename: pool/main/p/powershell/powershell_7.3.11-1.deb_amd64.deb + +Package: dotnet-host +Version: 8.0.1-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 174 +Maintainer: .NET Team +Description: Microsoft .NET Host - 8.0.1 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libc6, libgcc1, libstdc++6 +SHA256: 22e3447ffda3cec2a4b7c3d74681c4320138a3fc020930feadf84d373a77fe50 +Size: 37674 +Filename: pool/main/d/dotnet-host/dotnet-host_8.0.1-1_amd64.deb + +Package: microsoft-identity-broker +Source: microsoft-identity-broker +Version: 1.6.0 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 89388 +Maintainer: Microsoft Identity +Description: microsoft-identity-broker + Microsoft Authentication Broker for Linux. +Conflicts: msft-identity-broker +Depends: default-jre, systemd, dbus-session-bus, dbus-system-bus, gnome-keyring +Recommends: microsoft-identity-diagnostics +Provides: msft-identity-broker +Replaces: msft-identity-broker +SHA256: 89db5b4980ff7b5074e956ca1f467ec7d68cfb330eafe2e74c96ffd69f0aa155 +Size: 82457810 +Filename: pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.6.0_amd64.deb + +Package: adutil +Version: 1.1.138 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 11755 +Maintainer: <@cd2524c3f6ba> +Description: no description given +Homepage: http://example.com/no-uri-given +Depends: realmd, krb5-user, software-properties-common, packagekit +Vendor: none +License: microsoft_adutil_license +SHA256: 0d81f561d0fcf6d14e7e4721727ce685a704a08cf9f66d4c69a31e8931f37ce3 +Size: 5581788 +Filename: pool/main/a/adutil/adutil_1.1.138_amd64.deb + +Package: dotnet-targeting-pack-8.0 +Version: 8.0.0-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 36082 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 8.0.0 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 7555dfa8a34bf106d7964c4f4e7da6b2c0ed72d5a1021abc71dddd5cf21096d5 +Size: 2800994 +Filename: pool/main/d/dotnet-targeting-pack-8.0/dotnet-targeting-pack-8.0_8.0.0-1_amd64.deb + +Package: blobfuse2 +Version: 2.0.1 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 27863 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: a2b80fb5f373aaabbfe6be13185f01f2476ae8fc9fad6f63a1bf39e8d1995fbb +Size: 13151180 +Filename: pool/main/b/blobfuse2/blobfuse2-2.0.1-Ubuntu-22.04-x86-64.deb + +Package: dotnet-apphost-pack-8.0 +Version: 8.0.2-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11057 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 8.0.2 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: d76055455c2f6ece2fdef3448beea6b86a3254594e232d2081d72e30dc2b1e19 +Size: 3509434 +Filename: pool/main/d/dotnet-apphost-pack-8.0/dotnet-apphost-pack-8.0_8.0.2-1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.400-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 404208 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.400 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.10), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.10), dotnet-runtime-7.0 (>= 7.0.10), dotnet-targeting-pack-7.0 (>= 7.0.10), aspnetcore-runtime-7.0 (>= 7.0.10) +SHA256: 4e1bc6ef9e5e0ec0a04ddee9c971b97087e6a9a0321ced9b4a872f2bcaac5270 +Size: 108340086 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.400-1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.117-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 349751 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.117 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.17), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.17), dotnet-runtime-7.0 (>= 7.0.17), dotnet-targeting-pack-7.0 (>= 7.0.17), aspnetcore-runtime-7.0 (>= 7.0.17) +SHA256: e0e5ce9a676c3013ba3331f0a8bc89176a475b71121cee0a2c3553788b6b722c +Size: 90591274 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.117-1_amd64.deb + +Package: mde-netfilter +Version: 100.69.55 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 92 +Maintainer: Microsoft Defender for Endponts +Description: Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace +Depends: libnetfilter-queue1, libglib2.0-0 +SHA256: 1a6ca836ac97681f0fcec4088fa942783ec22b6e5d58be5a4adcc867301c8968 +Size: 24434 +Filename: pool/main/m/mde-netfilter/mde-netfilter_100.69.55.amd64.deb + +Package: moby-compose +Version: 2.25.0-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 60172 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 9c86b818532d84ed37248baef4036ee01b2d1303ee8a5c5fae05a83cd9c2c787 +Size: 17980878 +Filename: pool/main/m/moby-compose/moby-compose_2.25.0-ubuntu22.04u1_amd64.deb + +Package: aspnetcore-runtime-7.0 +Version: 7.0.4-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 21339 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-7.0 (>= 7.0.4) +SHA256: 85b026987b04ff8258d6e42677e2292d1b775f562e86ae7a1de9305646c27147 +Size: 7051730 +Filename: pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.4-x64.deb + +Package: dotnet-host +Version: 6.0.8-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.8 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 392275546433e1fa28f1ae534c201dac53bf96e6cd0d3ec8ff70a26fc249b3f0 +Size: 55844 +Filename: pool/main/d/dotnet-host/dotnet-host-6.0.8-x64.deb + +Package: mdatp +Version: 101.23082.0011 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 411025 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, libpcre3, mde-netfilter +SHA256: 97259a0d7025b2c0190109f293c54de65c4b6584de4602c6d885a6babc3bf8d1 +Size: 150354996 +Filename: pool/main/m/mdatp/mdatp_101.23082.0011_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.14-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68423 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.14 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.14), dotnet-runtime-deps-6.0 (>= 6.0.14) +SHA256: 78bcf00bc7cee6a25df87ca96973a708579a9da6946131698a1fd10444e67dbb +Size: 22694152 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.14-x64.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.3-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.3 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 38f353af5ed7d7fc336527e53b4a000a63e832d9aa2431ab9c6cf0343ee7cdc2 +Size: 2886 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.3-x64.deb + +Package: moby-cli +Version: 20.10.23+azure-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 50204 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: a512f93ecfad89c07e513489ab43afd6cca58136046d30dd3c42572df40071cb +Size: 10881484 +Filename: pool/main/m/moby-cli/moby-cli_20.10.23+azure-ubuntu22.04u2_amd64.deb + +Package: dotnet-hostfxr-7.0 +Version: 7.0.14-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 428 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 7.0.14 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 7.0.14), libc6 +SHA256: 574ca3bef299f57ca35bf2db71437a5f76b7d0a17aaeacd025a092977a1deb8d +Size: 144746 +Filename: pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.14-1_amd64.deb + +Package: dotnet-targeting-pack-7.0 +Version: 7.0.7-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 31138 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 7.0.7 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 6fe87e736d18910d0fd815aa15aa0ca8c8d0c7fa260106a8d528d1cba940840c +Size: 2568046 +Filename: pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.7-x64.deb + +Package: aspnetcore-runtime-8.0 +Version: 8.0.8-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 23516 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-8.0 (>= 8.0.8) +SHA256: 08c05fce5754e51fc9fb157ecb804dbc68d9cd14b4cd447c0a97dfae3ed94d47 +Size: 7676970 +Filename: pool/main/a/aspnetcore-runtime-8.0/aspnetcore-runtime-8.0_8.0.8-1_amd64.deb + +Package: aztfy +Version: 0.7.0 +Architecture: amd64 +Section: default +Priority: extra +Installed-Size: 40620 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfy +Vendor: none +License: MPL-2.0 +SHA256: 23c48caeff05fb75c9486bf0685620a773ec46ec9d6263ee28670f19bd09571e +Size: 8353910 +Filename: pool/main/a/aztfy/aztfy-0.7.0-1-amd64.deb + +Package: dotnet-host +Version: 7.0.8-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 246 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.8 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: d4b1ef40a32e948e99370003c3e89f4834d509b6707c5709d53b1ebf1bfe6c14 +Size: 57278 +Filename: pool/main/d/dotnet-host/dotnet-host-7.0.8-x64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.7-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.7 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.7), libc6 +SHA256: 17fc7a07ed846e5f8e6060fbf3bb21686fff1d735915fbc44e6aa16e6b8d526a +Size: 142192 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.7-x64.deb + +Package: azcmagent +Version: 1.22.02077.406 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 28449eccc7003a5c00f74031562f05ed662b7d33840b587527a499dd0725c472 +Size: 53412088 +Filename: pool/main/a/azcmagent/azcmagent_1.22.02077.406_amd64.deb + +Package: moby-runc +Version: 1.1.9-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 13369 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: 217a4bd4209e83764e31e72b10d56d87d421029ca230aa49feccb90621d70fe5 +Size: 6705868 +Filename: pool/main/m/moby-runc/moby-runc_1.1.9-ubuntu22.04u1_amd64.deb + +Package: blobfuse2 +Version: 2.2.1 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 30905 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: 3d7b91bc4b10f0852e4ee49965be6c3691bbe040d7edf9c90279f61147db58b7 +Size: 15438210 +Filename: pool/main/b/blobfuse2/blobfuse2_2.2.1_amd64.deb + +Package: aspnetcore-targeting-pack-7.0 +Version: 7.0.1-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 13092 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-7.0 (>= 7.0.1) +SHA256: c085c0275e7e0a416d98c5514c08e43e1842f20f97f5d7bc2f1b647f442375fe +Size: 1496790 +Filename: pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.1-x64.deb + +Package: mdatp +Version: 101.23052.0009 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 338816 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, mde-netfilter +SHA256: 9ab4f42422cc0a05edb15b77e86a6ce02a81723fa78cccb88cd050252d63bb91 +Size: 127189952 +Filename: pool/main/m/mdatp/mdatp_101.23052.0009.amd64.deb + +Package: aspnetcore-targeting-pack-7.0 +Version: 7.0.20-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 13100 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-7.0 (>= 7.0.20) +SHA256: 5551bb852ad07d2793a1f11fc234cb496c3d0bfc88b62f1da219030ccb9b4b9e +Size: 1532234 +Filename: pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.20-1_amd64.deb + +Package: dotnet-apphost-pack-8.0 +Version: 8.0.6-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11075 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 8.0.6 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: d88a21b66d954132b1a3b7363d89599f9c8c2ef298a6ff76256ac9372a16bd02 +Size: 3518662 +Filename: pool/main/d/dotnet-apphost-pack-8.0/dotnet-apphost-pack-8.0_8.0.6-1_amd64.deb + +Package: aztfexport +Version: 0.13.1 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 73156 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfexport +Vendor: none +License: MPL-2.0 +SHA256: 06e37c42e9ad8c3c14e99616d7a2f4ec05110017d81828bd93d5cab8663d5619 +Size: 11882146 +Filename: pool/main/a/aztfexport/aztfexport_0.13.1_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.25-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11075 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.25 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 441eaf164d17a9ecd6d7120f20979e30668a56638ce55c1d015d5957f00ccc58 +Size: 3521036 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.25-1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.104-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 350036 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.104 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.4), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.4), dotnet-runtime-7.0 (>= 7.0.4), dotnet-targeting-pack-7.0 (>= 7.0.4), aspnetcore-runtime-7.0 (>= 7.0.4) +SHA256: 1d57fcf96fa0c19c0bacc60a343952b9e21d1f3cadf38285b60160638bda93b6 +Size: 90606898 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.104-x64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.25-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.25 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: baffae2a058d5b4a447249749f7035e6c462ba239b2e50b4cf7b4c2a6b865b0c +Size: 2125120 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.25-1_amd64.deb + +Package: moby-compose +Version: 2.27.1-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61700 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: b8534f3f0133ad0d6429cbff61bc2ecb6c598d6ed9b1e6fa14064d42595727e4 +Size: 18527754 +Filename: pool/main/m/moby-compose/moby-compose_2.27.1-ubuntu22.04u1_amd64.deb + +Package: moby-engine +Version: 20.10.18+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 85910 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 40fe10f91f8e399fe8ac4631e46d470717603e6a05ce55e1e2473d11725d25e9 +Size: 22332536 +Filename: pool/main/m/moby-engine/moby-engine_20.10.18+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.401-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 387255 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.401 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.8), dotnet-targeting-pack-8.0 (>= 8.0.8), dotnet-apphost-pack-8.0 (>= 8.0.8), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.8), aspnetcore-targeting-pack-8.0 (>= 8.0.8) +SHA256: 81e166b8a45d960fd423209cd90078ed4509264270fc60bc048d5202ea8e4c2a +Size: 99099846 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.401-1_amd64.deb + +Package: powershell-preview +Version: 7.5.0-preview.2-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 179631 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 8925c4a36f1ea1d5ff85609fb131a61227ca9767dffc8e683b4cab3773317f61 +Size: 71899646 +Filename: pool/main/p/powershell-preview/powershell-preview_7.5.0-preview.2-1.deb_amd64.deb + +Package: moby-compose +Version: 2.4.1+azure-1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 25900 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 5346ab620a5557d2509b774a8bdb102a47974a016763a9b3fcd690ac71ba96ea +Size: 7191888 +Filename: pool/main/m/moby-compose/moby-compose_2.4.1+azure-1_amd64.deb + +Package: aadsshlogin +Version: 1.0.022090001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libcurl4, libuuid1, passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: 2bc0b64ce71d59d5c4e1b18cca0dc7d9a382f71974eee6b6b0bbabc6f1b96ed3 +Size: 330418 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.022090001_amd64.deb + +Package: azcmagent +Version: 1.27.02238.691 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 0d3dba479960e05eb81a9adebab11eb5cf61f8e5c3b499db8e3b9d482a5c670b +Size: 53707946 +Filename: pool/main/a/azcmagent/azcmagent_1.27.02238.691_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.8-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11066 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.8 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 6e37c1a434eb56c348f0371a658bc3e68f1332fc9f41dcb94a5c668a57434ef3 +Size: 3509404 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.8-x64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.32-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11750 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.32) +SHA256: 07742bbf6feeb2440515fdfb2f87fb8915c5fa5be48572e92e55e3159fea032f +Size: 1317126 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.32-1_amd64.deb + +Package: aziot-identity-service +Version: 1.4.5-1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 18850 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1) +SHA256: 4eb3b503e3e26837cccd3cdea1ad958cf80e4519fbc8facfa247d9789ff990b5 +Size: 4542634 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.4.5-1_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.15-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.15 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.15), libc6 +SHA256: 9bd0c52c9ad70420d6df3cbecfe6163212c4f857b07a1d638f845b4a460d82ac +Size: 142382 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.15-x64.deb + +Package: moby-compose +Version: 2.29.2-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61830 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 0ca5d80e75504821fe8ae5b4cd8c33d518f71db18330e6c97c2085f7a2435309 +Size: 18573698 +Filename: pool/main/m/moby-compose/moby-compose_2.29.2-ubuntu22.04u1_amd64.deb + +Package: mde-netfilter +Version: 100.69.73 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 93 +Maintainer: Microsoft Defender for Endponts +Description: Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace +Depends: libnetfilter-queue1, libglib2.0-0 +SHA256: b9649737dc4acfd4d434c2063f6d22e18ba8654a81fbec20a77a8d1543a6d67b +Size: 25540 +Filename: pool/main/m/mde-netfilter/mde-netfilter_100.69.73_amd64.deb + +Package: aadsshlogin-selinux +Version: 1.0.022600002 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.3-1), selinux-utils, selinux-policy-default +SHA256: 29c0d717e314044313ca61c9145312b35dee65650a8bffdaff5da062716d4b2b +Size: 2216 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.022600002_amd64.deb + +Package: moby-cli +Version: 20.10.21+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 49828 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 443ed6b1bf8a3112c80252a52630b8de90f9405bc55bf0f8e453fc93fae77ce6 +Size: 10750036 +Filename: pool/main/m/moby-cli/moby-cli_20.10.21+azure-ubuntu22.04u1_amd64.deb + +Package: moby-engine +Version: 24.0.7-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 100305 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 336893447cba143f100468adf99a622625092653069d9352813e46f5f344b338 +Size: 32206840 +Filename: pool/main/m/moby-engine/moby-engine_24.0.7-ubuntu22.04u1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.407-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 402080 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.407 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.17), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.17), dotnet-runtime-7.0 (>= 7.0.17), dotnet-targeting-pack-7.0 (>= 7.0.17), aspnetcore-runtime-7.0 (>= 7.0.17) +SHA256: 88e2130ba21a04d0f643376663da46f6a0a5b70c9a5042a71b88ad9a7be48a1f +Size: 108359058 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.407-1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.315-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 366489 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.315 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.18), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.18), dotnet-runtime-7.0 (>= 7.0.18), dotnet-targeting-pack-7.0 (>= 7.0.18), aspnetcore-runtime-7.0 (>= 7.0.18) +SHA256: c211fe50fdbd4536183e710876aa9843bc45c287430ca341e4e6ca6b73b3ef3d +Size: 96408406 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.315-1_amd64.deb + +Package: azapi2azurerm +Version: 1.3.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 20744 +Maintainer: henglu +Description: A tool to migrate terraform resources from azapi to azurerm +Homepage: https://github.com/Azure/azapi2azurerm +Vendor: none +License: MPL-2.0 +SHA256: 3be8889ef4a2bc388927a8179644551dd2ee00ef0c1c17975c839f6e1882118b +Size: 6716362 +Filename: pool/main/a/azapi2azurerm/azapi2azurerm-1.3.0-1-amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.6-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.6 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.6), libc6 +SHA256: 7f249c085c34dd797a6aad06509714992d2f48a8452798623ead69194429454f +Size: 141988 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.6-x64.deb + +Package: moby-containerd +Version: 1.6.32-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 129400 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: a622d6232a87718dcd489159e6fda1515f0f82c3198b410b7c97ece101a1616d +Size: 46237938 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.32-ubuntu22.04u1_amd64.deb + +Package: moby-buildx +Version: 0.11.2+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 76294 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: ed2fd68b86f7b4bed7984290d553310f3c053e9a901a6354315fe51baa92fe1d +Size: 29565894 +Filename: pool/main/m/moby-buildx/moby-buildx_0.11.2+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.8-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68403 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.8 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.8), dotnet-runtime-deps-6.0 (>= 6.0.8) +SHA256: c00f193c145dbe8b518b9eea0506db8f9667205eb953e0399c9652eb79d1dec2 +Size: 22977266 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.8-x64.deb + +Package: msopenjdk-21 +Version: 21.0.0-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 352607 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 21 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 6fd0f193b52b70d9585f9fc17a936f43ff9a079ed481670cd073976cd205dcc7 +Size: 176295410 +Filename: pool/main/m/msopenjdk-21/msopenjdk-21_21.0.0-1_amd64.deb + +Package: msopenjdk-17 +Version: 17.0.10-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 324232 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 17 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: ec0f639c3d9a8a2a01d82a21c70efdce84a1e7fb216b89086532f7eb9e2dd30f +Size: 164764518 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.10-1_amd64.deb + +Package: aspnetcore-runtime-7.0 +Version: 7.0.11-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 21358 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-7.0 (>= 7.0.11) +SHA256: e6514c9bdc094e35047f7f3c8260ffc0b12261119937fa4831e0b344ddf5260e +Size: 7061290 +Filename: pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.11-1_amd64.deb + +Package: moby-compose +Version: 2.23.2-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 58380 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 7825b5ab3d8efa8be5f00b50b3229447b8d02fdb414f285a88762df7735a8efa +Size: 17598246 +Filename: pool/main/m/moby-compose/moby-compose_2.23.2-ubuntu22.04u1_amd64.deb + +Package: dotnet-host +Version: 8.0.5-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 174 +Maintainer: .NET Team +Description: Microsoft .NET Host - 8.0.5 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libc6, libgcc1, libstdc++6 +SHA256: d8b69b0efa192634daad43200ddc87c63e7e1b059644e6ad3846ca7897b11484 +Size: 37794 +Filename: pool/main/d/dotnet-host/dotnet-host_8.0.5-1_amd64.deb + +Package: libmsquic +Version: 2.4.1 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 13808 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 34a70c26b40f58f9dc6a95546ab083f95e1e5bcebbc2a5b25bb7e54cd46605a0 +Size: 4219314 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.1_amd64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.12-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.12 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: b204c9015fcc56ba8397286a2ec440964c498b65fa9ef83effe64d64a782c29e +Size: 2800 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.12-x64.deb + +Package: moby-buildx +Version: 0.17.1-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 80067 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 04412dfe90df7dea657d4ed2186a60c7668ced6c36c006ef4e433a7bdcaa48bf +Size: 36212174 +Filename: pool/main/m/moby-buildx/moby-buildx_0.17.1-ubuntu22.04u1_amd64.deb + +Package: aadsshlogin-selinux +Version: 1.0.027190001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.3-1), selinux-utils, selinux-policy-default +SHA256: 4a8376ea920215f1ed699aff0d0aa52400e1df3751e78fd5c3998dc2f3f0b7d2 +Size: 2222 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.027190001_amd64.deb + +Package: azure-functions-core-tools +Version: 3.0.4806-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v3 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools, azure-functions-core-tools-2 +Replaces: azure-functions-core-tools, azure-functions-core-tools-2 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 20522a063dd32fd8072a9af2b3beec664bb5e44131841f011ac4287ba4278afa +Size: 227751104 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4806-1.deb + +Package: dotnet-apphost-pack-3.1 +Version: 3.1.32-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 214 +Maintainer: .NET Core Team +Description: Microsoft.NETCore.App.Host 3.1.32 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 92621393c0a814a263f3215121e9a9c722095c125f1f24939a43a56265ff706d +Size: 42326 +Filename: pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.32-x64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.16-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11071 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.16 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 5c811033834fdff942210dfbf65d16eea2fe2f97d334d572cc02f3f2e43685b8 +Size: 3520848 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.16-x64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.8-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11724 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.8) +SHA256: 5f5903bfd7dfc455dd48530121cd67250de834a5667fc1a022e976238ee6e5f5 +Size: 1307476 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.8-x64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.122-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 314379 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.122 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.22), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.22), dotnet-apphost-pack-6.0 (>= 6.0.22), dotnet-runtime-6.0 (>= 6.0.22), aspnetcore-targeting-pack-6.0 (>= 6.0.22) +SHA256: 2a8ce53fc735ccd1336abc88949ec01164b53ae92e73113ccae284426808466d +Size: 78881346 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.122-1_amd64.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.5-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.5 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 36ff1945d3e7a0c5cecd8f5618a4e2790faa7cd802bda9468e09bbad39e0c8d1 +Size: 2890 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.5-x64.deb + +Package: moby-buildx +Version: 0.14.0-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 79502 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: ed38e8c3d1b1e4f90d94bb6f1fe01bed4715262a24bde84fb87df9f04f8e6195 +Size: 35913774 +Filename: pool/main/m/moby-buildx/moby-buildx_0.14.0-ubuntu22.04u1_amd64.deb + +Package: dotnet-hostfxr-3.1 +Version: 3.1.28-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 408 +Maintainer: .NET Core Team +Description: Microsoft .NET Core Host FX Resolver - 3.1.28 3.1.28 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://dot.net/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 3.1.28), libc6 +SHA256: 9e32978def8d2974dd8e1884e0661fd89a66923ae40d8afa8e88ec5a804f3b55 +Size: 120692 +Filename: pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.28-x64.deb + +Package: dotnet-hostfxr-7.0 +Version: 7.0.11-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 424 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 7.0.11 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 7.0.11), libc6 +SHA256: c5da373a2a75523c25dd212534c37ed6bb14054de2a174e3fefe32df6595016e +Size: 143962 +Filename: pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.11-1_amd64.deb + +Package: moby-containerd +Version: 1.6.21+azure-ubuntu22.04u3 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 125665 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 1b6ed3cf6cbcbf4535ab07c77c396d1f6a94a447bfdf4d574bbbbd5d983657b9 +Size: 34928016 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.21+azure-ubuntu22.04u3_amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.4785-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 7ab2543933ac5e546e391128a8629af650e0d9b380a646678a8032766871bd8e +Size: 125645188 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4785-1.deb + +Package: dotnet-targeting-pack-8.0 +Version: 8.0.6-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 36082 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 8.0.6 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 4282bfc3826a5aaa250ec0dd59394fd20588d0a949372d693b9c27c436f79899 +Size: 2800834 +Filename: pool/main/d/dotnet-targeting-pack-8.0/dotnet-targeting-pack-8.0_8.0.6-1_amd64.deb + +Package: aspnetcore-targeting-pack-7.0 +Version: 7.0.10-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 13096 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-7.0 (>= 7.0.10) +SHA256: 8bab05ba98fd4ad4daf82e5386008bbce86e9961c6e4435d2e9822da843bccea +Size: 1510954 +Filename: pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.10-1_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.31-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11075 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.31 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 5739c809f148a02bada9fd22db55840d4eda08a7721b633f96f722951e714ab5 +Size: 3523418 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.31-1_amd64.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.7-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.7 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: ddd3c0eb7332dacfecf2a3a8ed8988439431c5f9b6b84a08e92edadec9024b08 +Size: 2890 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.7-x64.deb + +Package: azure-functions-core-tools-3 +Version: 3.0.4899-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v3 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools, azure-functions-core-tools-2 +Replaces: azure-functions-core-tools, azure-functions-core-tools-2 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 6a2903ed2616c7e00935c25376801244c01e1a4b41f369945f13a73196871385 +Size: 228283580 +Filename: pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4899-1.deb + +Package: libmsquic +Version: 2.1.7 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 16102 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 150478df2bfe05e26dc154d0144eb4c65c911c285a1bf76e01dea612bdef6586 +Size: 4126202 +Filename: pool/main/libm/libmsquic/libmsquic_2.1.7_amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.4915-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: c081e147deead98682d2ac4c05010813b67dd4f1b82fa4e66b22c159854c9ae2 +Size: 158709156 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4915-1.deb + +Package: aziot-identity-service +Version: 1.5.3-1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 17199 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1), psmisc +SHA256: 10fba0e8c379803fb2d5e9ce92656514e07a66054b6c7943a1c0250dd645d566 +Size: 4187766 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.5.3-1_amd64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.24-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.24 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: d8c45cb378057394ad53edddb0a970025ca261743fa4621687c927ff5a445edd +Size: 2796 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.24-1_amd64.deb + +Package: moby-containerd +Version: 1.6.24-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 126669 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 290f3c41e06775dc15a0ca5832f7bd09671cdbad2348f12bfc9b7d5ed1303a2a +Size: 44740600 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.24-ubuntu22.04u1_amd64.deb + +Package: moby-containerd +Version: 1.6.22+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 125895 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 3a995f184968c0f364fbe3824f29cf34a106f407178c7a181913ca022daee847 +Size: 34900510 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.22+azure-ubuntu22.04u1_amd64.deb + +Package: aadsshlogin +Version: 1.0.023850001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libc6 (>= 2.34), libcurl4 (>= 7.16.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 3.1~), libsemanage2 (>= 2.0.32), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.16), passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: efad79eb58c10155710ef59171fbe73d67e765a49ce4cc4f4e3622163f4c2f84 +Size: 332574 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.023850001_amd64.deb + +Package: mdatp +Version: 101.80.97 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 278033 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: curl (>= 7.5), libseccomp2, libuuid1, libatomic1, libc6 (>= 2.23), uuid-runtime, dmidecode, auditd, libselinux1, libfuse2, mde-netfilter +SHA256: 28535a2926aaddaa715cd559ab06e1db9d70546e355c6c8b57ab9de58feac2f3 +Size: 112232294 +Filename: pool/main/m/mdatp/mdatp_101.80.97.amd64.deb + +Package: moby-buildx +Version: 0.10.0+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 68407 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 959f863e537a7b91e302df6df50173dd88d73ce8a4fb43f10553f532a0219b58 +Size: 26756046 +Filename: pool/main/m/moby-buildx/moby-buildx_0.10.0+azure-ubuntu22.04u1_amd64.deb + +Package: libmsquic +Version: 2.2.7 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 12959 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 55284ab6e50973300d63e0402c7a813796b1f0e85aff0ee514544d92907573cf +Size: 3960996 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.7_amd64.deb + +Package: mssql-tools +Version: 17.10.1.1-1 +Architecture: amd64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL Tools Team +Description: Tools for Microsoft(R) SQL Server(R) + This package provides tools for Microsoft(R) SQL Server(R). +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), msodbcsql17 (>= 17.3.0.0) +SHA256: 750c5e413db5a154dd708e85bbe3ca11bdfa1bc9093a898934e2a858c8336ffa +Size: 210704 +Filename: pool/main/m/mssql-tools/mssql-tools_17.10.1.1-1_amd64.deb + +Package: dotnet-host +Version: 6.0.15-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.15 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 2d084d26ada01ddc7eb08809dd498002f112670c8aee58b122200cce86a8ac00 +Size: 55902 +Filename: pool/main/d/dotnet-host/dotnet-host-6.0.15-x64.deb + +Package: powershell-lts +Version: 7.2.10-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 189109 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 88a8e3fc3bf5899d180a3c6932fc1f16aec744d142e468cd9c503cb81981560e +Size: 70364236 +Filename: pool/main/p/powershell-lts/powershell-lts_7.2.10-1.deb_amd64.deb + +Package: osconfig +Version: 1.0.5.2024032701 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 4447 +Maintainer: osconfigsupport@microsoft.com +Description: Azure OSConfig + Azure OSConfig is a modular security configuration stack for Linux Edge devices. OSConfig supports multi-authority device management over Azure and Azure Portal/CLI, GitOps, as well as local management. +Homepage: https://github.com/Azure/azure-osconfig/ +Suggests: aziot-identity-service (>= 1.2.0) +SHA256: f16e5de37a970eb8424208cd5833ae7266f82c3040c12bfd885c99fef3bc123a +Size: 1674236 +Filename: pool/main/o/osconfig/osconfig_1.0.5.2024032701_amd64.deb + +Package: aziot-edge +Version: 1.4.9-1 +Architecture: amd64 +Section: admin +Priority: extra +Installed-Size: 18296 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, aziot-identity-service (= 1.4.3-1), sed +SHA256: 81684e1bdce1c9c3b25c516c86060b01190bc4ea8d872ec603cb2b4768793904 +Size: 4815062 +Filename: pool/main/a/aziot-edge/aziot-edge_1.4.9-1_amd64.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.9-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.9 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 8a027e51a6927327dcd7f0e2ed2904119d3f474f54e1e521405cbbac79e619e2 +Size: 2890 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.9-x64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.29-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.29 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 04076fb2a0203ecd05d1b5933a9c37e5b34e12e4ba0466673435a0ff0d08372f +Size: 2131590 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.29-1_amd64.deb + +Package: azapi2azurerm +Version: 1.2.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 20660 +Maintainer: henglu +Description: A tool to migrate terraform resources from azapi to azurerm +Homepage: https://github.com/Azure/azapi2azurerm +Vendor: none +License: MPL-2.0 +SHA256: 6099cbc085feae459ba885b688a11111c95bfecb321da7a17f593e4b8da3a339 +Size: 6709814 +Filename: pool/main/a/azapi2azurerm/azapi2azurerm-1.2.0-1-amd64.deb + +Package: hibernation-setup-tool +Version: 1.0-8 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 65 +Maintainer: Leandro Pereira +Description: Azure Hibernation Agent + Sets up an Azure VM for hibernation, by creating and maintaining a + swap file with the proper size, setting up bootloader parameters, + etc. +Homepage: https://github.com/microsoft/hibernation-setup-tool/ +Depends: libc6 (>= 2.16) +Suggests: btrfs-progs, xfsprogs, grub2, udev, e2fsprogs, systemd +SHA256: 2282e902a532536d75e032f859081891348a168a40a926502e53f67ae4587926 +Size: 18548 +Filename: pool/main/h/hibernation-setup-tool/hibernation-setup-tool_1.0-8_amd64.deb + +Package: moby-compose +Version: 2.18.1+azure-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 52732 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: c2b7139c88a9c342f5a72497fac0311097d4275069320a7a5322f3c319e88515 +Size: 12061038 +Filename: pool/main/m/moby-compose/moby-compose_2.18.1+azure-ubuntu22.04u2_amd64.deb + +Package: intune-portal +Version: 1.2307.12 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 23338 +Maintainer: Microsoft +Description: Microsoft Intune + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +Depends: libcurl4 (>= 7.16.2), zlib1g (>= 1:1.2.0), libatk1.0-0 (>= 1.12.4), libuuid1 (>= 2.16), msalsdk-dbusclient (>= 1.0), libgtk-3-0 (>= 3.21.4), libgtk-3-0 (>= 3.9.10), libwebkit2gtk-4.0-37 (>= 2.5.3), libstdc++6 (>= 12), gnome-keyring (>= 3.36), libsoup2.4-1 (>= 2.4.0), libjavascriptcoregtk-4.0-18 (>= 2.38.6), libpam0g (>= 0.99.7.1), libx11-6, libglib2.0-0 (>= 2.12.0), libsystemd0, libssl3 (>= 3.0.0~~alpha1), libglib2.0-0 (>= 2.35.8), libsecret-1-0 (>= 0.7), libpango-1.0-0 (>= 1.14.0), libc6 (>= 2.34), libpam-pwquality (>= 1.4.0-2), libsqlite3-0 (>= 3.7.14) +Recommends: microsoft-edge-stable (>= 102) +SHA256: e3d68d9182856d91b4874e376be063d30f4f87bd04aa141bbcb2d6ed80e7bc57 +Size: 5575384 +Filename: pool/main/i/intune-portal/intune-portal_1.2307.12_amd64.deb + +Package: dotnet-hostfxr-7.0 +Version: 7.0.17-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 428 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 7.0.17 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 7.0.17), libc6 +SHA256: e6897c8799aebb36b6e0662435322a53d459632551f6170aea333c3a05d7c706 +Size: 144726 +Filename: pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.17-1_amd64.deb + +Package: azureauth +Version: 0.8.2-5 +Architecture: amd64 +Section: misc +Priority: optional +Installed-Size: 74209 +Maintainer: ES365 Security Experience Team +Description: A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information. +SHA256: 16af522abeaf26d129c2fe85797a1545885a9ca971cffa1d139caae64f8a6bfc +Size: 24114326 +Filename: pool/main/a/azureauth/azureauth_0.8.2-5_amd64.deb + +Package: blobfuse2 +Version: 2.3.2 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 25502 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: c920f6140b12c0e97fcb8157354642ef56f0454b60ecd8c0cb8b9c36144fae12 +Size: 13573340 +Filename: pool/main/b/blobfuse2/blobfuse2_2.3.2_amd64.deb + +Package: dotnet-runtime-7.0 +Version: 7.0.20-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70852 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 7.0.20 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-deps-7.0 (>= 7.0.20), dotnet-hostfxr-7.0 (>= 7.0.20) +SHA256: 71dc3bc863cf11309dc416ed08bbb18c7060ff4f5b6e564ff4c113c7255e9666 +Size: 23203594 +Filename: pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.20-1_amd64.deb + +Package: powershell +Version: 7.2.7-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 187019 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 93612aa09171838e997c85b78f6fe42041fbc73741b9751f975b1e908d6e77f0 +Size: 69457500 +Filename: pool/main/p/powershell/powershell_7.2.7-1.deb_amd64.deb + +Package: msodbcsql18 +Version: 18.2.1.1-1 +Architecture: amd64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: 38bfecba0dfde7fd37c32e958bcf91321e5b7868ef0bd4d123b2f2e8c1252afc +Size: 752844 +Filename: pool/main/m/msodbcsql18/msodbcsql18_18.2.1.1-1_amd64.deb + +Package: moby-engine +Version: 26.1.3-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 106880 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 23c983ee34c62630c5c3fb3ae55d9bac9b76711b5010d0f1611723963bfcbde9 +Size: 35782538 +Filename: pool/main/m/moby-engine/moby-engine_26.1.3-ubuntu22.04u1_amd64.deb + +Package: moby-compose +Version: 2.12.2+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 43912 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 3a0369b51d9e0c6297fc5578e945de7a738af331ec361e20fc61178174677b7d +Size: 10699702 +Filename: pool/main/m/moby-compose/moby-compose_2.12.2+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.107-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 312664 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.107 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.7), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.7), dotnet-apphost-pack-6.0 (>= 6.0.7), dotnet-runtime-6.0 (>= 6.0.7), aspnetcore-targeting-pack-6.0 (>= 6.0.7) +SHA256: 5698bf62dedf1a1ec22304245d131c274e75f494c78a7b387b8b7a142ce28e74 +Size: 78043244 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.107-x64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.205-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 419261 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.205 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.5), dotnet-targeting-pack-8.0 (>= 8.0.5), dotnet-apphost-pack-8.0 (>= 8.0.5), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.5), aspnetcore-targeting-pack-8.0 (>= 8.0.5) +SHA256: a915ce47a5295f101141ba020524fba09c23f344c661edc8702f2545391cc1bd +Size: 110376346 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.205-1_amd64.deb + +Package: azure-functions-core-tools +Version: 3.0.4753-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v3 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools, azure-functions-core-tools-2 +Replaces: azure-functions-core-tools, azure-functions-core-tools-2 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 3e35f04acb96f6139ef831228aa7572b9ecd7504c5a01c0645b7ed6a415e3d9a +Size: 227724024 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4753-1.deb + +Package: moby-containerd-shim-systemd +Version: 0.1.0~beta.1+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 30083 +Maintainer: Microsoft +Description: A containerd shim runtime that uses systemd to monitor runc containers +Homepage: https://github.com/cpuguy83/containerd-shim-systemd-v1 +Depends: libc6 (>= 2.34), systemd (>= 239), moby-containerd (>= 1.6) +Recommends: moby-runc +SHA256: 2692fa622f918d1e270a379f4a0ffbfa1822eb4c62677cd241b23ead7adb2036 +Size: 12695644 +Filename: pool/main/m/moby-containerd-shim-systemd/moby-containerd-shim-systemd_0.1.0~beta.1+azure-ubuntu22.04u1_amd64.deb + +Package: aspnetcore-runtime-7.0 +Version: 7.0.3-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 21339 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-7.0 (>= 7.0.3) +SHA256: d0ef9c1f3798088ed85efd5528038d2f49bd1abfbf925ab1650ee00c259c2bee +Size: 7051750 +Filename: pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.3-x64.deb + +Package: omi +Source: omi +Version: 1.9.0.0 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 4932 +Maintainer: Microsoft Corporation +Description: Open Management Infrastructure + omi server +Depends: libc6 (>= 2.3.6), libpam-runtime (>= 0.79-3) +Provides: omi +SHA256: afefaf8f6a1ae5526848b7a8a22427ec6234aff32395cada35a54b03435faacd +Size: 1917654 +Filename: pool/main/o/omi/omi_1.9.0.0_amd64.deb + +Package: moby-buildx +Version: 0.10.1+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 68426 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 630c30d5b53b63a14317d1368dc27b89f00c4bc3e113f04f5990c3d67e90a7fa +Size: 26765382 +Filename: pool/main/m/moby-buildx/moby-buildx_0.10.1+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.32-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68472 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.32 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.32), dotnet-runtime-deps-6.0 (>= 6.0.32) +SHA256: 67ad6fe9eb22ae6137987fca1e0535f905c5e4221fb7c1857d4aac82813f26df +Size: 22930246 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.32-1_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.24-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68459 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.24 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.24), dotnet-runtime-deps-6.0 (>= 6.0.24) +SHA256: da2ab36b08a57243f18bb74639b7c3d04b208b53cc97fa52a6e7fadbfeb3a76f +Size: 23042886 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.24-1_amd64.deb + +Package: dotnet-hostfxr-8.0 +Version: 8.0.6-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 296 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 8.0.6 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libc6, libgcc1, libstdc++6, dotnet-host (>= 8.0.6) +SHA256: e221e905ed20054696c556bed4140277ea144a864620e09d6c577e0c5b6d23f6 +Size: 108066 +Filename: pool/main/d/dotnet-hostfxr-8.0/dotnet-hostfxr-8.0_8.0.6-1_amd64.deb + +Package: dotnet-apphost-pack-7.0 +Version: 7.0.11-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11281 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 7.0.11 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 0edb21dea4dc5410ef2d5eb293973ad3674cf78a0c2feca897d8b78de2bf1be0 +Size: 3521342 +Filename: pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.11-1_amd64.deb + +Package: aspnetcore-runtime-3.1 +Version: 3.1.31-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 17481 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-3.1 (>= 3.1.31) +SHA256: 90c26a2bd56961ae41a6efcaabb3a0531cddb8f9d160d9a490c1c4863e4a6e9d +Size: 5772724 +Filename: pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.31-x64.deb + +Package: powershell-lts +Version: 7.2.4-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 187001 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 240c3e9e1e8b7d6eb3b54297236c5aea5ede0a28b4cb37701e26526ac1f3a037 +Size: 69430114 +Filename: pool/main/p/powershell-lts/powershell-lts_7.2.4-1.deb_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.414-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 337383 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.414 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.22), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.22), dotnet-apphost-pack-6.0 (>= 6.0.22), dotnet-runtime-6.0 (>= 6.0.22), aspnetcore-targeting-pack-6.0 (>= 6.0.22) +SHA256: e7a6f337270074619018295570ecc0d719a77b2882927da9f5d2b5052f82f198 +Size: 86810418 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.414-1_amd64.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.15-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.15 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 7c7f5051d831f0124013b368e7ffbb1fb67ed4ed80e895537b70b6d14673e338 +Size: 2890 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.15-1_amd64.deb + +Package: dotnet-host +Version: 6.0.33-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 234 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.33 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 1e94f045052dc7beb35a26fe9fe8cbbd1974fa383700bf2f8bb9f30a379a2f9a +Size: 55738 +Filename: pool/main/d/dotnet-host/dotnet-host_6.0.33-1_amd64.deb + +Package: azure-ai-vision-dev-common +Version: 0.13.0~beta.1 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 759 +Maintainer: vision-sdk@microsoft.com +Description: Azure AI Vision Common Components Developer Package +Depends: azure-ai-vision-runtime-common, azure-ai-vision-runtime-common-media +SHA256: d20d401ffd04570d660e9519f01856af426e76e43bb0dc881e02089375f77b1e +Size: 114856 +Filename: pool/main/a/azure-ai-vision-dev-common/azure-ai-vision-dev-common-0.13.0~beta.1-Linux.deb + +Package: moby-buildx +Version: 0.13.1-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 79460 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 9d0f3eb001067278ae5c97def85e1ec51eac59d851abaaf0c2dbf7598755403c +Size: 35753322 +Filename: pool/main/m/moby-buildx/moby-buildx_0.13.1-ubuntu22.04u1_amd64.deb + +Package: azure-ai-vision-dev-image-analysis +Version: 0.11.1~beta.1 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 513 +Maintainer: vision-sdk@microsoft.com +Description: Azure AI Vision Image Analysis Developer Package +Depends: azure-ai-vision-dev-common (= 0.11.1~beta.1), azure-ai-vision-runtime-image-analysis (= 0.11.1~beta.1) +SHA256: 6e6b028987de0f3a3d03868ebdc4bdb403b10a4f83f5f0ccfd4d6b666cfa19e3 +Size: 79986 +Filename: pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.11.1~beta.1-Linux.deb + +Package: dotnet-host +Version: 3.1.29-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 145 +Maintainer: .NET Core Team +Description: Microsoft .NET Core Host - 3.1.29 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://dot.net/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 8808b8db255e6d57ca8335fb14328ff99f5da45443901f2801e15661afdb33be +Size: 32430 +Filename: pool/main/d/dotnet-host/dotnet-host-3.1.29-x64.deb + +Package: intune-portal +Version: 1.2303.10 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 22728 +Maintainer: Microsoft +Description: Microsoft Intune + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.34), libjavascriptcoregtk-4.0-18 (>= 2.38.5), libsoup2.4-1 (>= 2.4.0), libsystemd0, libuuid1 (>= 2.16), libpam0g (>= 0.99.7.1), libglib2.0-0 (>= 2.12.0), libgtk-3-0 (>= 3.21.4), gnome-keyring (>= 3.36), zlib1g (>= 1:1.2.0), libpango-1.0-0 (>= 1.14.0), libpam-pwquality (>= 1.4.0-2), libcurl4 (>= 7.16.2), libsqlite3-0 (>= 3.7.14), libglib2.0-0 (>= 2.35.8), libgtk-3-0 (>= 3.9.10), libwebkit2gtk-4.0-37 (>= 2.5.3), libssl3 (>= 3.0.0~~alpha1), libsecret-1-0 (>= 0.19.1), libstdc++6 (>= 12), msalsdk-dbusclient (>= 1.0), libx11-6 +Recommends: microsoft-edge-stable (>= 102) +SHA256: 63c7f6244022b71aa0714e8638a695bd28ca2adc60de8c72eb11f22678d34c9a +Size: 5417640 +Filename: pool/main/i/intune-portal/intune-portal_1.2303.10_amd64.deb + +Package: aspnetcore-runtime-7.0 +Version: 7.0.13-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 21370 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-7.0 (>= 7.0.13) +SHA256: 8dc6bd1555aa8cab7b1e37434a8ba49e24c1d427cf8cdae4203c3a72f901979e +Size: 7064190 +Filename: pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.13-1_amd64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.203-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 419868 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.203 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.3), dotnet-targeting-pack-8.0 (>= 8.0.3), dotnet-apphost-pack-8.0 (>= 8.0.3), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.3), aspnetcore-targeting-pack-8.0 (>= 8.0.3) +SHA256: 64a74a6cbe6bce4363c8475742334f51d7101f3903977c500e36f96f2ae38a93 +Size: 110251086 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.203-1_amd64.deb + +Package: powershell-preview +Version: 7.4.0-preview.6-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 176662 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 2eeaa3c725e80f22d6aa6147c4d0721be2ed17340fcb706fea47ebe9f0033c33 +Size: 70611474 +Filename: pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.6-1.deb_amd64.deb + +Package: moby-compose +Version: 2.24.7-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 60163 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 4d941462c84a9fa030d76a41b5d79d1ca1c1583da8ecc494a72f26d422dd5829 +Size: 17980090 +Filename: pool/main/m/moby-compose/moby-compose_2.24.7-ubuntu22.04u1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.110-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 313389 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.110 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.10), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.10), dotnet-apphost-pack-6.0 (>= 6.0.10), dotnet-runtime-6.0 (>= 6.0.10), aspnetcore-targeting-pack-6.0 (>= 6.0.10) +SHA256: 675b0ac1cde55eaa4e5b917c32c32678076614f15a28d7854dcdc2f52a8ce652 +Size: 78476464 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.110-x64.deb + +Package: azure-functions-core-tools +Version: 4.0.6280-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: f304a5e9dfe67b349e758423ea1171c329051616bd3ab77cd389f2048a0b3811 +Size: 207694814 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.6280-1_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.22-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11071 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.22 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 860018d9b9d9d59cdaea249e76b894d970cf2084d4cf1f6786f623bcb7c7d378 +Size: 3520576 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.22-1_amd64.deb + +Package: dotnet-hostfxr-3.1 +Version: 3.1.29-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 408 +Maintainer: .NET Core Team +Description: Microsoft .NET Core Host FX Resolver - 3.1.29 3.1.29 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://dot.net/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 3.1.29), libc6 +SHA256: b9c9d07b5cf5d7783b387c67332fcb3356f445a2c21ca54bd15c0f598e5db436 +Size: 120826 +Filename: pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.29-x64.deb + +Package: moby-runc +Version: 1.1.6+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 13384 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: 2bad8f822d32748566945a7ab44e2eb56cf6c902cdc1aead54d6cb8d46295d5d +Size: 6076198 +Filename: pool/main/m/moby-runc/moby-runc_1.1.6+azure-ubuntu22.04u1_amd64.deb + +Package: blobfuse2 +Version: 2.3.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 25475 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: 99e9990459543249be052e92dfc6cad41b542587dae85f8bd1a5f076d1e0dea5 +Size: 13561444 +Filename: pool/main/b/blobfuse2/blobfuse2_2.3.0_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.111-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 313394 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.111 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.11), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.11), dotnet-apphost-pack-6.0 (>= 6.0.11), dotnet-runtime-6.0 (>= 6.0.11), aspnetcore-targeting-pack-6.0 (>= 6.0.11) +SHA256: ffb75e9c46aa5f8bb9eba3adbcb9f4e1e31ea98a47c6cf0deeb7268ff26662cd +Size: 78477024 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.111-x64.deb + +Package: aspnetcore-runtime-7.0 +Version: 7.0.9-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 21357 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-7.0 (>= 7.0.9) +SHA256: 9966a7144980e0c2bb7e0a7d9dcede9248b401f6f25029a42072500831a77fb1 +Size: 7059802 +Filename: pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.9-x64.deb + +Package: moby-compose +Version: 2.18.1+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 52728 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 50e4256c279a4b6ebca4750e6ac777da476426bc0277aa67636504e7a4eccbde +Size: 12063846 +Filename: pool/main/m/moby-compose/moby-compose_2.18.1+azure-ubuntu22.04u1_amd64.deb + +Package: mdatp +Version: 101.23102.0003 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 513085 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, libpcre3, mde-netfilter +SHA256: cc537a5d40f9b62e61722b4b27b0bf6eb6509c3f3cb6604571a50522682a3a1d +Size: 138103404 +Filename: pool/main/m/mdatp/mdatp_101.23102.0003_amd64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.21-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19893 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.21) +SHA256: 9a74c3e3e9c66283bbf52f3cc6706555ed222a77f5adb68be201ecc4577cd04e +Size: 6618446 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.21-1_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.30-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 456 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.30 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.30), libc6 +SHA256: 3554107defc6fbecded273f9378a3bdc06f1cb99051120541b46e333cc092f42 +Size: 143578 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.30-1_amd64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.23-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.23 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 22db54b2b0a7d85c4fd6ddcbd1071cf6690f37fe1f86b2ab1d76605301c297d3 +Size: 2126478 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.23-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.131-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 314789 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.131 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.31), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.31), dotnet-apphost-pack-6.0 (>= 6.0.31), dotnet-runtime-6.0 (>= 6.0.31), aspnetcore-targeting-pack-6.0 (>= 6.0.31) +SHA256: 10d9f8db88d6d15e41ba66c91d437dcf4fc2f91428c42138b3e8457c366a8291 +Size: 78837442 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.131-1_amd64.deb + +Package: powershell-preview +Version: 7.3.0-preview.7-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 126471 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 1c7ddefac0e44b0b275bac572727e239c96f9a84b894890e825fb29b858cbf2f +Size: 47428934 +Filename: pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.7-1.deb_amd64.deb + +Package: libmsquic +Version: 2.2.4 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 12958 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 49362bee26eb819b930058bbb9213086de7558b66c7a79cc0afac7cdbd9e852e +Size: 3959208 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.4_amd64.deb + +Package: azure-functions-core-tools-3 +Version: 3.0.4837-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v3 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools, azure-functions-core-tools-2 +Replaces: azure-functions-core-tools, azure-functions-core-tools-2 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 4a991eb6e48937efcce608f70e0c2357df03d3d85bbe071071a0307b21dfbbc6 +Size: 227788672 +Filename: pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4837-1.deb + +Package: scx +Source: scx +Version: 1.7.0.0 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 7916 +Maintainer: Microsoft Corporation +Description: Microsoft System Center Operations Manager for UNIX/Linux agent + Provides server for Microsoft System Center Operations Manager. +Depends: omi (>= 1.0.8.6) +Provides: scx +SHA256: 07b248e4e4067bd5f1a80fa6087462ca279d12fe6c3a45a5b189b38d511c899c +Size: 2588328 +Filename: pool/main/s/scx/scx-1.7.0-0.universal.x64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.106-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 312663 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.106 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.6), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.6), dotnet-apphost-pack-6.0 (>= 6.0.6), dotnet-runtime-6.0 (>= 6.0.6), aspnetcore-targeting-pack-6.0 (>= 6.0.6) +SHA256: 5d0cb323acfadabde60420dafc2beae59b9c7e50949be88df6c5c4fbfcc8a44e +Size: 77747042 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.106-x64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.118-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 314323 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.118 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.18), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.18), dotnet-apphost-pack-6.0 (>= 6.0.18), dotnet-runtime-6.0 (>= 6.0.18), aspnetcore-targeting-pack-6.0 (>= 6.0.18) +SHA256: c069d7068aa2c3352bedd73ee48d47deae79557bb67cd7a98f079534c067d736 +Size: 78868818 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.118-x64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.26-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19906 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.26) +SHA256: 5533752a86ec434f16bc13b0f5e402bdd754007bb1d869f7da5d86063b96d47e +Size: 6622694 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.26-1_amd64.deb + +Package: dotnet-runtime-7.0 +Version: 7.0.3-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70794 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 7.0.3 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-deps-7.0 (>= 7.0.3), dotnet-hostfxr-7.0 (>= 7.0.3) +SHA256: 872025cfc583a1011dfcab995b870b320c02ac0bb639fef2473da68193d04de1 +Size: 23196546 +Filename: pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.3-x64.deb + +Package: azure-proxy-agent +Version: 1.0.16-0 +Architecture: amd64 +Priority: optional +Installed-Size: 9454 +Maintainer: AzureRT ProxyAgent V Team +Description: [generated from Rust crate azure-proxy-agent] + The Azure Guest Proxy Agent is a daemon that runs on the Azure guest operating + system and provides a proxy for the Azure Fabric Controller to communicate with + the guest operating system. +SHA256: 67e06885d56c52c61ea395748d432a8b7bb141ea87a60b065edc401ff88eedf4 +Size: 2178158 +Filename: pool/main/a/azure-proxy-agent/azure-proxy-agent_1.0.16-0_amd64.deb + +Package: procdump +Version: 1.3-13160 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 6912 +Maintainer: OSS Tooling Dev Team +Description: Sysinternals process dump utility + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +Homepage: https://github.com/Microsoft/ProcDump-for-Linux +Depends: gdb (>= 7.6.1), libc6 +SHA256: 31929586fc7fbffac526aea3586a20eb87fbd8cdcd113ab4681b691d86ea294b +Size: 1130220 +Filename: pool/main/p/procdump/procdump_1.3-13160_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.402-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 336567 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.402 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.10), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.10), dotnet-apphost-pack-6.0 (>= 6.0.10), dotnet-runtime-6.0 (>= 6.0.10), aspnetcore-targeting-pack-6.0 (>= 6.0.10) +SHA256: d054c29f0d6ac3eb208636db5b9c603ef7368c3bd74ab28f678d58017b0f7789 +Size: 86580584 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.402-x64.deb + +Package: libmsquic +Version: 2.4.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 14248 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: e44c7bfebb2fd6016b59c4b789d3a0e91160cd7bcbe38a38fbebba1238edaa1c +Size: 4380104 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.0_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.202-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 320277 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.202 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.4), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.4), dotnet-apphost-pack-6.0 (>= 6.0.4), dotnet-runtime-6.0 (>= 6.0.4), aspnetcore-targeting-pack-6.0 (>= 6.0.4) +SHA256: 9c772c540a3c0f2d381f43e8c957d125bc60eaaac26bc03df64af37c16b295a9 +Size: 80345074 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.202-x64.deb + +Package: dotnet-targeting-pack-7.0 +Version: 7.0.17-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 31138 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 7.0.17 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: f3c50470164be45dad00ed346cf125c467ec2e80817a0abf7515b2a369c0ba65 +Size: 2567994 +Filename: pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.17-1_amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.4895-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 730c784e1cb207ac9dd2055e7beb46d669395c64acdb1c0cf0587123189d51c8 +Size: 158749964 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4895-1.deb + +Package: libmsquic +Version: 2.2.5 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 12958 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 0b353cb782ea545e9d9285544e1e473cc77852064b79131ad059545fd95f5a1b +Size: 3960450 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.5_amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.4736-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 37bc0cdb694b55c1ea99e4c6b92f136e7cf603fcaddebec76d11e44add41146c +Size: 124508616 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4736-1.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.8-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27360 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.8 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 8538163055e1112654548c1ffb2acf2bd54bf73ce25e5aa4594345ef306410c7 +Size: 2117782 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.8-x64.deb + +Package: aadsshlogin-selinux +Version: 1.0.022090001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.3-1), selinux-utils, selinux-policy-default +SHA256: 41e3aa80f822e72b448e2f15c48d526debafdb525f3ad7e045fb91a6f2f1c8d9 +Size: 2218 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.022090001_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.32-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 456 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.32 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.32), libc6 +SHA256: c344e0f1ff054781f3b9a31c7edd1eb3bdeeaec38dee85bfe7c0ce73cee22647 +Size: 143476 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.32-1_amd64.deb + +Package: mdatp +Version: 101.60.05 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 207295 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: curl (>= 7.5), libseccomp2, libuuid1, libatomic1, libc6 (>= 2.23), python3, uuid-runtime, dmidecode, auditd, libselinux1, libfuse2, mde-netfilter, perl +SHA256: 9dc82ebe9bb10197b5286a7e34985ff308f583b719b93f8fdc4e69e2034c649b +Size: 60778376 +Filename: pool/main/m/mdatp/mdatp_101.60.05.amd64.deb + +Package: virtualclient +Version: 1.11.5 +Architecture: amd64 +Maintainer: Virtual Client Team +Description: VirtualClient, the open sourced workload automation. +SHA256: 45d2ac561ea209473e7647cbf18e544574b7a3c1d3b56a33c78709c13993b497 +Size: 44774340 +Filename: pool/main/v/virtualclient/virtualclient_1.11.5_amd64.deb + +Package: aziot-identity-service +Version: 1.5.1-1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 17199 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1), psmisc +SHA256: ba600196eb11c26946380c00cc7517b24877e5c20e6ca8493c68277ded872b16 +Size: 4186936 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.5.1-1_amd64.deb + +Package: dotnet-apphost-pack-3.1 +Version: 3.1.30-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 214 +Maintainer: .NET Core Team +Description: Microsoft.NETCore.App.Host 3.1.30 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 069e6a26225a5e74628c552ab81cfd2e1a3851cb02a9a421dcf77212f7a2ef3b +Size: 42436 +Filename: pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.30-x64.deb + +Package: msopenjdk-11 +Version: 11.0.16-1 +Architecture: amd64 +Section: java +Priority: extra +Installed-Size: 316874 +Maintainer: Microsoft +Description: OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: fonts-dejavu, libx11-6, libxext6, libxi6, libxrender1, libxtst6, libasound2, libfontconfig1, libfreetype6 +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: f5b62099a636f842c0e90a9103c58fabb5c7784c94fd98d44161755b36e260ff +Size: 193647354 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.16-1_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.18-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11071 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.18 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 2263268dd3724b84e315045019c19ea3b12dc90cb12a983f49fdfa0c45aef2f6 +Size: 3520144 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.18-x64.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.1-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.1 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: d50a5c1bd8242f0320d52774d5266d94fae98779f49d9a8a096855d56177c571 +Size: 2890 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.1-x64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.107-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 388322 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.107 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.7), dotnet-targeting-pack-8.0 (>= 8.0.7), dotnet-apphost-pack-8.0 (>= 8.0.7), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.7), aspnetcore-targeting-pack-8.0 (>= 8.0.7) +SHA256: 57e3ccfc6cf88010146199e8402d12ed472b611fb2cdc2ec0a139f846216ee1d +Size: 101768578 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.107-1_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.28-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11075 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.28 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 7a216ea6b9c737fb37280ecbdfa034b75a1afbba50c7607bdebcfb257b20e270 +Size: 3516068 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.28-1_amd64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.200-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 419693 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.200 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.2), dotnet-targeting-pack-8.0 (>= 8.0.2), dotnet-apphost-pack-8.0 (>= 8.0.2), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.2), aspnetcore-targeting-pack-8.0 (>= 8.0.2) +SHA256: f41ae8e4001fd9150303a03df2e133097875111e8dc80bd7758008ad0b3ba057 +Size: 109987030 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.200-1_amd64.deb + +Package: aspnetcore-targeting-pack-7.0 +Version: 7.0.0-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 13091 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-7.0 (>= 7.0.0) +SHA256: 722f7d8e829269206ad71047ae84a13a9061a5d53f3e22fdfdc447eec19016d5 +Size: 1526164 +Filename: pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.0-x64.deb + +Package: azcmagent +Version: 1.34.02440.1130 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 539864450190c5dcf44324c571a7ba99ed9ef4c74a99b9d97859c93213d4e815 +Size: 54823178 +Filename: pool/main/a/azcmagent/azcmagent_1.34.02440.1130_amd64.deb + +Package: moby-buildx +Version: 0.14.1-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 79515 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: eb61e9864094a9e2d4e649bf104ca3261d156ba1ef5358bd8f2f5215ee486b3e +Size: 35917978 +Filename: pool/main/m/moby-buildx/moby-buildx_0.14.1-ubuntu22.04u1_amd64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.29-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11750 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.29) +SHA256: 3be9aab6f80ef5e207ef4019d36230c141695df71b9ab7b5443ac974e78562f8 +Size: 1315522 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.29-1_amd64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.22-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11749 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.22) +SHA256: b96158bd7f48db6917e50449fcadb7e6d154735ec19973410c81da18b4585f4f +Size: 1315894 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.22-1_amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.4704-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 5191940c8b6f64839b27f278880f403af9d5ec7c3d75b82cb7a5ca7047f26d99 +Size: 124467492 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4704-1.deb + +Package: powershell +Version: 7.3.1-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 196786 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: c23b461a443ab87f9c11ce69fb625a01d7fd141f30ca42bec7a86cefed79ebac +Size: 71719252 +Filename: pool/main/p/powershell/powershell_7.3.1-1.deb_amd64.deb + +Package: moby-engine +Version: 20.10.15+azure-1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 95693 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: e8d07aa964db91145083b3e7592478dd907183f371069b50870a64a848b27e58 +Size: 22977812 +Filename: pool/main/m/moby-engine/moby-engine_20.10.15+azure-1_amd64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.6-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19856 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.6) +SHA256: efb398af9fbaacb29513497bc534be63d3df8ab6b392c434336cbf6ca0ca761f +Size: 6604652 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.6-x64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.2-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11723 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.2) +SHA256: 3722d70b879528db6c8c47037c5d0a2e0db429e4092032a613452fe2c84138cf +Size: 1306732 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.2.deb + +Package: moby-compose +Version: 2.23.3-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 58465 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 8df9a72581d8aeeb44ff5e8f85b67a4769b935fa3a7cbb5acf575a823bd543fc +Size: 17631928 +Filename: pool/main/m/moby-compose/moby-compose_2.23.3-ubuntu22.04u1_amd64.deb + +Package: dotnet-runtime-deps-3.1 +Version: 3.1.30-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Core Team +Description: dotnet-runtime-deps-3.1 3.1.30 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +Homepage: https://dot.net/core +Depends: libgcc1, libssl1.0.0 | libssl1.0.2 | libssl1.1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 5aec2ea2a881cb50617647c4aee0aba4618e5f05de385a148a93ca0b9182192b +Size: 2684 +Filename: pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.30-x64.deb + +Package: sysmonforlinux +Version: 1.1.1 +Architecture: amd64 +Installed-Size: 58934 +Maintainer: Sysinternals +Description: A system monitor based on eBPF, ported from Windows, that outputs events to Syslog +Depends: libc6 (>= 2.14), libgcc1 (>= 1:3.0), libstdc++6 (>= 5), libxml2 (>= 2.7.4), sysinternalsebpf (>= 1.1.1) +SHA256: da5104110392ea4362980b2a4794f71c3b99fc37372df645193ba73d68e3243e +Size: 1530018 +Filename: pool/main/s/sysmonforlinux/sysmonforlinux_1.1.1-0_amd64.deb + +Package: msopenjdk-11 +Version: 11.0.18-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 317542 +Maintainer: Microsoft +Description: OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: fonts-dejavu, libx11-6, libxext6, libxi6, libxrender1, libxtst6, libasound2, libfontconfig1, libfreetype6 +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: aa8b4fef36b3105c2da2fa5115c1e6ad1db05059a113a3848e821a26190bbf5d +Size: 194035104 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.18-1_amd64.deb + +Package: dotnet-host +Version: 6.0.10-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.10 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: ec63ccc3628fd4e5e8013bddae353225110503aa7786fd6d9c1509aad2af3f2c +Size: 55874 +Filename: pool/main/d/dotnet-host/dotnet-host-6.0.10-x64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.10-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.10 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 794cbab5578ede2af54c14bef3691bd475f890e034e98465f85c8c93acc2157e +Size: 2812 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.10-x64.deb + +Package: moby-containerd +Version: 1.6.27-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 128996 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 866c04f30dff57b84703a68766dd4c6d5139195078b0dac9334ca821c58902d1 +Size: 45794902 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.27-ubuntu22.04u1_amd64.deb + +Package: dotnet-host +Version: 7.0.18-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 246 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.18 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 0493c60c26c006d79dbe89a07be8b66940bc36b5582bdaefa1f8f17ec380f5a7 +Size: 57326 +Filename: pool/main/d/dotnet-host/dotnet-host_7.0.18-1_amd64.deb + +Package: mdatp +Version: 101.73.77 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 274981 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: curl (>= 7.5), libseccomp2, libuuid1, libatomic1, libc6 (>= 2.23), uuid-runtime, dmidecode, auditd, libselinux1, libfuse2, mde-netfilter +SHA256: 5759eeb478f8225529149dd0891eb9f14d8ba47e8995590890d4de15964649c4 +Size: 110911854 +Filename: pool/main/m/mdatp/mdatp_101.73.77.amd64.deb + +Package: aspnetcore-targeting-pack-7.0 +Version: 7.0.16-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 13098 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-7.0 (>= 7.0.16) +SHA256: a6d61ab94c8f7dcff1813e22bf0315a3e4b571403734efae0e028c93cabfc34d +Size: 1525270 +Filename: pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.16-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.132-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 314800 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.132 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.32), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.32), dotnet-apphost-pack-6.0 (>= 6.0.32), dotnet-runtime-6.0 (>= 6.0.32), aspnetcore-targeting-pack-6.0 (>= 6.0.32) +SHA256: d3b97b0bd4ef02c1b4f80cb8bfc7d7d99f5db5716338de24820aa1e323f878fb +Size: 78849198 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.132-1_amd64.deb + +Package: dotnet-host +Version: 6.0.26-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.26 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: febef9893a1eaf4432e06539d94636fcb655ec05fc3c3c95ae82dfc66f311071 +Size: 55844 +Filename: pool/main/d/dotnet-host/dotnet-host_6.0.26-1_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.24-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.24 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.24), libc6 +SHA256: 78a20e961d0562c05c79ed809636535c594f3cfeb18b9b662d7768757bd7c8b9 +Size: 142386 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.24-1_amd64.deb + +Package: msalsdk-dbusclient +Version: 1.0.1 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 34 +Maintainer: Identity Client Linux Team +Description: Microsoft Authentication Library cross platform + Dbus client for talking to microsoft-identity-broker +Homepage: https://github.com/AzureAD/microsoft-authentication-library-for-cpp +Depends: microsoft-identity-broker (>= 1.2), libc6 (>= 2.14), libgcc-s1 (>= 3.0), libsdbus-c++1 (>= 1.1.0), libstdc++6 (>= 6) +SHA256: 0153eb3710a35c6cdada01844cfd18ae55de12023a02396b4954eda8a6f65012 +Size: 9278 +Filename: pool/main/m/msalsdk-dbusclient/msalsdk-dbusclient_1.0.1_amd64.deb + +Package: dotnet-hostfxr-8.0 +Version: 8.0.4-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 296 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 8.0.4 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libc6, libgcc1, libstdc++6, dotnet-host (>= 8.0.4) +SHA256: 2f7c451e45598c7d085131bb2327314526eac6fa46a2cdff6e879b3371145e3e +Size: 108082 +Filename: pool/main/d/dotnet-hostfxr-8.0/dotnet-hostfxr-8.0_8.0.4-1_amd64.deb + +Package: dotnet-runtime-8.0 +Version: 8.0.5-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70242 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 8.0.5 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-8.0 (>= 8.0.5), dotnet-runtime-deps-8.0 (>= 8.0.5) +SHA256: 368010c2157648c9c7c5c06be3f8a7e279bda2a7ed8d6574bd5ab4ecfd7a9c6a +Size: 23052102 +Filename: pool/main/d/dotnet-runtime-8.0/dotnet-runtime-8.0_8.0.5-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.108-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 312667 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.108 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.8), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.8), dotnet-apphost-pack-6.0 (>= 6.0.8), dotnet-runtime-6.0 (>= 6.0.8), aspnetcore-targeting-pack-6.0 (>= 6.0.8) +SHA256: 06d2325a3a1310f231bbbf0d1f4428fd71934e0b448fb30a458f5a76235b3fa0 +Size: 78002896 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.108-x64.deb + +Package: aspnetcore-targeting-pack-7.0 +Version: 7.0.17-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 13099 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-7.0 (>= 7.0.17) +SHA256: 9ae2aad8fb62ff4e169dac72b8318b00135dae9c74d6cdc39d17b716d262c768 +Size: 1517102 +Filename: pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.17-1_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.11-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11071 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.11 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 9c5c3a3816280a63c5635c447b71b110af8ed95834befee9205e72ad84e37b3b +Size: 3524114 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.11-x64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.5-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68401 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.5 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.5), dotnet-runtime-deps-6.0 (>= 6.0.5) +SHA256: d62ec2da2962a43a5f0dba56da7473a91a592f5bd93c660a73f4485ce92e9f70 +Size: 22586332 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.5-x64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.204-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 419884 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.204 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.4), dotnet-targeting-pack-8.0 (>= 8.0.4), dotnet-apphost-pack-8.0 (>= 8.0.4), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.4), aspnetcore-targeting-pack-8.0 (>= 8.0.4) +SHA256: e9513998246d006ea9c701b0a201a9d165a72557bc298c8c0e8768ef32dcff6e +Size: 110282126 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.204-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.126-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 314398 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.126 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.26), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.26), dotnet-apphost-pack-6.0 (>= 6.0.26), dotnet-runtime-6.0 (>= 6.0.26), aspnetcore-targeting-pack-6.0 (>= 6.0.26) +SHA256: 4be73a764122fcee52e843e65769f4e500da930f62179c548c2147f3fb8eaf3e +Size: 78946230 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.126-1_amd64.deb + +Package: dotnet-runtime-7.0 +Version: 7.0.2-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70793 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 7.0.2 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-deps-7.0 (>= 7.0.2), dotnet-hostfxr-7.0 (>= 7.0.2) +SHA256: 6df99d1c834135ebb4586f8a416716cc691285d5528fc2d08075ec060227016b +Size: 23188610 +Filename: pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.2-x64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.20-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.20 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 4fab6a262de18f8b64e57dd27c5a6acd9bf769a233561ea50f9ecd5013581fc8 +Size: 2796 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.20-x64.deb + +Package: dotnet-host +Version: 6.0.7-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.7 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 59f7084cb3930657e8e08dfb41bb360553a7820fac22fe19217dfe678c367a30 +Size: 55714 +Filename: pool/main/d/dotnet-host/dotnet-host-6.0.7-x64.deb + +Package: dotnet-apphost-pack-7.0 +Version: 7.0.3-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11277 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 7.0.3 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: c6bbe37dd7bbeccff48a6b65ab692f6d778ae9dc5af29816541a54682df2f35e +Size: 3524590 +Filename: pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.3-x64.deb + +Package: moby-engine +Version: 20.10.25+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 86966 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 99eb55e736ac84608ca0239b204e4eada80050f7293922f6286ec796234005c9 +Size: 22590970 +Filename: pool/main/m/moby-engine/moby-engine_20.10.25+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.306-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 331330 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.306 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.11), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.11), dotnet-apphost-pack-6.0 (>= 6.0.11), dotnet-runtime-6.0 (>= 6.0.11), aspnetcore-targeting-pack-6.0 (>= 6.0.11) +SHA256: 41eec4c727cb18b1f14cf442927e66009b8ac56c4c2d003bcff8ff5871845862 +Size: 85091884 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.306-x64.deb + +Package: libdeliveryoptimization-dev +Version: 1.1.0 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 45 +Maintainer: docloss@microsoft.com +Description: The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux + # Delivery Optimization Client + . + This repository contains source code for the following DO components: + . + * Agent + * SDK + * Plug-ins + . + ## Agent + . + Delivery Optimization HTTP downloader with Microsoft Connected Cache support. + . + ## SDK + . + Library for enabling inter-process communication (IPC) with deliveryoptimization clients + through native C++ code. + . + ## Plug-ins + . + Add-on that enables APT downloads to go through Delivery Optimization Agent. + It is a required component only on devices that must download APT packages via a Microsoft Connected Cache instance. + During install, it replaces itself as APT's HTTP(S) transport mechanism, thus receiving all APT downloads requests. + . + ## Getting Started + . + Follow the development machine setup on each desktop you'd like to use. + . + ### Development Machine Setup + . + Clone the repository locally from terminal: + . + ```markdown + > cd (to working directory of your choosing) + > git clone https://github.com/microsoft/do-client + ``` + . + Run the appropriate bootstrapper depending on development machine platform: + . + ```markdown + > cd build/bootstrap + ``` + . + ### Building DO client components + **NOTICE:** + **If you are modifying this project and distributing your own custom build, please modify the DO_BUILDER_IDENTIFIER cmake variable located in https://github.com/microsoft/do-client/blob/main/CMakeLists.txt** + . + After setting up your development machine, navigate back into the project root + . + ```markdown + > cd + ``` + . + We provide an easy-to-use python script for building our client components from the project root, you can inspect build.py for additional build flags + On debian-based systems, run this command to build the client and package it as a .deb file + . + ```markdown + > python3 build/build.py --project agent --package-for deb + ``` + . + Run this command to build the sdk + . + ```markdown + > python3 build/build.py --project sdk --package-for deb + ``` + . + In order to build the plugin, you must build & install the sdk, an easy way to do this is to install the the packages you produced in the previous two steps + . + Navigate to the build output directory for the agent and install the agent package + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + ``` + . + The sdk produces a runtime and development package, in this case you'll want to install both + Navigate to build output directory for the sdk and install both packages + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + ``` + . + With the sdk installed, you can now build the plugin by navigating back to the project root + . + ```markdown + > cd + > python3 build/build.py --project plugin-apt --package-for deb + ``` + . + At this point, you should have built and packaged all components + . + ### Installing DO Client components + . + There are a couple ways for you to install the DO client components + . + 1. If you have built the component into a debian package, you can simply find the debian package and install like detailed above. + This will handle installing to the appropriate paths, and also the necessary setup of DO user/group permissions needed for DO-agent. + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + > cd /tmp/build-deliveryoptimization-plugin-apt/linux-debug/ + > sudo apt-get install ./deliveryoptimization-plugin-apt*.deb + ``` + . + 2. If you build and install using cmake, or through some other custom means, be sure to setup the DO user/groups correctly in your installation. + You can reference this [script](https://github.com/microsoft/do-client/blob/main/client-lite/build/postinst.in.sh) to see how to setup the DO user/group and install DO as a daemon. + . + ### Testing DO Client components + . + As guidance, please ensure proper code coverage for project contributions + Unit tests for the agent and sdk are produced as a part of the above build command, you can find them in the build output directory + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/client-lite/test + ``` + . + Our tests utilize the [GTest](https://github.com/google/googletest) unit testing framework, which supports test filtering via command line + You can run all agent tests by running + . + ```markdown + > ./deliveryoptimization-agent-tests + ``` + . + You can filter for specific tests as well, reference the GTest documentation for filtering rules and syntax + ```markdown + > sudo ./deliveryoptimization-agent-tests --gtest_filter=DownloadManagerTests* + ``` + . + The test executable for the SDK is located in the sdk build output as well + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/sdk-cpp/tests + ``` + . + The sdk tests expect a running do-agent, you can either manually run the agent executable from its build output or install the agent package as you may have done while building the plugin + You can run the sdk tests just like the agent tests + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests + ``` + . + And filter them similarly + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests --gtest_filter=DownloadTests* + ``` + . + ## Support + . + The APT plugin component is currently in a **Public Preview** state. During this phase, it will be + supported for 90 days beyond the release date of a new release. At the end of the 90 day window, + we will not guarantee support for the previous version. Please plan to migrate to a newer release + within that 90-day window to avoid any disruptions. + . + ## Filing a Bug + . + Please file a [GitHub Issue](https://github.com/microsoft/do-client/issues) to ensure all issues are + tracked appropriately. + . + ## Build status + . + #### Ubuntu 18.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=45&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=46&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=47&branchName=develop) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + #### Ubuntu 20.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + #### Debian 10 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + ### Windows 10/11 + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20Windows%2010%20x64?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=59&branchName=develop) | + . + ### MacOS + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20MacOS%20X64?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=60&branchName=develop) | + . + ## Contact + . + Directly contact us: +Homepage: https://github.com/microsoft/do-client +Depends: libdeliveryoptimization +SHA256: 5d8dc13a0dcd94cd65c83cd8dfd255bcde7ce49df736dca9fb77bc484af8dd9b +Size: 9352 +Filename: pool/main/libd/libdeliveryoptimization-dev/libdeliveryoptimization-dev_1.1.0_amd64.deb + +Package: moby-compose +Version: 2.11.1+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 43500 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 6ecdb1c2c6a44847576f383805218a260d3af9ec35a29fbe8673d67c63fee6c6 +Size: 10602978 +Filename: pool/main/m/moby-compose/moby-compose_2.11.1+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.11-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.11 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 298ca20f667539f0447ce70b602175c5a43667e4df2a5918850e38be70d93e74 +Size: 2890 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.11-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.318-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 331573 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.318 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.23), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.23), dotnet-apphost-pack-6.0 (>= 6.0.23), dotnet-runtime-6.0 (>= 6.0.23), aspnetcore-targeting-pack-6.0 (>= 6.0.23) +SHA256: f02764143bd8a171bc1120364900df226c903e53dfd351c8e45a5d7b1bec2653 +Size: 85272970 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.318-1_amd64.deb + +Package: moby-buildx +Version: 0.16.1-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 80003 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: f50387a41b5b5444a3c2e0ea633f4ce139ad6ba9ceb28191fba46134afe8d346 +Size: 36184882 +Filename: pool/main/m/moby-buildx/moby-buildx_0.16.1-ubuntu22.04u1_amd64.deb + +Package: dotnet-host +Version: 6.0.20-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.20 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: a5dfd0e6fa48287c827a3370896c76afadf82a75696447809ee2456d71e30890 +Size: 55820 +Filename: pool/main/d/dotnet-host/dotnet-host-6.0.20-x64.deb + +Package: dotnet-hostfxr-8.0 +Version: 8.0.3-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 296 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 8.0.3 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libc6, libgcc1, libstdc++6, dotnet-host (>= 8.0.3) +SHA256: 897a8f1867a81a14e71c5013c36990807015c8e8a207ba7df955845e874341d5 +Size: 108022 +Filename: pool/main/d/dotnet-hostfxr-8.0/dotnet-hostfxr-8.0_8.0.3-1_amd64.deb + +Package: moby-compose +Version: 2.24.5-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 60088 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 54051f0e2f63ccd72a9fafc66ec1ad966e5ad31574abd866322cb8961e8466be +Size: 17951856 +Filename: pool/main/m/moby-compose/moby-compose_2.24.5-ubuntu22.04u1_amd64.deb + +Package: libmsquic +Version: 2.2.6 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 12958 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: b33a4a2e160def388bed35cf88c98f4e6082f39cedf2d7cd78a53792da12f993 +Size: 3958116 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.6_amd64.deb + +Package: powershell-lts +Version: 7.2.17-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 168907 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 338f97915d196f80faa721bf814d72dd791fa97f557435c2ace6284240cadd90 +Size: 68351270 +Filename: pool/main/p/powershell-lts/powershell-lts_7.2.17-1.deb_amd64.deb + +Package: azure-functions-core-tools-3 +Version: 3.0.5542-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: ba44b9921151fbb2d63aedda202f4ca91a3dab6c7969377bba43fc0418959223 +Size: 228408814 +Filename: pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.5542-1_amd64.deb + +Package: msodbcsql18 +Version: 18.1.2.1-1 +Architecture: amd64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: ecdc984603e67d6563dcf800dd6bc4705e058a4306354998f1e0caff9753ab95 +Size: 751978 +Filename: pool/main/m/msodbcsql18/msodbcsql18_18.1.2.1-1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.309-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 367144 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.309 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.12), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.12), dotnet-runtime-7.0 (>= 7.0.12), dotnet-targeting-pack-7.0 (>= 7.0.12), aspnetcore-runtime-7.0 (>= 7.0.12) +SHA256: f3a9e3fe50a489fed2d245de896f015ddad0bccd8de94f7fc471711327e272fc +Size: 96629046 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.309-1_amd64.deb + +Package: sysmonforlinux +Version: 1.3.0 +Architecture: amd64 +Installed-Size: 58934 +Maintainer: Sysinternals +Description: A system monitor based on eBPF, ported from Windows, that outputs events to Syslog +Depends: libc6 (>= 2.14), libgcc1 (>= 1:3.0), libstdc++6 (>= 5), libxml2 (>= 2.7.4), libssl-dev, sysinternalsebpf (>= 1.2.0) +SHA256: f79ea8c2165edf2d067e46b61a804eaa87711071d3f307f62024a4cbdc8065ac +Size: 1772790 +Filename: pool/main/s/sysmonforlinux/sysmonforlinux_1.3.0_amd64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.400-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 387251 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.400 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.8), dotnet-targeting-pack-8.0 (>= 8.0.8), dotnet-apphost-pack-8.0 (>= 8.0.8), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.8), aspnetcore-targeting-pack-8.0 (>= 8.0.8) +SHA256: 6aa6359cb5fc5a57d3b64ed241cceb76f9a2b6a20f73aa3fa38fb85ccef873a2 +Size: 99097326 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.400-1_amd64.deb + +Package: libmsquic +Version: 1.9.1 +Architecture: amd64 +Section: default +Priority: extra +Installed-Size: 3728 +Maintainer: <@9d58bd1cab7b> +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Provides: libmsquic.so +Vendor: none +License: MIT +SHA256: 005fa43baa219c99f3dbd5390570f7784ad57a665ee75e526dd23a3c1ef2cfd7 +Size: 773500 +Filename: pool/main/libm/libmsquic/libmsquic_1.9.1_amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.5455-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: a03559293cee67ac10a13945b29455ec89dab3cedc31a832eb3b9e6f26360c32 +Size: 157973936 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5455-1.deb + +Package: moby-compose +Version: 2.9.0+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 25772 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: c595310338db18247981055c710e3ad524b433273eb0ef8d256413c2af74b358 +Size: 7142574 +Filename: pool/main/m/moby-compose/moby-compose_2.9.0+azure-ubuntu22.04u1_amd64.deb + +Package: msodbcsql17 +Version: 17.10.6.1-1 +Architecture: amd64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: 72972aa0054ec3a11f380458b501af5a5fbd4da471ff727ff6d8ecb515001a6c +Size: 746304 +Filename: pool/main/m/msodbcsql17/msodbcsql17_17.10.6.1-1_amd64.deb + +Package: libmsquic +Version: 2.4.3 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 13822 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 5778534b17f3e0c3a90bef7010c70a49edfc9629b866b7bedc7bfa8caca4bc87 +Size: 4220490 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.3_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.313-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 331500 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.313 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.18), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.18), dotnet-apphost-pack-6.0 (>= 6.0.18), dotnet-runtime-6.0 (>= 6.0.18), aspnetcore-targeting-pack-6.0 (>= 6.0.18) +SHA256: 4d74db683c8cb69367f466c95fd83b71ffbfc1e7b6b3b92ee3fddd6297d170dd +Size: 85182878 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.313-x64.deb + +Package: moby-cli +Version: 20.10.25+azure-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 50209 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: cf1ec3d2a262445ffbb2cfdf891d7d5bb5fc2278e797eab034a8e9b7ab926251 +Size: 10835016 +Filename: pool/main/m/moby-cli/moby-cli_20.10.25+azure-ubuntu22.04u2_amd64.deb + +Package: msopenjdk-11 +Version: 11.0.20-2 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 317895 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 11 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: f7dd1d44a24e2a88a71847a864c6f39e32154f2a7703c30a1f2d1002566dd411 +Size: 166897458 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20-2_amd64.deb + +Package: dotnet-runtime-3.1 +Version: 3.1.32-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 71237 +Maintainer: .NET Core Team +Description: Microsoft .NET Core Runtime - 3.1.32 Microsoft.NETCore.App 3.1.32 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://dot.net/core +Depends: dotnet-hostfxr-3.1 (>= 3.1.32), dotnet-runtime-deps-3.1 (>= 3.1.32) +SHA256: 8f8b6409628fc252fa9ced4e4cc0e1d64cbdb4e383f689a146e1e215e5bb6aa6 +Size: 21871538 +Filename: pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.32-x64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.102-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 312463 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.102 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.2), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.2), dotnet-apphost-pack-6.0 (>= 6.0.2), dotnet-runtime-6.0 (>= 6.0.2), aspnetcore-targeting-pack-6.0 (>= 6.0.2) +SHA256: 8392b43e50399f3ecb3bbcf3722dc0651d603fad91ee023a93f44249263ecec1 +Size: 78141664 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.102-x64.deb + +Package: intune-portal +Version: 1.2302.9 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 18799 +Maintainer: Microsoft +Description: Microsoft Intune + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +Depends: libc6 (>= 2.34), libwebkit2gtk-4.0-37 (>= 2.5.3), libsqlite3-0 (>= 3.7.14), libssl3 (>= 3.0.0~~alpha1), gnome-keyring (>= 3.36), libgtk-3-0 (>= 3.21.4), libsoup2.4-1 (>= 2.4.0), libstdc++6 (>= 12), libx11-6, libatk1.0-0 (>= 1.12.4), libjavascriptcoregtk-4.0-18 (>= 2.38.4), libsystemd0, zlib1g (>= 1:1.2.0), msalsdk-dbusclient (>= 1.0), libpam0g (>= 0.99.7.1), libglib2.0-0 (>= 2.12.0), libcurl4 (>= 7.16.2), libuuid1 (>= 2.16), libsecret-1-0 (>= 0.19.1), libpango-1.0-0 (>= 1.14.0), libpam-pwquality (>= 1.4.0-2), libgtk-3-0 (>= 3.9.10), libglib2.0-0 (>= 2.35.8) +Recommends: microsoft-edge-stable (>= 102) +SHA256: 8fe812f146f2fc1b0e282b9895eca284403026097279614f8321bb3b6fbc20e6 +Size: 3369292 +Filename: pool/main/i/intune-portal/intune-portal_1.2302.9_amd64.deb + +Package: moby-engine +Version: 26.1.2-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 106880 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: b965b0f0d95a651f27e2d2023b393f08514356c108994d332ef678b9e4cb5adf +Size: 35776462 +Filename: pool/main/m/moby-engine/moby-engine_26.1.2-ubuntu22.04u1_amd64.deb + +Package: dotnet-host +Version: 6.0.32-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.32 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: bf97bb67f4881da5b671a4c03106b5bb908bfd4276de272f44ffeaaef31c5b10 +Size: 55730 +Filename: pool/main/d/dotnet-host/dotnet-host_6.0.32-1_amd64.deb + +Package: powershell +Version: 7.3.3-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 196866 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 40bee3deb9ac71dfd86a7dbf2f2bdcb8d039fa454dc9d705d579e4957194fcd4 +Size: 71643662 +Filename: pool/main/p/powershell/powershell_7.3.3-1.deb_amd64.deb + +Package: moby-compose +Version: 2.21.0-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 59364 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: faa30ef8d4b9338eda43bfcee15212297749684ec90238e4b0e8c48b9d5c61c0 +Size: 17815092 +Filename: pool/main/m/moby-compose/moby-compose_2.21.0-ubuntu22.04u1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.115-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 313863 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.115 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.15), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.15), dotnet-apphost-pack-6.0 (>= 6.0.15), dotnet-runtime-6.0 (>= 6.0.15), aspnetcore-targeting-pack-6.0 (>= 6.0.15) +SHA256: 75839c38082c6a12f50210010f3db9c1c7570853664b5ae31806835b12e4936e +Size: 78668378 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.115-x64.deb + +Package: aspnetcore-targeting-pack-7.0 +Version: 7.0.3-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 13092 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-7.0 (>= 7.0.3) +SHA256: 2252e98ccca6ed8790f8007dd8118f8999d6b4ca7be41ca3bf46fc0f8fd66f22 +Size: 1518038 +Filename: pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.3-x64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.27-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11749 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.27) +SHA256: 41cce92f26651c85af77188d6c2cde9b4000f53000e60033acbc5057c0188885 +Size: 1315806 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.27-1_amd64.deb + +Package: mdatp +Version: 101.98.64 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 311625 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, mde-netfilter +SHA256: 147bab5f68ee0bad8b2eec5dd67bf10db5ee75bcc867902d63ad39b706e351ab +Size: 120076756 +Filename: pool/main/m/mdatp/mdatp_101.98.64.amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.29-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68486 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.29 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.29), dotnet-runtime-deps-6.0 (>= 6.0.29) +SHA256: a2a6a50d5488bcd9d26cbc05b88778f153737a14b17550c26c8e8bf900b2788f +Size: 23114528 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.29-1_amd64.deb + +Package: moby-buildx +Version: 0.12.1-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 75206 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 91cb6c0b4bb89e4acc95eff8277547fb188d4977ecf59eab98fec629f75f785c +Size: 34089934 +Filename: pool/main/m/moby-buildx/moby-buildx_0.12.1-ubuntu22.04u1_amd64.deb + +Package: moby-compose +Version: 2.24.6-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 60129 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: bdc6704a9644d72c277e333042693fd439f587322800586ecebf7685c396ab80 +Size: 17966596 +Filename: pool/main/m/moby-compose/moby-compose_2.24.6-ubuntu22.04u1_amd64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.103-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 389108 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.103 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.3), dotnet-targeting-pack-8.0 (>= 8.0.3), dotnet-apphost-pack-8.0 (>= 8.0.3), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.3), aspnetcore-targeting-pack-8.0 (>= 8.0.3) +SHA256: 053a6180778d76b07d379d7279583a5d4c25707a813bfcbf3c51b08e88baf036 +Size: 101839910 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.103-1_amd64.deb + +Package: libdeliveryoptimization +Version: 1.1.0 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 1513 +Maintainer: docloss@microsoft.com +Description: The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux + # Delivery Optimization Client + . + This repository contains source code for the following DO components: + . + * Agent + * SDK + * Plug-ins + . + ## Agent + . + Delivery Optimization HTTP downloader with Microsoft Connected Cache support. + . + ## SDK + . + Library for enabling inter-process communication (IPC) with deliveryoptimization clients + through native C++ code. + . + ## Plug-ins + . + Add-on that enables APT downloads to go through Delivery Optimization Agent. + It is a required component only on devices that must download APT packages via a Microsoft Connected Cache instance. + During install, it replaces itself as APT's HTTP(S) transport mechanism, thus receiving all APT downloads requests. + . + ## Getting Started + . + Follow the development machine setup on each desktop you'd like to use. + . + ### Development Machine Setup + . + Clone the repository locally from terminal: + . + ```markdown + > cd (to working directory of your choosing) + > git clone https://github.com/microsoft/do-client + ``` + . + Run the appropriate bootstrapper depending on development machine platform: + . + ```markdown + > cd build/bootstrap + ``` + . + ### Building DO client components + **NOTICE:** + **If you are modifying this project and distributing your own custom build, please modify the DO_BUILDER_IDENTIFIER cmake variable located in https://github.com/microsoft/do-client/blob/main/CMakeLists.txt** + . + After setting up your development machine, navigate back into the project root + . + ```markdown + > cd + ``` + . + We provide an easy-to-use python script for building our client components from the project root, you can inspect build.py for additional build flags + On debian-based systems, run this command to build the client and package it as a .deb file + . + ```markdown + > python3 build/build.py --project agent --package-for deb + ``` + . + Run this command to build the sdk + . + ```markdown + > python3 build/build.py --project sdk --package-for deb + ``` + . + In order to build the plugin, you must build & install the sdk, an easy way to do this is to install the the packages you produced in the previous two steps + . + Navigate to the build output directory for the agent and install the agent package + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + ``` + . + The sdk produces a runtime and development package, in this case you'll want to install both + Navigate to build output directory for the sdk and install both packages + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + ``` + . + With the sdk installed, you can now build the plugin by navigating back to the project root + . + ```markdown + > cd + > python3 build/build.py --project plugin-apt --package-for deb + ``` + . + At this point, you should have built and packaged all components + . + ### Installing DO Client components + . + There are a couple ways for you to install the DO client components + . + 1. If you have built the component into a debian package, you can simply find the debian package and install like detailed above. + This will handle installing to the appropriate paths, and also the necessary setup of DO user/group permissions needed for DO-agent. + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + > cd /tmp/build-deliveryoptimization-plugin-apt/linux-debug/ + > sudo apt-get install ./deliveryoptimization-plugin-apt*.deb + ``` + . + 2. If you build and install using cmake, or through some other custom means, be sure to setup the DO user/groups correctly in your installation. + You can reference this [script](https://github.com/microsoft/do-client/blob/main/client-lite/build/postinst.in.sh) to see how to setup the DO user/group and install DO as a daemon. + . + ### Testing DO Client components + . + As guidance, please ensure proper code coverage for project contributions + Unit tests for the agent and sdk are produced as a part of the above build command, you can find them in the build output directory + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/client-lite/test + ``` + . + Our tests utilize the [GTest](https://github.com/google/googletest) unit testing framework, which supports test filtering via command line + You can run all agent tests by running + . + ```markdown + > ./deliveryoptimization-agent-tests + ``` + . + You can filter for specific tests as well, reference the GTest documentation for filtering rules and syntax + ```markdown + > sudo ./deliveryoptimization-agent-tests --gtest_filter=DownloadManagerTests* + ``` + . + The test executable for the SDK is located in the sdk build output as well + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/sdk-cpp/tests + ``` + . + The sdk tests expect a running do-agent, you can either manually run the agent executable from its build output or install the agent package as you may have done while building the plugin + You can run the sdk tests just like the agent tests + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests + ``` + . + And filter them similarly + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests --gtest_filter=DownloadTests* + ``` + . + ## Support + . + The APT plugin component is currently in a **Public Preview** state. During this phase, it will be + supported for 90 days beyond the release date of a new release. At the end of the 90 day window, + we will not guarantee support for the previous version. Please plan to migrate to a newer release + within that 90-day window to avoid any disruptions. + . + ## Filing a Bug + . + Please file a [GitHub Issue](https://github.com/microsoft/do-client/issues) to ensure all issues are + tracked appropriately. + . + ## Build status + . + #### Ubuntu 18.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=45&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=46&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=47&branchName=develop) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + #### Ubuntu 20.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + #### Debian 10 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + ### Windows 10/11 + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20Windows%2010%20x64?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=59&branchName=develop) | + . + ### MacOS + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20MacOS%20X64?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=60&branchName=develop) | + . + ## Contact + . + Directly contact us: +Homepage: https://github.com/microsoft/do-client +Depends: deliveryoptimization-agent, libc6 (>= 2.34), libgcc-s1 (>= 3.0), libstdc++6 (>= 11) +SHA256: 44d7da35c5532eb51f26c42fdef2695c47b7705ce243b71d26d468a75c01092a +Size: 154620 +Filename: pool/main/libd/libdeliveryoptimization/libdeliveryoptimization_1.1.0_amd64.deb + +Package: dotnet-apphost-pack-7.0 +Version: 7.0.4-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11281 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 7.0.4 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: a29731b3eb2fbc979483e03413bba8cc3caa6bf5250e7a141f4eb68d00dcca60 +Size: 3523150 +Filename: pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.4-x64.deb + +Package: msopenjdk-21 +Version: 21.0.3-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 353204 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 21 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 54f93d4bc81bdd12862d6e5e7e5b44e0236ead8163e4eb67024bf38bb8b55388 +Size: 176592194 +Filename: pool/main/m/msopenjdk-21/msopenjdk-21_21.0.3-1_amd64.deb + +Package: procdump +Version: 2.2-17219 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 10747 +Maintainer: OSS Tooling Dev Team +Description: Sysinternals process dump utility + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +Homepage: https://github.com/Microsoft/ProcDump-for-Linux +Depends: gdb (>= 7.6.1),libc6 +SHA256: 3c7d9ee6832a137f4f0a331bc0c9e002f544df6f90c38f878203432e70f78320 +Size: 1649314 +Filename: pool/main/p/procdump/procdump_2.2-17219_amd64.deb + +Package: aziot-identity-service +Version: 1.4.4-1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 18782 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 3.3), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1) +SHA256: fe799ccae3807314ab287d8be60548a740c9a31d8330bdcf33a37182d322e28c +Size: 4454634 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.4.4-1_amd64.deb + +Package: msopenjdk-11 +Version: 11.0.23-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 329635 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 11 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 94a2a7d4f100f44017c4b5acef10754e588b298bffbe6ef88d6b0386d54e3dcf +Size: 169307270 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.23-1_amd64.deb + +Package: moby-engine +Version: 20.10.17+azure-ubuntu22.04u3 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 97682 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: ff04583dd49e171351885fa4ae96ef1329fc54008e61306f460b04114545d7ad +Size: 23208326 +Filename: pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu22.04u3_amd64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.11-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19868 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.11) +SHA256: 5b0d4eb3d443b454fde34563054c0edf602f60fc3ddde753a2d21db4259df218 +Size: 6608208 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.11-x64.deb + +Package: aziot-edge +Version: 1.5.0-1 +Architecture: amd64 +Section: admin +Priority: extra +Installed-Size: 17212 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, psmisc, sed, aziot-identity-service (= 1.5.0-1) +SHA256: f64a01cf6733a1c675e166f783cf96aea4fd30830712a7624016d85c308a5f86 +Size: 4464464 +Filename: pool/main/a/aziot-edge/aziot-edge_1.5.0-1_amd64.deb + +Package: microsoft-identity-broker +Source: microsoft-identity-broker +Version: 1.4.1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 86504 +Maintainer: Microsoft Identity +Description: microsoft-identity-broker + Microsoft Authentication Broker for Linux. +Conflicts: msft-identity-broker +Depends: default-jre, systemd, dbus-session-bus, dbus-system-bus, gnome-keyring +Recommends: microsoft-identity-diagnostics +Provides: msft-identity-broker +Replaces: msft-identity-broker +SHA256: c8fa536dc9e5ead95b894ab0e80c8c9dc6a1c762bd6ba4fa68fe5867cb7f2a76 +Size: 79751992 +Filename: pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.4.1_amd64.deb + +Package: azcmagent +Version: 1.37.02533.1281 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 875f178e33f561bd97213ef0eeca89b826ea44de3a5222eeac76e83c03e8a98c +Size: 58574106 +Filename: pool/main/a/azcmagent/azcmagent_1.37.02533.1281_amd64.deb + +Package: dotnet-targeting-pack-8.0 +Version: 8.0.5-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 36082 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 8.0.5 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 1d7254fd33e9229ea442ef4cfbd439304705aca57c48b0bb9c9f849cf0ce6f07 +Size: 2800578 +Filename: pool/main/d/dotnet-targeting-pack-8.0/dotnet-targeting-pack-8.0_8.0.5-1_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.7-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11066 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.7 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: c267904d0bfcdd06c48b26ca377b1d4cbe1dad8ab24b663809b19c33369c2995 +Size: 3521558 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.7-x64.deb + +Package: azure-ai-vision-runtime-common +Version: 0.11.1~beta.1 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 2634 +Maintainer: vision-sdk@microsoft.com +Description: Azure AI Vision Common Components Runtime Package +Depends: libc6 (>= 2.4), libgcc1 (>= 1:3.3.1), libstdc++6 (>= 6), libuuid1 (>= 2.16) +SHA256: cf6dcd76811967d54319060586e829c571f12233571cbdb7d3b5a0aab3d796c5 +Size: 658658 +Filename: pool/main/a/azure-ai-vision-runtime-common/azure-ai-vision-runtime-common-0.11.1~beta.1-Linux.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.13-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.13 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 56c6333632b1a4a16d5bd3dcdb6a7e9326a5fca99c06b466a18f46e2e9ea574c +Size: 2792 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.13-x64.deb + +Package: dotnet-runtime-3.1 +Version: 3.1.29-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 71233 +Maintainer: .NET Core Team +Description: Microsoft .NET Core Runtime - 3.1.29 Microsoft.NETCore.App 3.1.29 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://dot.net/core +Depends: dotnet-hostfxr-3.1 (>= 3.1.29), dotnet-runtime-deps-3.1 (>= 3.1.29) +SHA256: 82a0de75f01251437d155681b4706eb56438e2fca21135d1dfb4d3b3a44ec74e +Size: 21619890 +Filename: pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.29-x64.deb + +Package: dotnet-hostfxr-8.0 +Version: 8.0.5-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 296 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 8.0.5 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libc6, libgcc1, libstdc++6, dotnet-host (>= 8.0.5) +SHA256: 315d87e28f63f816398e165d9a31de04fb6fff645bede905e2e3cd435a595954 +Size: 108018 +Filename: pool/main/d/dotnet-hostfxr-8.0/dotnet-hostfxr-8.0_8.0.5-1_amd64.deb + +Package: msodbcsql17 +Version: 17.10.5.1-1 +Architecture: amd64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: 5a3ab39be1db72785a3f912c04d8e5a90c27fd7f628a413405d9b9033b84880c +Size: 749060 +Filename: pool/main/m/msodbcsql17/msodbcsql17_17.10.5.1-1_amd64.deb + +Package: mssql-tools18 +Version: 18.4.1.1-1 +Architecture: amd64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL Tools Team +Description: Tools for Microsoft(R) SQL Server(R) + This package provides tools for Microsoft(R) SQL Server(R). +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), msodbcsql18 (>= 18.0.0.0) +SHA256: 0700e0636b70f4473858dd4b1ebc1dc583787ba04dfd31369e92ce6fc5b8d98b +Size: 211370 +Filename: pool/main/m/mssql-tools18/mssql-tools18_18.4.1.1-1_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.9-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11066 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.9 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 046f75901d5530e3b309ebecb2e6f22138bcc93ca8bf03e24debd99f336616bc +Size: 3521770 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.9-x64.deb + +Package: dotnet-runtime-deps-8.0 +Version: 8.0.8-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 8.0.8 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52 +SHA256: 32df295ee7225f54d7db3be17c345f4a37c831e5a34e1e8d4e4ae6367e308708 +Size: 2894 +Filename: pool/main/d/dotnet-runtime-deps-8.0/dotnet-runtime-deps-8.0_8.0.8-1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.302-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 366165 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.302 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.5), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.5), dotnet-runtime-7.0 (>= 7.0.5), dotnet-targeting-pack-7.0 (>= 7.0.5), aspnetcore-runtime-7.0 (>= 7.0.5) +SHA256: 0eb71faed541f514db82c099ca2673a31f61a1610d609015125e5bf8b0825127 +Size: 96471690 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.302-x64.deb + +Package: moby-engine +Version: 23.0.7+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 97205 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: bf33237474678a01eaaea6f3277abf2d2f1104c71c19806d3a695428ba053adb +Size: 24980596 +Filename: pool/main/m/moby-engine/moby-engine_23.0.7+azure-ubuntu22.04u1_amd64.deb + +Package: aztfexport +Version: 0.14.2 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 77708 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfexport +Vendor: none +License: MPL-2.0 +SHA256: a224cfc94a825c95e5d96f98ab390bea4a40828bd86f2905e511d2d5ecd67ef7 +Size: 12850512 +Filename: pool/main/a/aztfexport/aztfexport_0.14.2_amd64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.33-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19907 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.33) +SHA256: 9ec68f36c83be2f7d762a6c3be1f36044eccf2234987b359321122e078442103 +Size: 6621370 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.33-1_amd64.deb + +Package: powershell-lts +Version: 7.2.18-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 168903 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: ad9be0134e913aea6e562cbba110ee8d5dd017b5856c4ba460e006c3f7f5043d +Size: 68359156 +Filename: pool/main/p/powershell-lts/powershell-lts_7.2.18-1.deb_amd64.deb + +Package: moby-compose +Version: 2.20.2+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 59070 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 3eb6501eb704779a8940989851aca2ceb1990bcdbd251b5d4468fab1d71d6faa +Size: 13211854 +Filename: pool/main/m/moby-compose/moby-compose_2.20.2+azure-ubuntu22.04u1_amd64.deb + +Package: moby-cli +Version: 20.10.25+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 50209 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: b01ccdcf37ef445b598823b78288a7a13200e0cba7918172ff57edf3016b8414 +Size: 10841204 +Filename: pool/main/m/moby-cli/moby-cli_20.10.25+azure-ubuntu22.04u1_amd64.deb + +Package: mdatp +Version: 101.23082.0006 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 411033 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, libpcre3, mde-netfilter +SHA256: e80cb3c420998be4370f6da7724a335bf7a233fe9fe09fd85b15f10e6a9ed519 +Size: 150359494 +Filename: pool/main/m/mdatp/mdatp_101.23082.0006_amd64.deb + +Package: moby-cli +Version: 20.10.21+azure-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 49828 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: c544b88d37aa77af6285f1a2c3e5598fd241b2a8d53f273190addda810dc7928 +Size: 10776738 +Filename: pool/main/m/moby-cli/moby-cli_20.10.21+azure-ubuntu22.04u2_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.8-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.8 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.8), libc6 +SHA256: fd31f75d787c6793c265f8521b647e06ce8b00327798d55607422ad78ad92c6c +Size: 142306 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.8-x64.deb + +Package: moby-buildx +Version: 0.9.1+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 66620 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 0dd30d939f3c095f2418cdc66f596b921c94a3ba92bfcfa0a1221ea53d4b745a +Size: 24741664 +Filename: pool/main/m/moby-buildx/moby-buildx_0.9.1+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-host +Version: 8.0.2-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 174 +Maintainer: .NET Team +Description: Microsoft .NET Host - 8.0.2 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libc6, libgcc1, libstdc++6 +SHA256: 43c5e925f2f13e89547e7e8e8d560089f35988c6ff916fbf52cdd5969cd203fa +Size: 37598 +Filename: pool/main/d/dotnet-host/dotnet-host_8.0.2-1_amd64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.18-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19877 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.18) +SHA256: fb2b920c58eafd21f1603fab79ad877e1a1d6b52f1b09bb3e574ba4c52e5790b +Size: 6614146 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.18-x64.deb + +Package: sysinternalsebpf +Version: 1.3.0 +Architecture: amd64 +Installed-Size: 22072 +Maintainer: Sysinternals +Description: A shared library and code library for making eBPF programs. + SysinternalsEBPF is a shared library that provides control over + eBPF programs, and an eBPF code library that eBPF programs can include to + interact with the library. +Depends: libc6 (>= 2.26), libelf1 (>= 0.131), libglib2.0-0 (>= 2.12.0), libjson-glib-1.0-0 (>= 0.13.2), zlib1g (>= 1:1.2.3.3) +SHA256: 3e270e63a81f5cd729afb1f69b43e9fc648f010be900068fab4f30bb4a4adb7f +Size: 714818 +Filename: pool/main/s/sysinternalsebpf/sysinternalsebpf_1.3.0_amd64.deb + +Package: moby-cli +Version: 20.10.18+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 49819 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: defe88bb84ab93a0e20c5b96eed8112cd01a63cec43b284195330ff03d967a57 +Size: 10717684 +Filename: pool/main/m/moby-cli/moby-cli_20.10.18+azure-ubuntu22.04u1_amd64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.13-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11745 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.13) +SHA256: 35ee7c2da9cf72d513b84a8bda149edcb7342248e50042216209289cf4e7e5e2 +Size: 1315266 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.13-x64.deb + +Package: dotnet-targeting-pack-7.0 +Version: 7.0.14-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 31138 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 7.0.14 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 82656108103eddae527172d5a93d80e76dc57555b22c7070427302d897a73d18 +Size: 2567906 +Filename: pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.14-1_amd64.deb + +Package: dotnet-hostfxr-8.0 +Version: 8.0.8-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 296 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 8.0.8 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libc6, libgcc1, libstdc++6, dotnet-host (>= 8.0.8) +SHA256: 36cb94b62d58abbd6ea77f9bc53ceffcf19889c88bf4c30549ab66489cb3d143 +Size: 108106 +Filename: pool/main/d/dotnet-hostfxr-8.0/dotnet-hostfxr-8.0_8.0.8-1_amd64.deb + +Package: procdump +Version: 3.1.0 +Architecture: amd64 +Maintainer: Sysinternals +Description: Sysinternals process dump utility + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +Depends: zlib1g, gdb (>= 7.6.1) +License: MIT +SHA256: eeed9c0006c2f17178dd019a9fd2d0891cbf1187f4173fc6a62470e12643fba2 +Size: 1351298 +Filename: pool/main/p/procdump/procdump_3.1.0_amd64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.7-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.7 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 16595bc03b136fdb2fe41c5a326370472452543e6d320f5c3dea04f8e5f66b1c +Size: 2804 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.7-x64.deb + +Package: dotnet-runtime-deps-8.0 +Version: 8.0.4-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 8.0.4 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52 +SHA256: 6c328b79dc214b2b15650ad7e36f5e81565354f7f2e75daf48b5981e6689f71f +Size: 2886 +Filename: pool/main/d/dotnet-runtime-deps-8.0/dotnet-runtime-deps-8.0_8.0.4-1_amd64.deb + +Package: aztfy +Version: 0.10.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 54596 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfy +Vendor: none +License: MPL-2.0 +SHA256: 45ea0fb07e1c2d5fc8cab233e2b530ffc05fc0865f1fd810fc49597b3ee0c12a +Size: 9404196 +Filename: pool/main/a/aztfy/aztfy-0.10.0-1-amd64.deb + +Package: msopenjdk-21 +Version: 21.0.2-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 353007 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 21 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: a059c25a6deefd498957f47a67a3869f2b529b139e78b59ba9c6ed48c4edadb8 +Size: 176514490 +Filename: pool/main/m/msopenjdk-21/msopenjdk-21_21.0.2-1_amd64.deb + +Package: procmon +Version: 2.0.0 +Architecture: amd64 +Maintainer: Sysinternals +Description: Sysinternals process monitor utility + Process Monitor (Procmon) is part of the Sysinternals suite of tools. Procmon provides a convenient and efficient way for Linux developers to trace the syscall + activity on the system. +Depends: sysinternalsebpf (>= 1.4), libelf1 (>= 0.0) +License: MIT +SHA256: c4f9d7d563bb62bdece9a3f8d1cfc207ec014eda3f3cd25d9c62415d61578bf4 +Size: 3008078 +Filename: pool/main/p/procmon/procmon_2.0.0_amd64.deb + +Package: moby-engine +Version: 20.10.24+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 86952 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 21d4c2f55d86194356d823654d274e0e7405f8e645b05b319cdb79943f2413b7 +Size: 22633928 +Filename: pool/main/m/moby-engine/moby-engine_20.10.24+azure-ubuntu22.04u1_amd64.deb + +Package: aztfexport +Version: 0.13.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 73156 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfexport +Vendor: none +License: MPL-2.0 +SHA256: 5b991791b757e7205e56bf05ed9942d8c4bd949d3cd8e862b18414924a4c78ab +Size: 11881750 +Filename: pool/main/a/aztfexport/aztfexport_0.13.0_amd64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.19-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19878 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.19) +SHA256: a5542d3b15bb4cf1dcd16c3a80da543e0bbeabba37be690758d5e3d8c3af69a2 +Size: 6613598 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.19-x64.deb + +Package: moby-engine +Version: 20.10.21+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 86253 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 17836f00ffc1b6e11ef322b03b761bc2f7eae63df159fec990be9dab6ff92d76 +Size: 22397900 +Filename: pool/main/m/moby-engine/moby-engine_20.10.21+azure-ubuntu22.04u1_amd64.deb + +Package: blobfuse2 +Version: 2.3.0~preview.1 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 25410 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: 823fcd4eae81e9330561cf1419c49e82086daaa01823d795fc347e0d92bb3c6c +Size: 13532390 +Filename: pool/main/b/blobfuse2/blobfuse2_2.3.0~preview.1_amd64.deb + +Package: azcmagent +Version: 1.36.02501.1232 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 5dcd6fc42a9e58f91b8b8c2c91cf4224452748c320589d2e94413730b122f716 +Size: 58560594 +Filename: pool/main/a/azcmagent/azcmagent_1.36.02501.1232_amd64.deb + +Package: mdatp +Version: 101.23112.0009 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 515621 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, libpcre3, mde-netfilter +SHA256: f193c3a3dc0d4ab91db2fd9f094486cbd1291c693b168669006ab816c3ce613a +Size: 139578204 +Filename: pool/main/m/mdatp/mdatp_101.23112.0009_amd64.deb + +Package: azureauth +Version: 0.8.3-1 +Architecture: amd64 +Section: misc +Priority: optional +Installed-Size: 74210 +Maintainer: ES365 Security Experience Team +Description: A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information. +SHA256: 0548d922295c5abf08bf13101afd2cd095d8ad153feac54299942b5462301d8a +Size: 24107162 +Filename: pool/main/a/azureauth/azureauth_0.8.3-1_amd64.deb + +Package: aziot-identity-service +Version: 1.5.0-1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 17199 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1), psmisc +SHA256: a442750efbf357904633f6c847a3a38ff5aeb287ab11d29f9192253581cc0e4b +Size: 4186758 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.5.0-1_amd64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.12-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.12 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 760dac7d7083b3f28b2fccaa7dfc529c6b71df58e70239c186da94b16d0f7d82 +Size: 2130012 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.12-x64.deb + +Package: powershell-lts +Version: 7.2.15-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 168905 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 12f24124a2908286b81081866fc63562dbff0aff63ed85bf4c2140772da3bc78 +Size: 68354770 +Filename: pool/main/p/powershell-lts/powershell-lts_7.2.15-1.deb_amd64.deb + +Package: aspnetcore-runtime-8.0 +Version: 8.0.2-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 23473 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-8.0 (>= 8.0.2) +SHA256: 96e51fe1343788eed2246f5342e1e5bd31605ddd4bd6fe02349403852c5ac60c +Size: 7662630 +Filename: pool/main/a/aspnetcore-runtime-8.0/aspnetcore-runtime-8.0_8.0.2-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.321-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 331577 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.321 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.26), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.26), dotnet-apphost-pack-6.0 (>= 6.0.26), dotnet-runtime-6.0 (>= 6.0.26), aspnetcore-targeting-pack-6.0 (>= 6.0.26) +SHA256: 14e7a12e9fbeabd25abdfe488d4ef2c8584eeef8bcd58d816e2f4acefd844d0c +Size: 85319314 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.321-1_amd64.deb + +Package: moby-cli +Version: 20.10.17+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 59397 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 72d664ae09a83bfd9d6da1104be4bbab38bd15ce367e93d0f1f1a7d18453af64 +Size: 11499618 +Filename: pool/main/m/moby-cli/moby-cli_20.10.17+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-host +Version: 8.0.3-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 174 +Maintainer: .NET Team +Description: Microsoft .NET Host - 8.0.3 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libc6, libgcc1, libstdc++6 +SHA256: 1ddcff2b5c09ef6327c3070022e74fcc6ee848ca877fd5d8035b8e6fd15875ee +Size: 37706 +Filename: pool/main/d/dotnet-host/dotnet-host_8.0.3-1_amd64.deb + +Package: aadsshlogin +Version: 1.0.021030001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libcurl4, libuuid1, passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: 51c1a1061df561c1600425a26b68423dbd0002a0b1d81860adfeb7d05339e637 +Size: 493368 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.021030001_amd64.deb + +Package: dotnet-host +Version: 8.0.7-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 174 +Maintainer: .NET Team +Description: Microsoft .NET Host - 8.0.7 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libc6, libgcc1, libstdc++6 +SHA256: 4f35a52549e32d740c355a14ffd6d87d6fe5208cfcd1aa9f96eea4ca338672ac +Size: 37682 +Filename: pool/main/d/dotnet-host/dotnet-host_8.0.7-1_amd64.deb + +Package: aspnetcore-targeting-pack-7.0 +Version: 7.0.2-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 13092 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-7.0 (>= 7.0.2) +SHA256: ec0cdcc4cf6ff7aa4f9709cd7b7f1c8177ae4a01acd69b9ca53d1cc924c0826f +Size: 1516930 +Filename: pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.2-x64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.21-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.21 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: cc2685bf04ed2521b1075a7f39183817da59cdcc894f56fb424b9f40863405c6 +Size: 2122592 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.21-1_amd64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.22-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19892 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.22) +SHA256: 7f5c3705f1cc77f3c3193dca3832c6fdcb61f4fdb013c5b2ff3458cff7b490cf +Size: 6617570 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.22-1_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.20-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68460 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.20 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.20), dotnet-runtime-deps-6.0 (>= 6.0.20) +SHA256: 356aef8ceafe55124bae9ad0deb58f3d020884e0edf1e7d6bf5f79f3f565bf7e +Size: 22931670 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.20-x64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.112-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 350106 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.112 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.12), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.12), dotnet-runtime-7.0 (>= 7.0.12), dotnet-targeting-pack-7.0 (>= 7.0.12), aspnetcore-runtime-7.0 (>= 7.0.12) +SHA256: afba66259ca95dc675eb24bbecf5b0bc0aacf07f7d48517c35ba62f3e2456cb2 +Size: 90698250 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.112-1_amd64.deb + +Package: blobfuse2 +Version: 2.0.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 27863 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: 7e1318fbdb8cb45bcda27e89eb70503024856fc6dd746c6ec4afaec7583e357d +Size: 13151206 +Filename: pool/main/b/blobfuse2/blobfuse2-2.0.0-Ubuntu-22.04-x86-64.deb + +Package: microsoft-identity-broker +Source: microsoft-identity-broker +Version: 1.4.0 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 86504 +Maintainer: Microsoft Identity +Description: microsoft-identity-broker + Microsoft Authentication Broker for Linux. +Conflicts: msft-identity-broker +Depends: default-jre, systemd, dbus-session-bus, dbus-system-bus, gnome-keyring +Recommends: microsoft-identity-diagnostics +Provides: msft-identity-broker +Replaces: msft-identity-broker +SHA256: e0cbfab7e69162d2381c820d705749dcbc803159fccd74f3e0e5b18fe6b79d9f +Size: 79757946 +Filename: pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.4.0_amd64.deb + +Package: dotnet-runtime-7.0 +Version: 7.0.18-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70851 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 7.0.18 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-deps-7.0 (>= 7.0.18), dotnet-hostfxr-7.0 (>= 7.0.18) +SHA256: a8374c110111c86d7d6c630669b541c664a1bc87170dbe89740a7f9aea950427 +Size: 23210334 +Filename: pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.18-1_amd64.deb + +Package: azcmagent +Version: 1.32.02371.983 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: e89390a265f126952d225d40a5c4e58014a32c20efc573868674738097b08b5f +Size: 54306730 +Filename: pool/main/a/azcmagent/azcmagent_1.32.02371.983_amd64.deb + +Package: moby-buildx +Version: 0.10.4+azure-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 69097 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 86ecc83702e5b1b356bc7e749408c2e1f2665005e7115d18e5b5f2c59fc1ff20 +Size: 27181812 +Filename: pool/main/m/moby-buildx/moby-buildx_0.10.4+azure-ubuntu22.04u2_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.14-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11071 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.14 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 8d6633d7d637add6a27594687c3bd216f20e83c9562dd580dae66f01d311e254 +Size: 3531962 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.14-x64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.23-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11071 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.23 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 8eb9366b0a0a45e0231704b408fae41733d283c8d663e90189aa3b70a333ae54 +Size: 3519112 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.23-1_amd64.deb + +Package: dotnet-host +Version: 8.0.8-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 174 +Maintainer: .NET Team +Description: Microsoft .NET Host - 8.0.8 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libc6, libgcc1, libstdc++6 +SHA256: b749835086611420d02f8f7b2864c6230bc23f386a00b3b2938cc7d07b79211d +Size: 37714 +Filename: pool/main/d/dotnet-host/dotnet-host_8.0.8-1_amd64.deb + +Package: powershell +Version: 7.2.9-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 189110 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 50f58decb20077f0570e2720ff98689e0b8771b490c81275736b857bc248ecb4 +Size: 70342536 +Filename: pool/main/p/powershell/powershell_7.2.9-1.deb_amd64.deb + +Package: virtualclient +Version: 1.11.0 +Architecture: amd64 +Maintainer: Virtual Client Team +Description: VirtualClient, the open sourced workload automation. +SHA256: 11eec246fca29d7666d13cd6bfa1c629536685570a1b60b0bdeec635341cc5d1 +Size: 44771040 +Filename: pool/main/v/virtualclient/virtualclient_1.11.0_amd64.deb + +Package: dotnet-host +Version: 6.0.14-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.14 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: d3cbd0265d728a2e0f045f86b1426f91511042c41d64dd5c842f98a9e31a3cb3 +Size: 55756 +Filename: pool/main/d/dotnet-host/dotnet-host-6.0.14-x64.deb + +Package: omi +Source: omi +Version: 1.8.1.0 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 4932 +Maintainer: Microsoft Corporation +Description: Open Management Infrastructure + omi server +Depends: libc6 (>= 2.3.6), libpam-runtime (>= 0.79-3) +Provides: omi +SHA256: de5dc652836234f6ed8683ea4510404b9d74905459666a16e41844a1159cda7a +Size: 1917586 +Filename: pool/main/o/omi/omi_1.8.1.0_amd64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.15-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11745 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.15) +SHA256: c9672f06b201be1df4ef1834a98a1447fdb57907d817d35e47ffd01b9754e8e9 +Size: 1314366 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.15-x64.deb + +Package: libmsquic +Version: 2.2.1 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 12930 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 0b1c68a43e448b113be58f7aa38c03731ebc9d7deb15ff5409ab478ee5c07715 +Size: 3948984 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.200-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 319790 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.200 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.2), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.2), dotnet-apphost-pack-6.0 (>= 6.0.2), dotnet-runtime-6.0 (>= 6.0.2), aspnetcore-targeting-pack-6.0 (>= 6.0.2) +SHA256: 1025e3b198f62a3624e66ea5b3c3e693ddb53ebedf8a74e56dd221f180bba9bd +Size: 80440736 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.200-x64.deb + +Package: sysinternalsebpf +Version: 1.2.0 +Architecture: amd64 +Installed-Size: 22072 +Maintainer: Sysinternals +Description: A shared library and code library for making eBPF programs. + SysinternalsEBPF is a shared library that provides control over + eBPF programs, and an eBPF code library that eBPF programs can include to + interact with the library. +Depends: libc6 (>= 2.26), libelf1 (>= 0.131), libglib2.0-0 (>= 2.12.0), libjson-glib-1.0-0 (>= 0.13.2), zlib1g (>= 1:1.2.3.3) +SHA256: b0c82c448966603c0e472e7227b51d8c02876cb2f62f5e6d501cb6dd50d02fb8 +Size: 715290 +Filename: pool/main/s/sysinternalsebpf/sysinternalsebpf_1.2.0_amd64.deb + +Package: azcopy +Version: 10.26.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 33376 +Maintainer: Azcopy v-Team +Description: A command-line utility that is used to copy data to and from containers and file shares in Azure Storage accounts +Homepage: https://github.com/Azure/azure-storage-azcopy +Vendor: none +License: unknown +SHA256: 3ed88a6b584481cf1d2bd37483278d1d84af0d89087dff55fc0951dd7c92e08c +Size: 16421136 +Filename: pool/main/a/azcopy/azcopy_10.26.0_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.13-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11071 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.13 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: a28e554c180550b4d6daa763f55ef2121ea8fdd70d2da02dcc86ff7e20a70572 +Size: 3517574 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.13-x64.deb + +Package: powershell +Version: 7.2.11-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 189132 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 5bb0f368f4a177f2790789a57102b3d22288a3fa98e86e8f48b43b8c9705497b +Size: 70502394 +Filename: pool/main/p/powershell/powershell_7.2.11-1.deb_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.409-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 401280 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.409 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.19), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.19), dotnet-runtime-7.0 (>= 7.0.19), dotnet-targeting-pack-7.0 (>= 7.0.19), aspnetcore-runtime-7.0 (>= 7.0.19) +SHA256: 69704d1b6f0d4363975d35e774044244723829db0ded496343a833f8d3a818d2 +Size: 108196986 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.409-1_amd64.deb + +Package: msodbcsql18 +Version: 18.1.1.1-1 +Architecture: amd64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: b03047121eb77666ab31d842f1b5e7abf0d488d4964de97cd7864296312c5058 +Size: 751576 +Filename: pool/main/m/msodbcsql18/msodbcsql18_18.1.1.1-1_amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.5801-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 214ed4164e17e9687096a426d604fecfc0d55e179d0a47dfbbafbd75dee77ae7 +Size: 159960754 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5801-1_amd64.deb + +Package: aadsshlogin +Version: 1.0.026840001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libc6 (>= 2.34), libcurl4 (>= 7.16.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 3.1~), libsemanage2 (>= 2.0.32), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.16), passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: ed04c2c58f9fd1865ef40f116e2ce9f382098ddd7e473150d1ac89cc17d09f35 +Size: 332934 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.026840001_amd64.deb + +Package: powershell +Version: 7.3.7-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 172243 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: bc7806942a6f28060686621bd922df555e61e11b00d5205896baba251ffa5b1f +Size: 69177584 +Filename: pool/main/p/powershell/powershell_7.3.7-1.deb_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.12-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.12 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.12), libc6 +SHA256: cf766a63271559df4756a494ea2f4e44eed0439aa06e9abaebd9ef4605864e93 +Size: 142378 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.12-x64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.5095-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 08fefd2a57d32afe7284f2d7f0b8696d2fa97ab5196a8261a9c51653be5830a0 +Size: 156082204 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5095-1.deb + +Package: azure-functions-core-tools +Version: 4.0.5611-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 01555a901672a011c675c089fa8c78e0c4c3ecf26c4dbf819508bc88450cb047 +Size: 168963046 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5611-1_amd64.deb + +Package: dotnet-targeting-pack-7.0 +Version: 7.0.12-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 31138 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 7.0.12 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 3f6ac011906fa751b3825746b28515160a1b7b1571a8721ab481da9c5d8ddd69 +Size: 2568066 +Filename: pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.12-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.314-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 331500 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.314 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.19), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.19), dotnet-apphost-pack-6.0 (>= 6.0.19), dotnet-runtime-6.0 (>= 6.0.19), aspnetcore-targeting-pack-6.0 (>= 6.0.19) +SHA256: 7b307e2bbcedb6145bc516bdc914a2523bbd776f85729396b81094c083b32dd7 +Size: 85192950 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.314-x64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.304-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 411831 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.304 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.8), dotnet-targeting-pack-8.0 (>= 8.0.8), dotnet-apphost-pack-8.0 (>= 8.0.8), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.8), aspnetcore-targeting-pack-8.0 (>= 8.0.8) +SHA256: 1374d41f368ab56559bdbf92d2a10579c42db9613df5aa9c9597911bca26b965 +Size: 106107250 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.304-1_amd64.deb + +Package: moby-buildx +Version: 0.8.2+azure-1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 67232 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: a800db5f9dcb974f28f07c2c30fc61526ace3edb34e6433a629c6dcb5dc16d6b +Size: 24256396 +Filename: pool/main/m/moby-buildx/moby-buildx_0.8.2+azure-1_amd64.deb + +Package: defender-iot-micro-agent +Version: 4.6.2 +Architecture: amd64 +Priority: optional +Essential: no +Maintainer: Microsoft +Description: Microsoft Defender for IoT Micro Agent +Conflicts: defender-iot-micro-agent-edge +Depends: libuv1, curl, libssl3, uuid-runtime, sudo, libpcap0.8 +Recommends: dmidecode +SHA256: 5be8b13c488e94ad3c270b76cec1484c2cbf2410043bc3ea50197bf2a9b09cd3 +Size: 564260 +Filename: pool/main/d/defender-iot-micro-agent/defenderiot-ubuntu-22.04-amd64-4.6.2.deb + +Package: powershell +Version: 7.3.10-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 172250 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 913497afb1be7a2aa9d10940cb2132f931a379c8a47e2786c6dbaa6dae3f7e60 +Size: 69206152 +Filename: pool/main/p/powershell/powershell_7.3.10-1.deb_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.32-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11073 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.32 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: ec459f67f5515da8e35e3ceebfcbcc842d47c6394b5b46e2b72493d11f00a257 +Size: 3525500 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.32-1_amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.4895-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: eb256873e4cc87bc58d309da546fa07c13fb3b979437a3da2036cbce0cb4f1e4 +Size: 158763596 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4895-1.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.2-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68381 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.2 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.2), dotnet-runtime-deps-6.0 (>= 6.0.2) +SHA256: 422ffd79ba0324eed88fe3634f69c1025d978f54738d98aeae7d84e364ce83c1 +Size: 22859474 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.2-x64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.405-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 336570 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.405 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.13), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.13), dotnet-apphost-pack-6.0 (>= 6.0.13), dotnet-runtime-6.0 (>= 6.0.13), aspnetcore-targeting-pack-6.0 (>= 6.0.13) +SHA256: 04685c120f0b0db34950bbec26377fa60cdfde91537311cb6079eafa00eb6191 +Size: 86616330 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.405-x64.deb + +Package: aadsshlogin-selinux +Version: 1.0.021030001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.3-1), selinux-utils, selinux-policy-default +SHA256: 9785d7b850c5bb9f36a8bbc04ebd13ad7063da5c9bf47ac0887bffdab2add737 +Size: 2218 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.021030001_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.3-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.3 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.3), libc6 +SHA256: b1538cee2b98d3910e330790382beb315724c3bbd8dd8d59ac272a952128bb94 +Size: 142012 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.3-x64.deb + +Package: aspnetcore-targeting-pack-7.0 +Version: 7.0.12-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 13099 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-7.0 (>= 7.0.12) +SHA256: b942920b01885f1ba0980cbe3bee729b059b8f24a90069e95cb4dc2b74a30afc +Size: 1530422 +Filename: pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.12-1_amd64.deb + +Package: msodbcsql18 +Version: 18.4.1.1-1 +Architecture: amd64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: 4d1036224ed11259bea297158c5e40884f6d24b274997cff5fe0ec53aafbd70c +Size: 755196 +Filename: pool/main/m/msodbcsql18/msodbcsql18_18.4.1.1-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.400-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 336089 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.400 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.8), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.8), dotnet-apphost-pack-6.0 (>= 6.0.8), dotnet-runtime-6.0 (>= 6.0.8), aspnetcore-targeting-pack-6.0 (>= 6.0.8) +SHA256: 0c2897efed36675878f930783e75164ef8b537c90919f6308465045902a71c79 +Size: 86384340 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.400-x64.deb + +Package: moby-containerd +Version: 1.6.21+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 125637 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: c6c4aef559020a847e7291340ae30acde4531d8caa275c5159bf02eec83318e5 +Size: 34924192 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.21+azure-ubuntu22.04u1_amd64.deb + +Package: sysmonforlinux +Version: 1.1.0 +Architecture: amd64 +Installed-Size: 3082 +Maintainer: Sysinternals +Description: A system monitor based on eBPF, ported from Windows, that outputs events to Syslog +Depends: libc6 (>= 2.14), libgcc1 (>= 1:3.0), libstdc++6 (>= 5), libxml2 (>= 2.7.4), sysinternalsebpf (>= 1.0.2) +SHA256: b1f813bc8e0359f218dfb182bb64f8b5c0f6fc352e72e615758826841739e58e +Size: 1515746 +Filename: pool/main/s/sysmonforlinux/sysmonforlinux_1.1.0-0_amd64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.2-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27359 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.2 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 1f36ec7f18be7b459632ced20ee68303e5a3ddcba882706a55c54c11082fc64e +Size: 2119378 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.2-x64.deb + +Package: moby-compose +Version: 2.17.3+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 52651 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 3f605c6fea4b69ec69076e8b4aee7b7298624c593527a4bfd5cfe5061bdca1d4 +Size: 12049728 +Filename: pool/main/m/moby-compose/moby-compose_2.17.3+azure-ubuntu22.04u1_amd64.deb + +Package: moby-containerd +Version: 1.6.16+azure-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 123870 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 934f2eb00747333c4117d6c361704fe77897269c1a3b05b390d49da1d0093853 +Size: 34276228 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.16+azure-ubuntu22.04u2_amd64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.16-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19873 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.16) +SHA256: d4e52045a7aeb72dcadcbcab02c644253d73d7fc0f9942636a47bd36bcaf117d +Size: 6612278 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.16-x64.deb + +Package: moby-compose +Version: 2.19.1+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 59023 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: b3c59904ea2c0df35411d1cbe5afd19b54261a44924a651507484d515172b97e +Size: 13212192 +Filename: pool/main/m/moby-compose/moby-compose_2.19.1+azure-ubuntu22.04u1_amd64.deb + +Package: powershell +Version: 7.2.6-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 187014 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: a0d810fe381b77e4bfb99cc67f713f6d483545e94bdeb4150524c085cf20e2da +Size: 69463938 +Filename: pool/main/p/powershell/powershell_7.2.6-1.deb_amd64.deb + +Package: dotnet-apphost-pack-3.1 +Version: 3.1.28-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 214 +Maintainer: .NET Core Team +Description: Microsoft.NETCore.App.Host 3.1.28 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: a70f9988c9e6f17bb5b7109b9901c44858c9a9bb3a65c85954a694a3c7f6a50e +Size: 41858 +Filename: pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.28-x64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.303-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 330659 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.303 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.8), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.8), dotnet-apphost-pack-6.0 (>= 6.0.8), dotnet-runtime-6.0 (>= 6.0.8), aspnetcore-targeting-pack-6.0 (>= 6.0.8) +SHA256: e03edf1562de2d46ed9ede9b2090c8c67c694c22dda9caab48a7b3de7bbc994c +Size: 84893404 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.303-x64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.20-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11748 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.20) +SHA256: c663e63f79bfee8b76205b03bc7bfefe282becacf8a7dd98b380354d42988521 +Size: 1315494 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.20-x64.deb + +Package: intune-portal +Version: 1.2305.20 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 23190 +Maintainer: Microsoft +Description: Microsoft Intune + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +Depends: libstdc++6 (>= 12), libglib2.0-0 (>= 2.35.8), libglib2.0-0 (>= 2.12.0), libssl3 (>= 3.0.0~~alpha1), gnome-keyring (>= 3.36), libuuid1 (>= 2.16), libsecret-1-0 (>= 0.7), msalsdk-dbusclient (>= 1.0), libjavascriptcoregtk-4.0-18 (>= 2.38.5), libx11-6, libgtk-3-0 (>= 3.21.4), libsqlite3-0 (>= 3.7.14), zlib1g (>= 1:1.2.0), libpango-1.0-0 (>= 1.14.0), libpam-pwquality (>= 1.4.0-2), libwebkit2gtk-4.0-37 (>= 2.5.3), libc6 (>= 2.34), libcurl4 (>= 7.16.2), libpam0g (>= 0.99.7.1), libgtk-3-0 (>= 3.9.10), libsoup2.4-1 (>= 2.4.0), libsystemd0, libatk1.0-0 (>= 1.12.4) +Recommends: microsoft-edge-stable (>= 102) +SHA256: 42eec710ea567b11ee2942cab1abca0524b1bcfb14f916f614c0202cfd891e0f +Size: 5529324 +Filename: pool/main/i/intune-portal/intune-portal_1.2305.20_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.33-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11038 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.33 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: fb2dfc70978b1b76e4078b44e69ca11992cda72690c045d0c16182a455e3960e +Size: 3514062 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.33-1_amd64.deb + +Package: intune-portal +Version: 1.2404.25-jammy +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 27711 +Maintainer: Microsoft +Description: Microsoft Intune + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +Depends: zlib1g (>= 1:1.2.0), libatk1.0-0 (>= 1.12.4), libpango-1.0-0 (>= 1.14.0), libdbus-1-3 (>= 1.9.14), libc6 (>= 2.34), libssl3 (>= 3.0.0~~alpha1), libsqlite3-0 (>= 3.7.14), libwebkit2gtk-4.0-37 (>= 2.39.90), gnome-keyring (>= 3.36), libcurl4 (>= 7.16.2), libglib2.0-0 (>= 2.12.0), libpam0g (>= 0.99.7.1), libgtk-3-0 (>= 3.21.4), libsoup2.4-1 (>= 2.4.0), msalsdk-dbusclient (>= 1.0), libx11-6, libsystemd0, libpam-pwquality (>= 1.4.0-2), libuuid1 (>= 2.16), libsecret-1-0 (>= 0.7), libstdc++6 (>= 12), libglib2.0-0 (>= 2.35.8), libgtk-3-0 (>= 3.9.10), libjavascriptcoregtk-4.0-18 +Recommends: microsoft-edge-stable (>= 102) +SHA256: 65125d8610f05de3a3231ecc97856f3d43a8b67250f5fef79ec633826e92402f +Size: 6666890 +Filename: pool/main/i/intune-portal/intune-portal_1.2404.25-jammy_amd64.deb + +Package: mdatp +Version: 101.68.80 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 211880 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: curl (>= 7.5), libseccomp2, libuuid1, libatomic1, libc6 (>= 2.23), python3, uuid-runtime, dmidecode, auditd, libselinux1, libfuse2, mde-netfilter +SHA256: f30d0cddb2341e50f82bd4a46e1b70a3608e134ab4ce03e894757c4b6e207a05 +Size: 62043662 +Filename: pool/main/m/mdatp/mdatp_101.68.80.amd64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.100-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 390274 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.100 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.0), dotnet-targeting-pack-8.0 (>= 8.0.0), dotnet-apphost-pack-8.0 (>= 8.0.0), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.0), aspnetcore-targeting-pack-8.0 (>= 8.0.0) +SHA256: a19fd48c797b0ab22e76eea84a0e340f3b3eb96a0978a554bd1ae7c7a0233e3d +Size: 101965666 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.100-1_amd64.deb + +Package: azure-functions-core-tools-3 +Version: 3.0.4626-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v3 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools, azure-functions-core-tools-2 +Replaces: azure-functions-core-tools, azure-functions-core-tools-2 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 022b3e1cf0a2b0c3c140aa89d992dbf8b428378610056b888ea890ec95ceaced +Size: 227619356 +Filename: pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4626-1.deb + +Package: azcmagent +Version: 1.39.02628.1411 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 4521e81b1c0e6e33782d0b3ccee5ada76b4f766b3a8f3dabba360f8b0bdad43b +Size: 62144662 +Filename: pool/main/a/azcmagent/azcmagent_1.39.02628.1411_amd64.deb + +Package: aspnetcore-runtime-7.0 +Version: 7.0.20-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 21371 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-7.0 (>= 7.0.20) +SHA256: e4a6d3b98d28efdce791142f77ce27fa8cce445468a883f75d3f801b62904024 +Size: 7066302 +Filename: pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.20-1_amd64.deb + +Package: dotnet-apphost-pack-7.0 +Version: 7.0.5-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11285 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 7.0.5 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 4eebb74f244a7909a4b8a72ca1ffd3a75fa75a192917285f513986393c504645 +Size: 3523918 +Filename: pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.5-x64.deb + +Package: msopenjdk-11 +Version: 11.0.20.1-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 317508 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 11 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: fc126a9bb2987bfa6425e72e24d481e98d1fb80abff88558ec135a5b5a42c891 +Size: 166575154 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20.1-1_amd64.deb + +Package: mssql-tools18 +Version: 18.1.1.1-1 +Architecture: amd64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL Tools Team +Description: Tools for Microsoft(R) SQL Server(R) + This package provides tools for Microsoft(R) SQL Server(R). +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), msodbcsql18 (>= 18.0.0.0) +SHA256: 084728b16bcd4861296281290d731d22905fd298b6c2fd76036bf07314b6e952 +Size: 211806 +Filename: pool/main/m/mssql-tools18/mssql-tools18_18.1.1.1-1_amd64.deb + +Package: aadsshlogin +Version: 1.0.022300001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libcurl4, libuuid1, passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: 82bdc95a2213bc4c41f1e36dd7a457e45d2c61c9befaafa7bf18b9b10ab5e1ad +Size: 332420 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.022300001_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.310-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 331330 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.310 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.15), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.15), dotnet-apphost-pack-6.0 (>= 6.0.15), dotnet-runtime-6.0 (>= 6.0.15), aspnetcore-targeting-pack-6.0 (>= 6.0.15) +SHA256: 1c58a5fed9617e4c08ca224ebdc1b54a04797be23b10055ebf17ca7221f666e0 +Size: 85091654 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.310-x64.deb + +Package: moby-cli +Version: 26.1.4-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 38951 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: f62f658115fd8645e92c5291ae038fb5d3e95c7e6fee4d1a47f2333f9997ef1f +Size: 17169724 +Filename: pool/main/m/moby-cli/moby-cli_26.1.4-ubuntu22.04u1_amd64.deb + +Package: azure-proxy-agent +Version: 1.0.13 +Architecture: amd64 +Maintainer: AzureRT ProxyAgent V Team +Description: Azure Guest Proxy Agent + The Azure Guest Proxy Agent is a daemon that runs on the Azure guest + operating system and provides a proxy for the Azure Fabric Controller + to communicate with the guest operating system. + This package contains the proxy agent. +Homepage: https://github.com/Azure/GuestProxyAgent +Suggests: btrfs-progs, xfsprogs, grub2, udev, e2fsprogs, systemd +SHA256: d57a72be0f4d8556dbcc45c64b3bb4e709056a745a7f3449c64a7ed8f990870b +Size: 2305404 +Filename: pool/main/a/azure-proxy-agent/azure-proxy-agent_1.0.13_amd64.deb + +Package: dotnet-runtime-7.0 +Version: 7.0.0-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70798 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 7.0.0 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-deps-7.0 (>= 7.0.0), dotnet-hostfxr-7.0 (>= 7.0.0) +SHA256: e80ddae4ea254b74b1f0bc91a6ebdef405e57ec4bbee4dca96e7e0cad3510a34 +Size: 23190380 +Filename: pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.0-x64.deb + +Package: azure-ai-vision-runtime-core +Version: 0.10.0~beta.1 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 2602 +Maintainer: vision-sdk@microsoft.com +Description: Azure AI Vision Core Runtime Package +Depends: libc6 (>= 2.4), libgcc1 (>= 1:3.3.1), libstdc++6 (>= 6), libuuid1 (>= 2.16) +SHA256: 115f317b11d6b989cb7e2ca91a93378e72e1c0dd5c66b0b6e3302ba185756356 +Size: 647158 +Filename: pool/main/a/azure-ai-vision-runtime-core/azure-ai-vision-runtime-core-0.10.0~beta.1-Linux.deb + +Package: azure-functions-core-tools +Version: 4.0.5198-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 6d9ef3a2caa939749d9fa94af1f515878843591103b9e1ffaac6b6392d70641f +Size: 155432416 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5198-1.deb + +Package: dotnet-host +Version: 8.0.6-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 174 +Maintainer: .NET Team +Description: Microsoft .NET Host - 8.0.6 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libc6, libgcc1, libstdc++6 +SHA256: 21fcc4bd21e7b9ed25a3c4ca13e5b55b0beac16fe765e12cd038901e9f5a6972 +Size: 37678 +Filename: pool/main/d/dotnet-host/dotnet-host_8.0.6-1_amd64.deb + +Package: powershell-preview +Version: 7.3.0-preview.6-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 124622 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 0b7eb4ebeb1d19f8d448597fe54b55f3e7496da06ecf2470fe18dd3c616d250e +Size: 46623124 +Filename: pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.6-1.deb_amd64.deb + +Package: scx +Source: scx +Version: 1.8.1.0 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 7692 +Maintainer: Microsoft Corporation +Description: Microsoft System Center Operations Manager for UNIX/Linux agent + Provides server for Microsoft System Center Operations Manager. +Depends: omi (>= 1.0.8.6) +Provides: scx +SHA256: c6bb931c10229e14055c3f828c84ee9077702a0229c688a4cf6fe31e12b0e713 +Size: 2668450 +Filename: pool/main/s/scx/scx_1.8.1.0_amd64.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.14-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.14 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 776be3ad107314927d3d9ba8ad5ea2114287ad233d7aad2cb091996723779f48 +Size: 2886 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.14-1_amd64.deb + +Package: mdatp +Version: 101.23072.0021 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 386508 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, mde-netfilter +SHA256: 45c0dd0dc355044c38629a7f903c994669a523a1ce93cddc66e603937c1dae70 +Size: 133254902 +Filename: pool/main/m/mdatp/mdatp_101.23072.0021.amd64.deb + +Package: aspnetcore-targeting-pack-7.0 +Version: 7.0.4-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 13092 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-7.0 (>= 7.0.4) +SHA256: 92aa3d15a9f802c45b2845a99397eee7e8a3311e6464e6f45753a002e9b06e16 +Size: 1515026 +Filename: pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.4-x64.deb + +Package: msopenjdk-11 +Version: 11.0.15+10-LTS-1 +Architecture: amd64 +Section: java +Priority: extra +Installed-Size: 316139 +Maintainer: Microsoft +Description: OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, fonts-dejavu, java-common, libasound2, libc6, libfreetype6, libfontconfig1, libx11-6, libxext6, libxi6, libxrender1, libxtst6, zlib1g +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: 0a2a9f6be1fca5891486b90c4676b95c547e2df1a9750443ae2a8782234f3fa5 +Size: 193176730 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.15+10-LTS-1_amd64.deb + +Package: moby-buildx +Version: 0.16.0-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 79997 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 073c223869aadd33c814dc0c236ff2f3fbc5b8e038eff5f586aa5a5e04e13e2e +Size: 36181346 +Filename: pool/main/m/moby-buildx/moby-buildx_0.16.0-ubuntu22.04u1_amd64.deb + +Package: dotnet-sdk-3.1 +Version: 3.1.426-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 193108 +Maintainer: Microsoft +Description: Microsoft .NET Core SDK 3.1.426 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://dotnet.github.io/core +Depends: libc6 (>= 2.14), libgcc1 (>= 1:3.0), libstdc++6 (>= 4.6), dotnet-targeting-pack-3.1 (>= 3.1.0), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-3.1 (>= 3.1.32), aspnetcore-targeting-pack-3.1 (>= 3.1.10), dotnet-runtime-3.1 (>= 3.1.32), aspnetcore-runtime-3.1 (>= 3.1.32) +SHA256: 5d0ffe69e1f9b2196e012a9ec3e7dd55045f2cf648f008f48871505083eb707c +Size: 49845438 +Filename: pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.426-x64.deb + +Package: dotnet-apphost-pack-7.0 +Version: 7.0.0-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11276 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 7.0.0 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: c73045067b66eef7d977ef52b3795d35e3b82a4016b45f32a30c3b2108e4bbfd +Size: 3521952 +Filename: pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.0-x64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.9-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19862 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.9) +SHA256: 14e18640740f852138cc60bd0f5c34d9d136f225b7a249e682ece80e9f2d83bb +Size: 6608408 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.9-x64.deb + +Package: azure-functions-core-tools +Version: 4.0.4629-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 6acec0ac75a21a0081b2000090c2e0dd9c79016e1d85e8eea6129e52eba3b87f +Size: 124360040 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4629-1.deb + +Package: dotnet-host +Version: 6.0.11-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.11 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: b289ce53e31fa8638fc202c4696fb2c192f3f9dabdba3181d79d5b7cbafed030 +Size: 55824 +Filename: pool/main/d/dotnet-host/dotnet-host-6.0.11-x64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.6-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27360 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.6 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: e4f1574f7e6c0190741e4fad61ab8bcdf3576560688849c02f5b6a6e2600e855 +Size: 2119388 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.6-x64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.303-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 411907 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.303 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.7), dotnet-targeting-pack-8.0 (>= 8.0.7), dotnet-apphost-pack-8.0 (>= 8.0.7), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.7), aspnetcore-targeting-pack-8.0 (>= 8.0.7) +SHA256: 3a9e10a6963bfe4cf318d034c3cd5d45111f3ef26f1489a7474bd90692d5271c +Size: 106072298 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.303-1_amd64.deb + +Package: aspnetcore-runtime-7.0 +Version: 7.0.16-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 21369 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-7.0 (>= 7.0.16) +SHA256: d89b8aab394839163d3760ba81e5f53be2ce9939a627bd2d3a1516aa69697d27 +Size: 7065242 +Filename: pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.16-1_amd64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.21-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.21 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 586b47ef09438c1b2cd2b493d4947d861756b44d0183d0f4396c38f98df4b6a9 +Size: 2794 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.21-1_amd64.deb + +Package: dotnet-hostfxr-7.0 +Version: 7.0.15-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 428 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 7.0.15 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 7.0.15), libc6 +SHA256: 56cf859743c26f42f7399346aefaa3354c9b4083501592aefdf8e1e8b06a4367 +Size: 144782 +Filename: pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.15-1_amd64.deb + +Package: powershell +Version: 7.2.18-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 168903 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 3a53bb61b6014124f414f418989626896b6de99a8298c1072e1635d48c2c5cd5 +Size: 68361032 +Filename: pool/main/p/powershell/powershell_7.2.18-1.deb_amd64.deb + +Package: moby-compose +Version: 2.29.1-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61813 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: bb6e3d2d44ee97a717c46780aabf7b01adcec1dfb86f6ef7842829435affbf6f +Size: 18569054 +Filename: pool/main/m/moby-compose/moby-compose_2.29.1-ubuntu22.04u1_amd64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.26-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11750 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.26) +SHA256: f3462e8caa8654d56e7d53c18b8663348421d688bd2fab2d0f121e319ac926f8 +Size: 1316098 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.26-1_amd64.deb + +Package: powershell +Version: 7.4.0-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 177040 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 550331e243a7311e1bf0ca83d8c96c5e78ba82a765c4a9ba34aa0db6eb9a9f22 +Size: 70990254 +Filename: pool/main/p/powershell/powershell_7.4.0-1.deb_amd64.deb + +Package: moby-cli +Version: 24.0.8-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 35266 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 9d52baf3947847f272f512206a794683366bc1769879b8a0f81d009f7a54068d +Size: 15624744 +Filename: pool/main/m/moby-cli/moby-cli_24.0.8-ubuntu22.04u1_amd64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.5-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27360 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.5 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 176e5dcfe41ae8e829b78799b22f2249c3f11aeffa831643c8e4c089e533366c +Size: 2124774 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.5-x64.deb + +Package: dotnet-targeting-pack-7.0 +Version: 7.0.3-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 31135 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 7.0.3 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 2723e90f7b3dd4840f4a5ecc62549f04ef3ff82f93fd177e5b8afa30d995748f +Size: 2568010 +Filename: pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.3-x64.deb + +Package: libmsquic +Version: 2.2.3 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 12958 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: ef87381c18c6b2632d71b74529e51e6fdaccd66e28db7b38853911adeedf5636 +Size: 3958782 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.3_amd64.deb + +Package: powershell-lts +Version: 7.4.3-1.deb +Architecture: amd64 +Section: shells +Priority: optional +Installed-Size: 176715 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 72d27d602c90a283d2f1543163f27cf5e6a59deca0fe940bba753da310bef3b2 +Size: 70985338 +Filename: pool/main/p/powershell-lts/powershell-lts_7.4.3-1.deb_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.316-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 331512 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.316 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.21), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.21), dotnet-apphost-pack-6.0 (>= 6.0.21), dotnet-runtime-6.0 (>= 6.0.21), aspnetcore-targeting-pack-6.0 (>= 6.0.21) +SHA256: 47cfedb8743e3dbea1e1e600cd95706dfa2f6efe425cf4662693d8734405ee8f +Size: 85176670 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.316-1_amd64.deb + +Package: aziot-edge +Version: 1.5.7-1 +Architecture: amd64 +Section: admin +Priority: extra +Installed-Size: 17212 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, psmisc, sed, aziot-identity-service (= 1.5.1-1) +SHA256: 38594c6c1819d9fc20cc3b14dd9c85bf6a9ab4a28226874a3ce3f60f003703f2 +Size: 4464476 +Filename: pool/main/a/aziot-edge/aziot-edge_1.5.7-1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.102-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 350061 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.102 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.2), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.2), dotnet-runtime-7.0 (>= 7.0.2), dotnet-targeting-pack-7.0 (>= 7.0.2), aspnetcore-runtime-7.0 (>= 7.0.2) +SHA256: 33b2df24c016de3a7bc5436cc3ede1be2eb990a7b66d5744060b140890174a45 +Size: 90599622 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.102-x64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.119-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 314323 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.119 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.19), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.19), dotnet-apphost-pack-6.0 (>= 6.0.19), dotnet-runtime-6.0 (>= 6.0.19), aspnetcore-targeting-pack-6.0 (>= 6.0.19) +SHA256: 012290bff29f75dadc362e8844c7cac4be6a392a62eb630ba3e78701c8c9cc73 +Size: 78874786 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.119-x64.deb + +Package: azure-functions-core-tools-3 +Version: 3.0.4727-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v3 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools, azure-functions-core-tools-2 +Replaces: azure-functions-core-tools, azure-functions-core-tools-2 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 0566fd72c633ba531b52f13b777579f056bffceb889bbf667a7b58278da3ed76 +Size: 227697024 +Filename: pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4727-1.deb + +Package: sysmonforlinux +Version: 1.3.1 +Architecture: amd64 +Installed-Size: 58934 +Maintainer: Sysinternals +Description: A system monitor based on eBPF, ported from Windows, that outputs events to Syslog +Depends: libc6 (>= 2.14), libgcc1 (>= 1:3.0), libstdc++6 (>= 5), libxml2 (>= 2.7.4), libssl-dev, sysinternalsebpf (>= 1.2.0) +SHA256: 7f12efadf7332ca8cf6f84980b4dab8947b35e57e4ea159b757678da4c685cce +Size: 3204094 +Filename: pool/main/s/sysmonforlinux/sysmonforlinux_1.3.1_amd64.deb + +Package: msodbcsql17 +Version: 17.10.2.1-1 +Architecture: amd64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: cc1b9698129f000c611f81b30e095a4cad804fba0af522b4d4e0035e51b82284 +Size: 744524 +Filename: pool/main/m/msodbcsql17/msodbcsql17_17.10.2.1-1_amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.5095-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: fbd61709f8d36b229cc8fefd7fb657958c6e05a60cc63cce0e8e1c61bfe2e267 +Size: 156055452 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5095-1.deb + +Package: dotnet-runtime-deps-3.1 +Version: 3.1.29-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Core Team +Description: dotnet-runtime-deps-3.1 3.1.29 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +Homepage: https://dot.net/core +Depends: libgcc1, libssl1.0.0 | libssl1.0.2 | libssl1.1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: a43e2efe34f43412e02ef3deffe082cafc2e807e52f435184ab4a80f9dd325ac +Size: 2688 +Filename: pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.29-x64.deb + +Package: aspnetcore-runtime-7.0 +Version: 7.0.2-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 21337 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-7.0 (>= 7.0.2) +SHA256: 2c6630799fbc17eebedc7a256c11e3340201d455e5c2aa5ce64e552aa07ab848 +Size: 7050582 +Filename: pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.2-x64.deb + +Package: dotnet-host +Version: 6.0.19-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.19 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 278bed877fa7bc39a69554a244ee6caa905f499e7ad316ecd03c04138e8e65cc +Size: 55870 +Filename: pool/main/d/dotnet-host/dotnet-host-6.0.19-x64.deb + +Package: libmsquic +Version: 2.1.0 +Architecture: amd64 +Section: default +Priority: extra +Installed-Size: 22568 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 1b4cdb99cf8e012c21098ac60cd6f1a364e4dc191173cb5e8782032eaed30e39 +Size: 6402384 +Filename: pool/main/libm/libmsquic/libmsquic_2.1.0_amd64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.30-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.30 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 3ff7d13b1c1d158e1aa300a03231826e063ba6ee839b49543ea99e7a44354ef8 +Size: 2129644 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.30-1_amd64.deb + +Package: dotnet-runtime-7.0 +Version: 7.0.17-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70852 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 7.0.17 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-deps-7.0 (>= 7.0.17), dotnet-hostfxr-7.0 (>= 7.0.17) +SHA256: f21a7aba1a510ef7d6cca62bd228478a5780e3a3f3bc4248cb2c42362efa94ca +Size: 23206018 +Filename: pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.17-1_amd64.deb + +Package: dotnet-hostfxr-8.0 +Version: 8.0.7-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 296 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 8.0.7 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libc6, libgcc1, libstdc++6, dotnet-host (>= 8.0.7) +SHA256: b7aca00d93ad96a96feb2d12b60ebec9035fcc54d359b08f12c5d40f0a26d22f +Size: 108042 +Filename: pool/main/d/dotnet-hostfxr-8.0/dotnet-hostfxr-8.0_8.0.7-1_amd64.deb + +Package: aspnetcore-runtime-8.0 +Version: 8.0.0-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 23460 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-8.0 (>= 8.0.0) +SHA256: c8e1ed5bf23e1e0856372287e2db84a2f8c28a63a2ad4381e2bef2ba4af40a6a +Size: 7658466 +Filename: pool/main/a/aspnetcore-runtime-8.0/aspnetcore-runtime-8.0_8.0.0-1_amd64.deb + +Package: dotnet-host +Version: 8.0.4-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 174 +Maintainer: .NET Team +Description: Microsoft .NET Host - 8.0.4 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libc6, libgcc1, libstdc++6 +SHA256: cd472026a37d6cd1a861f5d0db98245d68e1eafaa31b003f87d7d387fe63da4b +Size: 37778 +Filename: pool/main/d/dotnet-host/dotnet-host_8.0.4-1_amd64.deb + +Package: aadsshlogin +Version: 1.0.022600002 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libcurl4, libuuid1, passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: 61be9a2b3fb969ee65eaa6436ea0ddbab49c9f69c069c3837b1683088d7a295d +Size: 332792 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.022600002_amd64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.28-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.28 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 4221e1401ea5359bfed11fad9213654311fc3a4673f08f132dfc1da3f3b6ab52 +Size: 2802 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.28-1_amd64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.31-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.31 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 134007d0820974653198076aad08aa933ac1497d031a2cf62bb52432aadb3982 +Size: 2124952 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.31-1_amd64.deb + +Package: dotnet-targeting-pack-8.0 +Version: 8.0.4-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 36082 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 8.0.4 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: ac7e271b4d15cd0e4c454642697e182dbf510bfa2b0c3bc3fdf19a90408720df +Size: 2801506 +Filename: pool/main/d/dotnet-targeting-pack-8.0/dotnet-targeting-pack-8.0_8.0.4-1_amd64.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.18-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.18 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: c882cbbb36c81c7c0ee1aeaf7af8543c34505db356577634adefe3ff48b81074 +Size: 2890 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.18-1_amd64.deb + +Package: virtualclient +Version: 1.12.0 +Architecture: amd64 +Maintainer: Virtual Client Team +Description: VirtualClient, the open sourced workload automation. +SHA256: c3d28e8220c761e482d1f0df5e1c76ea1005f9c70891923060f074287d1417bb +Size: 44677048 +Filename: pool/main/v/virtualclient/virtualclient_1.12.0_amd64.deb + +Package: dotnet-targeting-pack-8.0 +Version: 8.0.1-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 36082 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 8.0.1 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 2070580673f8397d414354c5e9b87c0c19cd4a4936a415d830d8d050c331f8e6 +Size: 2799458 +Filename: pool/main/d/dotnet-targeting-pack-8.0/dotnet-targeting-pack-8.0_8.0.1-1_amd64.deb + +Package: powershell-lts +Version: 7.4.1-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 177171 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 0916f1b7ad3f56e9dcadae1a7b22b0fa28d4542d3aaae50fe3979de1c13c1fd2 +Size: 71020714 +Filename: pool/main/p/powershell-lts/powershell-lts_7.4.1-1.deb_amd64.deb + +Package: dotnet-host +Version: 6.0.23-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.23 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: b09d6cde7441c2eaff5b52f2946dbd20f13c27277b7882b083db362c5c982ab4 +Size: 55798 +Filename: pool/main/d/dotnet-host/dotnet-host_6.0.23-1_amd64.deb + +Package: dotnet-runtime-deps-8.0 +Version: 8.0.3-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 8.0.3 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52 +SHA256: ab4e7cb5992f18e9e212580316b211ab63143fadf3f501e62036642a28c0179c +Size: 2886 +Filename: pool/main/d/dotnet-runtime-deps-8.0/dotnet-runtime-deps-8.0_8.0.3-1_amd64.deb + +Package: dotnet-host +Version: 6.0.12-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.12 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: b7e55da6f87aa87547fe6feb6bdae72ee2359d2db46ee35b86e58209fd951116 +Size: 55976 +Filename: pool/main/d/dotnet-host/dotnet-host-6.0.12-x64.deb + +Package: procdump +Version: 3.2.0 +Architecture: amd64 +Maintainer: Sysinternals +Description: Sysinternals process dump utility + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +Depends: zlib1g, gdb (>= 7.6.1) +License: MIT +SHA256: f112dc8bedab3f7a4e4da887b3e8807e02187838ffc8c5fd3ecae2418db9db4e +Size: 1352898 +Filename: pool/main/p/procdump/procdump_3.2.0_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.27-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68481 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.27 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.27), dotnet-runtime-deps-6.0 (>= 6.0.27) +SHA256: 7eb538c66ae9104b7e154851844a412212a54b40b78b6685ce877c34d643b1a8 +Size: 22886578 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.27-1_amd64.deb + +Package: azcmagent +Version: 1.28.02260.736 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 3c15e96bd33a66432e397062305c47f62d7e29cb1daca0984e5c8e7d01e51a43 +Size: 53738666 +Filename: pool/main/a/azcmagent/azcmagent_1.28.02260.736_amd64.deb + +Package: azureauth +Version: 0.8.5-1 +Architecture: amd64 +Section: misc +Priority: optional +Installed-Size: 75650 +Maintainer: ES365 Security Experience Team +Description: A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information. +SHA256: dbdd1d2733d0b8e41f73d8e240c9528d8817112c750f9b55af1b9e5f7800f70c +Size: 24642054 +Filename: pool/main/a/azureauth/azureauth_0.8.5-1_amd64.deb + +Package: dotnet-hostfxr-7.0 +Version: 7.0.4-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 424 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 7.0.4 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 7.0.4), libc6 +SHA256: 868d65aea8e5f2dc487d5f3bc1f6611778a5193483f10f401bb3353dc82d9ce6 +Size: 144018 +Filename: pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.4-x64.deb + +Package: dotnet-host +Version: 7.0.2-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 246 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.2 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: bbacafb7536e169aae3c7f15ef9785cfd81fef05408bd1fd38fe91d376329367 +Size: 57478 +Filename: pool/main/d/dotnet-host/dotnet-host-7.0.2-x64.deb + +Package: moby-buildx +Version: 0.10.3+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 69080 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 9b12e7300111fcb40e85fc67aac6e380efea502b85f55cdd96aa4d7356bd0fb8 +Size: 27169142 +Filename: pool/main/m/moby-buildx/moby-buildx_0.10.3+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-runtime-7.0 +Version: 7.0.11-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70840 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 7.0.11 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-deps-7.0 (>= 7.0.11), dotnet-hostfxr-7.0 (>= 7.0.11) +SHA256: fa711a6984616fe99212ded1e724154711ced7a404e8488d346eae0e0ca7efc6 +Size: 23210182 +Filename: pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.11-1_amd64.deb + +Package: dotnet-targeting-pack-7.0 +Version: 7.0.10-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 31138 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 7.0.10 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: bee459e34ba71863e88d8ea956848c9359d66b911cf091de58024cba0257e043 +Size: 2568242 +Filename: pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.10-1_amd64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.11-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.11 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 35df0bf15be9fb9a66e520425a3d4ec04b16612f9cb57570a2403ad84eda6e89 +Size: 2133946 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.11-x64.deb + +Package: moby-compose +Version: 2.16.0+azure-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 46224 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: d70e74114184536d77a245249407c26abc75715678be98079d461615592a6ddc +Size: 11268018 +Filename: pool/main/m/moby-compose/moby-compose_2.16.0+azure-ubuntu22.04u2_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.26-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 456 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.26 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.26), libc6 +SHA256: a1da38895af06443ac2580ea833cb56d1794d23607e4f855b8c1be052962880f +Size: 143576 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.26-1_amd64.deb + +Package: azure-functions-core-tools +Version: 3.0.4868-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v3 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools, azure-functions-core-tools-2 +Replaces: azure-functions-core-tools, azure-functions-core-tools-2 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: b2e8605baa0ace12a5a635924875fffedc8e73688d592758212e9fc6c3e23cdd +Size: 228284784 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4868-1.deb + +Package: dotnet-host +Version: 6.0.24-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.24 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: d3e1b4542b0a826316d1fbbcd96f5c4672de7988939f11d478995ab0ee00fbf7 +Size: 55918 +Filename: pool/main/d/dotnet-host/dotnet-host_6.0.24-1_amd64.deb + +Package: aziot-identity-service +Version: 1.5.2-1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 17199 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1), psmisc +SHA256: 4d83128f7274493fb33335acf98ca3abab9beea59f4ed983ee0e703375abc4f9 +Size: 4187326 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.5.2-1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.406-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 402078 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.406 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.16), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.16), dotnet-runtime-7.0 (>= 7.0.16), dotnet-targeting-pack-7.0 (>= 7.0.16), aspnetcore-runtime-7.0 (>= 7.0.16) +SHA256: b8f06fc26f69758d7f829fecab5fefbdc76fec96fe3716da8271c2cf8a8dc31a +Size: 108375070 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.406-1_amd64.deb + +Package: blobfuse2 +Version: 2.2.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 30900 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: 29a04e92b006a9dffcec87cee70f6ac495a0725a7032e8828ab2558fa38a0cad +Size: 15434950 +Filename: pool/main/b/blobfuse2/blobfuse2_2.2.0_amd64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.22-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.22 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 2d08ac3f8822a62d2ec5384bed68abfe55a52199c0960a43793a8f92c712ab84 +Size: 2792 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.22-1_amd64.deb + +Package: azureauth +Version: 0.8.4-1 +Architecture: amd64 +Section: misc +Priority: optional +Installed-Size: 75617 +Maintainer: ES365 Security Experience Team +Description: A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information. +SHA256: 79bd0a12a3bad516c7511db2f08232f7313501ace0785f85ce2ac6b385d2244e +Size: 24635978 +Filename: pool/main/a/azureauth/azureauth_0.8.4-1_amd64.deb + +Package: dotnet-targeting-pack-7.0 +Version: 7.0.18-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 31138 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 7.0.18 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 467aadbed9b5c9d655b09f3ce1e6d3db6ba20aada535829710df809a75e28be2 +Size: 2571530 +Filename: pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.18-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.418-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 337405 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.418 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.26), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.26), dotnet-apphost-pack-6.0 (>= 6.0.26), dotnet-runtime-6.0 (>= 6.0.26), aspnetcore-targeting-pack-6.0 (>= 6.0.26) +SHA256: 4085441b10c23f562be2b66bdd634f118fd050bea044e818b4a7b3e16e4dfe09 +Size: 86858026 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.418-1_amd64.deb + +Package: intune-portal +Version: 1.2312.35-jammy +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 26649 +Maintainer: Microsoft +Description: Microsoft Intune + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +Depends: msalsdk-dbusclient (>= 1.0), libdbus-1-3 (>= 1.9.14), libsystemd0, libpam0g (>= 0.99.7.1), libgtk-3-0 (>= 3.9.10), libsqlite3-0 (>= 3.7.14), zlib1g (>= 1:1.2.0), libgtk-3-0 (>= 3.21.4), libglib2.0-0 (>= 2.12.0), libwebkit2gtk-4.0-37 (>= 2.39.90), libglib2.0-0 (>= 2.35.8), libsecret-1-0 (>= 0.7), libc6 (>= 2.34), libuuid1 (>= 2.16), libpam-pwquality (>= 1.4.0-2), gnome-keyring (>= 3.36), libcurl4 (>= 7.16.2), libjavascriptcoregtk-4.0-18, libssl3 (>= 3.0.0~~alpha1), libstdc++6 (>= 12), libatk1.0-0 (>= 1.12.4), libsoup2.4-1 (>= 2.4.0), libx11-6, libpango-1.0-0 (>= 1.14.0) +Recommends: microsoft-edge-stable (>= 102) +SHA256: 9a0727aa3ffee1f7cc7f83e1316e28bc2a2d2e2972b9d18ea67d2aa976429b37 +Size: 6553082 +Filename: pool/main/i/intune-portal/intune-portal_1.2312.35-jammy_amd64.deb + +Package: moby-compose +Version: 2.14.2+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 43880 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 30d87dae671163749b8ba94d38cfc7b6760f6e58916a17e05d36a8db2cd30b9f +Size: 10685566 +Filename: pool/main/m/moby-compose/moby-compose_2.14.2+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-runtime-deps-8.0 +Version: 8.0.7-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 8.0.7 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52 +SHA256: ce8e0ef31e4442df07f4446c1c021fbb75c782cb37b6bbb84d7fdd860a537c28 +Size: 2890 +Filename: pool/main/d/dotnet-runtime-deps-8.0/dotnet-runtime-deps-8.0_8.0.7-1_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.10-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11067 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.10 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 3c8fc6205fe4da858312a53ed26f0135213d0c59125831e51309e484536801eb +Size: 3519186 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.10-x64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.30-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.30 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 043ac13c79e5c4119edc3c8ce7bc93e8ba1e0224dca5bdc835fbc99efd72d6c5 +Size: 2794 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.30-1_amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.5030-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 6486ba6279fa7e1402a9a57eb2fb5623513807378a83418e83c68d89ef14e291 +Size: 156016092 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5030-1.deb + +Package: azure-functions-core-tools +Version: 4.0.5907-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 13523212d7ca54ee91c59fe7be20b9a460f075f548b03704e92f4206a9341119 +Size: 208344190 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5907-1_amd64.deb + +Package: powershell +Version: 7.2.15-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 168905 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 27ac4fa4f3e7f0934afb4883df21e572b3d9650e17221d0f3f288f250a92dbc9 +Size: 68350538 +Filename: pool/main/p/powershell/powershell_7.2.15-1.deb_amd64.deb + +Package: msodbcsql18 +Version: 18.3.2.1-1 +Architecture: amd64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: ae8eea58236e46c3f4eae05823cf7f0531ac58f12d90bc24245830b847c052ee +Size: 755938 +Filename: pool/main/m/msodbcsql18/msodbcsql18_18.3.2.1-1_amd64.deb + +Package: azcmagent +Version: 1.46.02809.1707 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 7c96c04a956b16b866c56c2c55abdd5565342b0392019cd5e2edb65171287d95 +Size: 67295686 +Filename: pool/main/a/azcmagent/azcmagent_1.46.02809.1707_amd64.deb + +Package: dotnet-runtime-deps-8.0 +Version: 8.0.0-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 8.0.0 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52 +SHA256: 02a828a0df7ebb1c6349de6818050d89d9ffe15d4069fea937fd451e4e3671e1 +Size: 2890 +Filename: pool/main/d/dotnet-runtime-deps-8.0/dotnet-runtime-deps-8.0_8.0.0-1_amd64.deb + +Package: dotnet-host +Version: 6.0.30-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.30 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: ef935dba25aeb660c2716c4855cc714e21f67a205f9ba2ec8e6a3a1df209611f +Size: 55790 +Filename: pool/main/d/dotnet-host/dotnet-host_6.0.30-1_amd64.deb + +Package: dotnet-apphost-pack-3.1 +Version: 3.1.29-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 214 +Maintainer: .NET Core Team +Description: Microsoft.NETCore.App.Host 3.1.29 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 88479611946f8cd8c44c834899a935d356d2b6baca8d6ea9d7a2ee0e00c23f7f +Size: 42066 +Filename: pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.29-x64.deb + +Package: aspnetcore-targeting-pack-7.0 +Version: 7.0.11-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 13097 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-7.0 (>= 7.0.11) +SHA256: f978b549faf888d3b27caecc94ed4afe26b9bd7be908e44349e7fc7b749747fc +Size: 1526066 +Filename: pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.11-1_amd64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.27-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.27 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 60e35d49521ede05041e5962eceeb019a8f81bd03db452363ada1b0c7d6ea142 +Size: 2796 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.27-1_amd64.deb + +Package: powershell-preview +Version: 7.3.0-preview.8-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 192266 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 7a3aee968950be1b9dc7e8900ce2ac8537cc349dbb5f8c9ec4147ae5d6c704a1 +Size: 69296044 +Filename: pool/main/p/powershell-preview/powershell-preview_7.3.0-preview.8-1.deb_amd64.deb + +Package: aspnetcore-runtime-3.1 +Version: 3.1.29-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 17481 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/aspnet/AspNetCore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-3.1 (>= 3.1.29) +SHA256: fd481d70bab41f4400425f4e3d8ec6c1079a6e45e865c83c3fb2d5b522fba29c +Size: 5771912 +Filename: pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.29-x64.deb + +Package: azapi2azurerm +Version: 1.4.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 20908 +Maintainer: henglu +Description: A tool to migrate terraform resources from azapi to azurerm +Homepage: https://github.com/Azure/azapi2azurerm +Vendor: none +License: MPL-2.0 +SHA256: 0c6f68997ef36825f1e97b05ed227c8f12fecb3356029da3e10423c72b650661 +Size: 6728440 +Filename: pool/main/a/azapi2azurerm/azapi2azurerm-1.4.0-1-amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.116-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 349750 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.116 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.16), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.16), dotnet-runtime-7.0 (>= 7.0.16), dotnet-targeting-pack-7.0 (>= 7.0.16), aspnetcore-runtime-7.0 (>= 7.0.16) +SHA256: 74347cffc66399b810a45763d211ac0384ee659b7ddacfb42ec38cc2c8fe16be +Size: 90596758 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.116-1_amd64.deb + +Package: aspnetcore-runtime-8.0 +Version: 8.0.4-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 23506 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-8.0 (>= 8.0.4) +SHA256: ed4555783f72408ac41c928ef712e4634db37bafea84a46295dd424f4d17564d +Size: 7671942 +Filename: pool/main/a/aspnetcore-runtime-8.0/aspnetcore-runtime-8.0_8.0.4-1_amd64.deb + +Package: mdatp +Version: 101.23092.0012 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 421585 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, libpcre3, mde-netfilter +SHA256: 6638d618a71e75c4e0453f91c3e0c2235cc380b63efb75f6b02d7935423c8741 +Size: 133858702 +Filename: pool/main/m/mdatp/mdatp_101.23092.0012_amd64.deb + +Package: moby-buildx +Version: 0.15.1-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 79801 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 9e0ca68c8888d14097e3ddfb584d8ea02550304c03781c7d4f4b9a1fc1ba0677 +Size: 36101130 +Filename: pool/main/m/moby-buildx/moby-buildx_0.15.1-ubuntu22.04u1_amd64.deb + +Package: dotnet-targeting-pack-7.0 +Version: 7.0.8-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 31138 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 7.0.8 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: e5638610bf3a4a5a45029e91edba0ecc1a6d45d25e733014a4a1ffe927a34aaa +Size: 2569446 +Filename: pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.8-x64.deb + +Package: powershell +Version: 7.3.5-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 172707 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 67dc90155fea76997645ca7490db1d33d2afd7328df609a2d1c985be0229c13b +Size: 69306108 +Filename: pool/main/p/powershell/powershell_7.3.5-1.deb_amd64.deb + +Package: dotnet-runtime-7.0 +Version: 7.0.15-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70848 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 7.0.15 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-deps-7.0 (>= 7.0.15), dotnet-hostfxr-7.0 (>= 7.0.15) +SHA256: 8c3af2bad6f68fd895f58917a7aff697eb6910befd33c553d7f0b28b415c980b +Size: 23204446 +Filename: pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.15-1_amd64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.4-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19846 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.4) +SHA256: 87c010ec02884e7dbc8592468b23f521b3002a2a94615b4e3a1bdeac84f0f82d +Size: 6603012 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.4-x64.deb + +Package: powershell-lts +Version: 7.2.5-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 186998 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: d7f432866b4da70a8e0ed7e2221c165406f2e04f2c691e69960ccf85aa53ba93 +Size: 69388194 +Filename: pool/main/p/powershell-lts/powershell-lts_7.2.5-1.deb_amd64.deb + +Package: moby-compose +Version: 2.26.1-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61393 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 8df32b49d628f51e1d1e0a9186e6c9739ad2cf179c6b2b777246beb263b93228 +Size: 18422358 +Filename: pool/main/m/moby-compose/moby-compose_2.26.1-ubuntu22.04u1_amd64.deb + +Package: moby-cli +Version: 26.1.3-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 38952 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 4e7a862592f2485881f59518cb88dd0f9e955624b48d1bf73e216655e5d5505e +Size: 17171594 +Filename: pool/main/m/moby-cli/moby-cli_26.1.3-ubuntu22.04u1_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.15-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68431 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.15 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.15), dotnet-runtime-deps-6.0 (>= 6.0.15) +SHA256: 06c1d3b8bd5657d0874fd729658659ad614176f7fa04e164f9dc785fcc9596e5 +Size: 23080224 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.15-x64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.304-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 331267 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.304 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.9), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.9), dotnet-apphost-pack-6.0 (>= 6.0.9), dotnet-runtime-6.0 (>= 6.0.9), aspnetcore-targeting-pack-6.0 (>= 6.0.9) +SHA256: 4110bad4f70bd90a71271910d42d25449164217d2e2078e4f9280c024e2b76b8 +Size: 85036956 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.304-x64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.408-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 402088 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.408 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.18), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.18), dotnet-runtime-7.0 (>= 7.0.18), dotnet-targeting-pack-7.0 (>= 7.0.18), aspnetcore-runtime-7.0 (>= 7.0.18) +SHA256: c8730348a6eddc501289509fe01af7231e9a46b56c81891d8fc0a3b8756db271 +Size: 108376186 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.408-1_amd64.deb + +Package: dotnet-apphost-pack-7.0 +Version: 7.0.2-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11276 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 7.0.2 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 6b2b8194c70db56df207d29a1fc982494607c0e6478cf650cffd8973662d1e2a +Size: 3523898 +Filename: pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.2-x64.deb + +Package: dotnet-host +Version: 6.0.22-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.22 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 08db6e033a295f61b61c4b7145530cce7dbde0dd485a58e67fa98a0873b7abc2 +Size: 56000 +Filename: pool/main/d/dotnet-host/dotnet-host_6.0.22-1_amd64.deb + +Package: dotnet-targeting-pack-7.0 +Version: 7.0.15-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 31138 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 7.0.15 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: b26bf4b35ba020fb724523913e872040f875eef2075eb5c1aadcbe4be02816f3 +Size: 2568778 +Filename: pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.15-1_amd64.deb + +Package: msopenjdk-11 +Version: 11.0.20-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 317734 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 11 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: f5dd608c47a122ba604277b10d19d76dee2562d86b670402afe568f219d946a8 +Size: 166768998 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20-1_amd64.deb + +Package: azapi2azurerm +Version: 0.6.0 +Architecture: amd64 +Section: default +Priority: extra +Installed-Size: 20424 +Maintainer: henglu +Description: A tool to migrate terraform resources from azapi to azurerm +Homepage: https://github.com/Azure/azapi2azurerm +Vendor: none +License: MPL-2.0 +SHA256: 107a2e822c62d94cd14b9b4402a135c634c1dbaac0e6e70b92803775ea27a671 +Size: 6691356 +Filename: pool/main/a/azapi2azurerm/azapi2azurerm-0.6.0-1-amd64.deb + +Package: dotnet-targeting-pack-7.0 +Version: 7.0.20-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 31138 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 7.0.20 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: cc61dd8a204c68636892959695984057effb52b6519c6a4a41f95ba8db50db17 +Size: 2568226 +Filename: pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.20-1_amd64.deb + +Package: powershell-preview +Version: 7.5.0-preview.1-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 177169 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 5bf4e25e62723d4c203515aa72b6ce8c47ae1d569c4d2c15603b996d92813bbe +Size: 70967782 +Filename: pool/main/p/powershell-preview/powershell-preview_7.5.0-preview.1-1.deb_amd64.deb + +Package: msopenjdk-11 +Version: 11.0.19-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 317712 +Maintainer: Microsoft +Description: OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: fonts-dejavu, libx11-6, libxext6, libxi6, libxrender1, libxtst6, libasound2, libfontconfig1, libfreetype6 +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: 5dd9d213017e1885ba6031e313ee2a7fc4779f757e08de981cee0afbbc318a31 +Size: 194122530 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.19-1_amd64.deb + +Package: sysinternalsebpf +Version: 1.1.1 +Architecture: amd64 +Installed-Size: 22072 +Maintainer: Sysinternals +Description: A shared library and code library for making eBPF programs. + SysinternalsEBPF is a shared library that provides control over + eBPF programs, and an eBPF code library that eBPF programs can include to + interact with the library. +Depends: libc6 (>= 2.26), libelf1 (>= 0.131), libglib2.0-0 (>= 2.12.0), libjson-glib-1.0-0 (>= 0.13.2), zlib1g (>= 1:1.2.3.3) +SHA256: 1dd9e60dfefcc67a0617b864467b91237043d0ec1bff053d6d09a147aa33bcdd +Size: 675114 +Filename: pool/main/s/sysinternalsebpf/sysinternalsebpf_1.1.1-0_amd64.deb + +Package: dotnet-host +Version: 7.0.12-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 246 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.12 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 168de157996cc20afcb22c99aa363447aa177347b7d053ee1e4c12e36e5adebc +Size: 57382 +Filename: pool/main/d/dotnet-host/dotnet-host_7.0.12-1_amd64.deb + +Package: azure-functions-core-tools +Version: 3.0.4585-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v3 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools, azure-functions-core-tools-2 +Replaces: azure-functions-core-tools, azure-functions-core-tools-2 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 58ce91afd0f47a39afbdc904f1ce072811babf6d46c76a731e907fd6e766789b +Size: 224546072 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4585-1.deb + +Package: moby-compose +Version: 2.14.1+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 43880 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: ba884a516ce574bfd5f2da1b6af32ef6ef828a82179094c80424f78328817014 +Size: 10686292 +Filename: pool/main/m/moby-compose/moby-compose_2.14.1+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.9-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27377 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.9 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 013256f409694381c6fb4dc00177e901e26078cd3ad0c478ccb681b4912f9817 +Size: 2124346 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.9-x64.deb + +Package: azure-functions-core-tools +Version: 4.0.5274-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: f04b2dab917e9b09b5b1cdac3033c8048eb822d7dae1991a0827a2c7ccbcbf97 +Size: 156746648 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5274-1.deb + +Package: moby-compose +Version: 2.11.2+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 43496 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: e4ca7c3d4e29225804f5345f9bcf0aae738d180e92ab94c638656f542046d259 +Size: 10604894 +Filename: pool/main/m/moby-compose/moby-compose_2.11.2+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.4-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.4 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libssl1.0.0 | libssl1.0.2 | libssl1.1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 4438107a1e87d88552be66d4f97174d2858749562bc585e111a556c6163c62d8 +Size: 2808 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.4-x64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.23-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.23 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 32a124e361da79d71007cf8a9f1c916ba7fb543d06eae504eeb58e23cd9bfe5d +Size: 2798 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.23-1_amd64.deb + +Package: libmsquic +Version: 2.1.2 +Architecture: amd64 +Section: default +Priority: extra +Installed-Size: 16078 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 0df8998cc932b73a6ab74b9849a399e23d333772f47d1cd4d83a41e986202a20 +Size: 4117900 +Filename: pool/main/libm/libmsquic/libmsquic_2.1.2_amd64.deb + +Package: dotnet-runtime-7.0 +Version: 7.0.12-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70841 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 7.0.12 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-deps-7.0 (>= 7.0.12), dotnet-hostfxr-7.0 (>= 7.0.12) +SHA256: 73ed33d0f0b7f6bbbc0aa1ce299eb90eb8785186be7a8e480fc06ebd18127b3b +Size: 23211158 +Filename: pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.12-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.309-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 331328 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.309 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.14), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.14), dotnet-apphost-pack-6.0 (>= 6.0.14), dotnet-runtime-6.0 (>= 6.0.14), aspnetcore-targeting-pack-6.0 (>= 6.0.14) +SHA256: 1b15ae59bf908d402771e5f04ce49a9e1e79e56efbbf37f51e44ae85e4fe5775 +Size: 85106134 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.309-x64.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.0-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.0 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 0690100dc9512fa877e61df0f6566c66635d634f8567bfa26edf9e9f317be0e1 +Size: 2892 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.0-x64.deb + +Package: dotnet-targeting-pack-8.0 +Version: 8.0.3-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 36082 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 8.0.3 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 2c833d7f3a8a9f7de49b4d5a1f166fc3b8b8b4ea573a64743799a0ce94d34880 +Size: 2803570 +Filename: pool/main/d/dotnet-targeting-pack-8.0/dotnet-targeting-pack-8.0_8.0.3-1_amd64.deb + +Package: moby-buildx +Version: 0.17.0-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 80041 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 99de3403e1bae736cbc49451373287754428e0fbd6a6f06e3a614df47167b2b7 +Size: 36204608 +Filename: pool/main/m/moby-buildx/moby-buildx_0.17.0-ubuntu22.04u1_amd64.deb + +Package: azure-functions-core-tools +Version: 3.0.4727-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v3 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools, azure-functions-core-tools-2 +Replaces: azure-functions-core-tools, azure-functions-core-tools-2 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 3d49b06db4758632dcb37f6e77e67fd27c62b7ca92b88a4402534d12427acc5c +Size: 227694792 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4727-1.deb + +Package: dotnet-hostfxr-3.1 +Version: 3.1.31-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 408 +Maintainer: .NET Core Team +Description: Microsoft .NET Core Host FX Resolver - 3.1.31 3.1.31 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://dot.net/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 3.1.31), libc6 +SHA256: 56ef9743de9e2daf7a37873c7d8df3b022354219ec5f8f53a7a5c02138ac405f +Size: 120744 +Filename: pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.31-x64.deb + +Package: powershell-lts +Version: 7.4.2-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 177241 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 1b3bf55b3191e2bc5bbc985d7d4a2662d772cf29987c82dbeed428cdba9fdd43 +Size: 71064908 +Filename: pool/main/p/powershell-lts/powershell-lts_7.4.2-1.deb_amd64.deb + +Package: sysmonforlinux +Version: 1.3.2 +Architecture: amd64 +Installed-Size: 58934 +Maintainer: Sysinternals +Description: A system monitor based on eBPF, ported from Windows, that outputs events to Syslog +Depends: libc6 (>= 2.14), libgcc1 (>= 1:3.0), libstdc++6 (>= 5), libxml2 (>= 2.7.4), libssl-dev, sysinternalsebpf (>= 1.2.0) +SHA256: 714958e7d932340b197f63aa787386206d9961eb18735fcd8ebe65f56b320595 +Size: 3195266 +Filename: pool/main/s/sysmonforlinux/sysmonforlinux_1.3.2_amd64.deb + +Package: moby-buildx +Version: 0.15.0-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 79805 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 7d472a2b19fb560433986842974ce407bed8a1ef4c4d4c39e4ad5df8abaf96ff +Size: 36095064 +Filename: pool/main/m/moby-buildx/moby-buildx_0.15.0-ubuntu22.04u1_amd64.deb + +Package: dotnet-runtime-7.0 +Version: 7.0.14-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70848 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 7.0.14 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-deps-7.0 (>= 7.0.14), dotnet-hostfxr-7.0 (>= 7.0.14) +SHA256: 3489189f97fcf801a303956c9519c6d52efa6b08efa83a6eea87abeb83dc8bc1 +Size: 23203994 +Filename: pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.14-1_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.16-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68444 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.16 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.16), dotnet-runtime-deps-6.0 (>= 6.0.16) +SHA256: c61139846f6ab095ef9b3476feaf955eb82042525da39bc512d8eda7134f8c6b +Size: 22707182 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.16-x64.deb + +Package: procdump +Version: 3.0.0 +Architecture: amd64 +Maintainer: Sysinternals +Description: Sysinternals process dump utility + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +Depends: zlib1g, gdb (>= 7.6.1) +License: MIT +SHA256: e6b288b8fae31565869c7ad8d24ec7738d0f23f14fb3583cfdea2928af302355 +Size: 1347518 +Filename: pool/main/p/procdump/procdump_3.0.0_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.101-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 350032 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.101 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.1), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.1), dotnet-runtime-7.0 (>= 7.0.1), dotnet-targeting-pack-7.0 (>= 7.0.1), aspnetcore-runtime-7.0 (>= 7.0.1) +SHA256: eb3bf2a85ba09a791fc25a9dfe04d5131a24350f86af34cf15550defb7d26365 +Size: 90604170 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.101-x64.deb + +Package: azcmagent +Version: 1.26.02210.615 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: c7ef2f69d6b0486a0088d524576f8ee91cbb90a54c4560cb49215fe0db19756d +Size: 53683134 +Filename: pool/main/a/azcmagent/azcmagent_1.26.02210.615_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.114-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 350115 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.114 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.14), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.14), dotnet-runtime-7.0 (>= 7.0.14), dotnet-targeting-pack-7.0 (>= 7.0.14), aspnetcore-runtime-7.0 (>= 7.0.14) +SHA256: d1672d6c708424b57e2d0ffc53ecb82b164824426f23f948883230e5e8016a4c +Size: 90718002 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.114-1_amd64.deb + +Package: moby-engine +Version: 24.0.9-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 93231 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: a599f28754477db5e23f2c7b376d8fb30ab16c4f32d36dac43165f9a8e8bce6a +Size: 31836584 +Filename: pool/main/m/moby-engine/moby-engine_24.0.9-ubuntu22.04u2_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.3-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68397 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.3 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.3), dotnet-runtime-deps-6.0 (>= 6.0.3) +SHA256: 6525eb9f979c86b5ff8bcc4b4f003915845eb1cffd3f42611e134b468489d755 +Size: 22886032 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.3-x64.deb + +Package: azureauth +Version: 0.8.2-8 +Architecture: amd64 +Section: misc +Priority: optional +Installed-Size: 74209 +Maintainer: ES365 Security Experience Team +Description: A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information. +SHA256: 75cbd72c69154486be29fae15d943f345260e9433353f1199389e1cb80a99bc2 +Size: 24118802 +Filename: pool/main/a/azureauth/azureauth_0.8.2-8_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.2-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.2 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.2), libc6 +SHA256: 8348f279c3614c93676cfefecf6f653135b910dd9ab0a702edc6d65f5f2bf36b +Size: 142108 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.2-x64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.33-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11750 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.33) +SHA256: d9df45b95166218e710dd19c1c53e12178bc00618448893a54bd75d4f7ae3988 +Size: 1316058 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.33-1_amd64.deb + +Package: azcmagent +Version: 1.42.02699.1558 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 9edbf13a6f1b5e770c3d53fe87f1b5bd44a7ee883df6f34517ae516d04fc5239 +Size: 67139514 +Filename: pool/main/a/azcmagent/azcmagent_1.42.02699.1558_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.423-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 337486 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.423 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.31), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.31), dotnet-apphost-pack-6.0 (>= 6.0.31), dotnet-runtime-6.0 (>= 6.0.31), aspnetcore-targeting-pack-6.0 (>= 6.0.31) +SHA256: b857a143114f7e19d48ce4a6d10dbd6e719c2c322166f4509deb106579cb02bc +Size: 86926190 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.423-1_amd64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.31-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19906 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.31) +SHA256: 9ed5abc88ec3a84be31adf9a5b3f19bbc001fa8816b3255f343f5c815e4072f1 +Size: 6621866 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.31-1_amd64.deb + +Package: powershell +Version: 7.2.17-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 168907 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 07e4c4e165445e3bd413fa4b6821ef43ca9c5c41be2727f834a195da36405df4 +Size: 68352122 +Filename: pool/main/p/powershell/powershell_7.2.17-1.deb_amd64.deb + +Package: adutil +Version: 1.1.40 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 11755 +Maintainer: <@64c5461cb128> +Description: no description given +Homepage: http://example.com/no-uri-given +Depends: realmd, krb5-user, software-properties-common, packagekit +Vendor: none +License: microsoft_adutil_license +SHA256: 8b777476ebdbe0387c64d3e209c3a6e3474e7ee845c6477e6448f152b6f7f11f +Size: 5582130 +Filename: pool/main/a/adutil/adutil_1.1.40_amd64.deb + +Package: mdatp +Version: 101.23122.0002 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 524388 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, libpcre3, mde-netfilter +SHA256: 5d9cedd697c1b729c6f82ae9560578016b27bd251297266f9c279ecc6b140c1f +Size: 140475056 +Filename: pool/main/m/mdatp/mdatp_101.23122.0002_amd64.deb + +Package: blobfuse2 +Version: 2.0.5 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 31350 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: 1f399da94f337942d78995cbab448f88552e7107e2ebbd885d463b22a2bd43f8 +Size: 15490920 +Filename: pool/main/b/blobfuse2/blobfuse2-2.0.5.x86_64.deb + +Package: aadsshlogin-selinux +Version: 1.0.026840001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.3-1), selinux-utils, selinux-policy-default +SHA256: f528cba798c8f64a18d39cc582d8dacb997a003ab9cfd1e6f5341aac354e68f3 +Size: 2220 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.026840001_amd64.deb + +Package: aziot-edge +Version: 1.4.10-1 +Architecture: amd64 +Section: admin +Priority: extra +Installed-Size: 18309 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, aziot-identity-service (= 1.4.4-1), sed +SHA256: 95b398f02d30569511e322daaa0d2f7c1d0392ee05e5588edcf2f9d07d21e630 +Size: 4818014 +Filename: pool/main/a/aziot-edge/aziot-edge_1.4.10-1_amd64.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.8-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.8 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: c6487b48e2118900cffeed91d67d9012f4e1e114c8c48fb2f01ad6526b6ebb01 +Size: 2890 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.8-x64.deb + +Package: powershell +Version: 7.4.5-1.deb +Architecture: amd64 +Section: shells +Priority: optional +Installed-Size: 176713 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 51c2948f820b663e779e7cfce00146fd12efac47bbe2efd3140f8db6962e0424 +Size: 70999394 +Filename: pool/main/p/powershell/powershell_7.4.5-1.deb_amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.4629-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 248211ce798f17bc101da096123ab085072f718891e812ab28d54b1ef2177267 +Size: 124416520 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4629-1.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.14-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.14 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: b6bfa17bec9d4b4ac9813d4eb615239966c224d7db7019550c07fd5bf22abc73 +Size: 2796 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.14-x64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.115-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 350168 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.115 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.15), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.15), dotnet-runtime-7.0 (>= 7.0.15), dotnet-targeting-pack-7.0 (>= 7.0.15), aspnetcore-runtime-7.0 (>= 7.0.15) +SHA256: a9d9f2d3ef5f6bf15c98a39b2b427c2f3df7e15650bdd9d01cbc97ecc0ca2a1a +Size: 90736658 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.115-1_amd64.deb + +Package: msopenjdk-11 +Version: 11.0.17-1 +Architecture: amd64 +Section: java +Priority: extra +Installed-Size: 317445 +Maintainer: Microsoft +Description: OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: fonts-dejavu, libx11-6, libxext6, libxi6, libxrender1, libxtst6, libasound2, libfontconfig1, libfreetype6 +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: ca210b6bd54ec06e3f7bea285b80df66e2054aa438b97b3a63223c8cf65701aa +Size: 193991608 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.17-1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.119-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 349766 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.119 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.19), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.19), dotnet-runtime-7.0 (>= 7.0.19), dotnet-targeting-pack-7.0 (>= 7.0.19), aspnetcore-runtime-7.0 (>= 7.0.19) +SHA256: 86cf4e5439b96441715b46d6398c326f4f59297205385ecb4fdda283467a19aa +Size: 90638214 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.119-1_amd64.deb + +Package: aspnetcore-runtime-7.0 +Version: 7.0.14-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 21371 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-7.0 (>= 7.0.14) +SHA256: 7248aaf710dd4cff748fabf4878b62e6b4550d23a0c7865b679f4df031d64935 +Size: 7066162 +Filename: pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.14-1_amd64.deb + +Package: powershell-preview +Version: 7.3.0-rc.1-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 195779 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 5cca8118d8e2238bd4c7ed40a2cd370c12320ea5096aa5dfc6ab4911f3d6e7f1 +Size: 71153972 +Filename: pool/main/p/powershell-preview/powershell-preview_7.3.0-rc.1-1.deb_amd64.deb + +Package: moby-compose +Version: 2.11.0+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 43500 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 5b4f132dce2acb54d819fdbbd3cf28667693974de9c72b553689decfe45d651b +Size: 10603106 +Filename: pool/main/m/moby-compose/moby-compose_2.11.0+azure-ubuntu22.04u1_amd64.deb + +Package: aadsshlogin +Version: 1.0.023850001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libc6 (>= 2.34), libcurl4 (>= 7.16.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 3.1~), libsemanage2 (>= 2.0.32), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.16), passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: efad79eb58c10155710ef59171fbe73d67e765a49ce4cc4f4e3622163f4c2f84 +Size: 332574 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.023850001_amd64.deb + +Package: aziot-identity-service +Version: 1.4.3-1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 18811 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 3.3), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1) +SHA256: 5c3abda4a30f50cdf2e18a793b933e2d606ba70591f86a61fe25423a68722a12 +Size: 4446678 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.4.3-1_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.2-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11062 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.2 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 9608dfd66efa12ac140fd22d6b0ae1b83d324bcd0b6a5f17aa744177ea3d5140 +Size: 3517494 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.2-x64.deb + +Package: dotnet-targeting-pack-7.0 +Version: 7.0.16-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 31138 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 7.0.16 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 147b5504beaa8a1ce5998b5a5e143130831231eca4fa1a23e00d629dcc3f28b4 +Size: 2567970 +Filename: pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.16-1_amd64.deb + +Package: mssql-tools18 +Version: 18.2.1.1-1 +Architecture: amd64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL Tools Team +Description: Tools for Microsoft(R) SQL Server(R) + This package provides tools for Microsoft(R) SQL Server(R). +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), msodbcsql18 (>= 18.0.0.0) +SHA256: 29cf926ce277c710766a2aea8f755474c67002f0cccbd1293993d83c4f636ee2 +Size: 211366 +Filename: pool/main/m/mssql-tools18/mssql-tools18_18.2.1.1-1_amd64.deb + +Package: dotnet-host +Version: 7.0.14-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 246 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.14 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: ee9833eaedda1b0589324beb2253751b195c843ec028adbe593dc625608c3ae8 +Size: 57294 +Filename: pool/main/d/dotnet-host/dotnet-host_7.0.14-1_amd64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.3-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.3 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libssl1.0.0 | libssl1.0.2 | libssl1.1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 2c6cfbcac249976eb38350d6ab9bc5ca5b7e24f9912fb16b0ac5183439d03a06 +Size: 2798 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.3-x64.deb + +Package: dotnet-host +Version: 3.1.31-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 145 +Maintainer: .NET Core Team +Description: Microsoft .NET Core Host - 3.1.31 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://dot.net/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 50e08c977e2cb6c3353a59c323bf52d57b78ca74c061b3ee659132103b2eca33 +Size: 32458 +Filename: pool/main/d/dotnet-host/dotnet-host-3.1.31-x64.deb + +Package: moby-compose +Version: 2.29.3-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61867 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 07d6684238af7e5e128c1533b5af90233cab3bda1d4c60f3bec475fc14ed80d9 +Size: 18588972 +Filename: pool/main/m/moby-compose/moby-compose_2.29.3-ubuntu22.04u1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.200-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 357032 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.200 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.3), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.3), dotnet-runtime-7.0 (>= 7.0.3), dotnet-targeting-pack-7.0 (>= 7.0.3), aspnetcore-runtime-7.0 (>= 7.0.3) +SHA256: dc711bf42291ea51b2305419bc53758125cff21078cd8191df121bf862d40b9f +Size: 91798318 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.200-x64.deb + +Package: azure-ai-vision-runtime-common +Version: 0.15.1~beta.1 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 2723 +Maintainer: vision-sdk@microsoft.com +Description: Azure AI Vision Common Components Runtime Package +Depends: libc6 (>= 2.4), libgcc1 (>= 1:3.3.1), libstdc++6 (>= 6), libuuid1 (>= 2.16) +SHA256: 9d775e854e8f618f437e1c5124ef753a7687852eab28430f7f668e27ad87245c +Size: 681884 +Filename: pool/main/a/azure-ai-vision-runtime-common/azure-ai-vision-runtime-common-0.15.1~beta.1-Linux.deb + +Package: moby-runc +Version: 1.0.3+azure-1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 15167 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.4.1) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: 6ecf06c349464270ef9624f4e4a8ed317a68514092c2fe67c80d0c106a3becb2 +Size: 5696296 +Filename: pool/main/m/moby-runc/moby-runc_1.0.3+azure-1_amd64.deb + +Package: dotnet-apphost-pack-8.0 +Version: 8.0.5-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11075 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 8.0.5 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: b07ace50c93c409bb7d0d02c7ef75dda0889e2a2d1655c66fba77c896cd1d9ad +Size: 3516150 +Filename: pool/main/d/dotnet-apphost-pack-8.0/dotnet-apphost-pack-8.0_8.0.5-1_amd64.deb + +Package: powershell +Version: 7.2.10-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 189109 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: fa7a2b2063063103682abec757552e79ec8fdb820fcfd10ffde66bdeeabe7488 +Size: 70363920 +Filename: pool/main/p/powershell/powershell_7.2.10-1.deb_amd64.deb + +Package: mdatp +Version: 101.98.05 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 305796 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, mde-netfilter +SHA256: 7e1ba007e40c4653ca8b8bdf55e29600a08ac87217267e3b78417dd8a0be1cf3 +Size: 119520316 +Filename: pool/main/m/mdatp/mdatp_101.98.05.amd64.deb + +Package: scx +Source: scx +Version: 1.9.0.0 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 7692 +Maintainer: Microsoft Corporation +Description: Microsoft System Center Operations Manager for UNIX/Linux agent + Provides server for Microsoft System Center Operations Manager. +Depends: omi (>= 1.0.8.6) +Provides: scx +SHA256: 0245903fa66fcdc872124ba13a77cf1ecf7684775edc8497ccbeb474fc5a45a4 +Size: 2668444 +Filename: pool/main/s/scx/scx_1.9.0.0_amd64.deb + +Package: dotnet-apphost-pack-8.0 +Version: 8.0.4-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11075 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 8.0.4 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 470ceb6909d23129b7d15351efd146655b948d72968bf5dffc2d39e4fae5eb36 +Size: 3517018 +Filename: pool/main/d/dotnet-apphost-pack-8.0/dotnet-apphost-pack-8.0_8.0.4-1_amd64.deb + +Package: mdatp +Version: 101.62.74 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 210088 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: curl (>= 7.5), libseccomp2, libuuid1, libatomic1, libc6 (>= 2.23), python3, uuid-runtime, dmidecode, auditd, libselinux1, libfuse2, mde-netfilter +SHA256: 96d94685a98b33763201c3285713959757eb7255af58cae346fc71aedba2f80a +Size: 61608068 +Filename: pool/main/m/mdatp/mdatp_101.62.74.amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.5348-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: da99f73d57adcfc0ff5cfa713f52f6dbe3d6198f6a996e481ddd1da183f77221 +Size: 157183124 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5348-1.deb + +Package: aspnetcore-runtime-7.0 +Version: 7.0.5-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 21340 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-7.0 (>= 7.0.5) +SHA256: fb030c9ded8cf60148ce5fc0f70958a865fc3691eb64226213ec36079e77e319 +Size: 7053294 +Filename: pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.5-x64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.7-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27360 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.7 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 0edf4c43e4be13a8390269ffea663cfc7a6a25a5faac9afcf4b8189abef8de10 +Size: 2124278 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.7-x64.deb + +Package: dotnet-hostfxr-7.0 +Version: 7.0.19-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 428 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 7.0.19 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 7.0.19), libc6 +SHA256: e8e3890b0d92cf6dfb93b8608ffa01b989ec3e23702f753c6c207dae45472f21 +Size: 144738 +Filename: pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.19-1_amd64.deb + +Package: dotnet-apphost-pack-7.0 +Version: 7.0.12-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11281 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 7.0.12 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: e3c05b2bb27d1b332e34d4363b72cc8ed6d47a18f278c5fd9d4ad65502695184 +Size: 3521786 +Filename: pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.12-1_amd64.deb + +Package: aspnetcore-runtime-3.1 +Version: 3.1.32-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 17481 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-3.1 (>= 3.1.32) +SHA256: b30812c75afd7ecf71f1c7369a474d066e00a208b4f6ed41f09c8722e82ec446 +Size: 5772914 +Filename: pool/main/a/aspnetcore-runtime-3.1/aspnetcore-runtime-3.1.32-x64.deb + +Package: aspnetcore-targeting-pack-7.0 +Version: 7.0.15-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 13099 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-7.0 (>= 7.0.15) +SHA256: a411e19dad220a91333b75786be4801fc5ea6cec7b7e66bf92f63497a25a0518 +Size: 1511626 +Filename: pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.15-1_amd64.deb + +Package: aspnetcore-targeting-pack-7.0 +Version: 7.0.5-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 13092 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-7.0 (>= 7.0.5) +SHA256: d04d176d380a33e36e3588f7855317213ecd0020decd6326d5bd6076401ddfa0 +Size: 1513034 +Filename: pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.5-x64.deb + +Package: dotnet-runtime-7.0 +Version: 7.0.13-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70844 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 7.0.13 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-deps-7.0 (>= 7.0.13), dotnet-hostfxr-7.0 (>= 7.0.13) +SHA256: 8e1eddfe95f1ff945a99e4a7320e89168791bef823d2c208a94fa337198ab7af +Size: 23207954 +Filename: pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.13-1_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.4-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.4 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.4), libc6 +SHA256: 108cfdb263731e0868975ecc77c21c56b25ca9c10ae0e196e774beeed0504752 +Size: 141998 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.4-x64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.10-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19868 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.10) +SHA256: ac987094f8faae67945a87a069a49e989972c16ca7cc9612fd2d5bfc739b9832 +Size: 6609196 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.10-x64.deb + +Package: moby-buildx +Version: 0.11.2-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 76233 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 98f3f4c2fa24afd2ef4a40bd0d730a63239d8231060d53414ea169840083fcb8 +Size: 34221884 +Filename: pool/main/m/moby-buildx/moby-buildx_0.11.2-ubuntu22.04u2_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.31-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 456 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.31 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.31), libc6 +SHA256: 284ba499f99611c8c50211ffb46cf02fce3225c95f7f3d38f229aa125915809a +Size: 143666 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.31-1_amd64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.6-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11724 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.6) +SHA256: ed6c17e9b097f870215ae32caba285a0a5e80f0281d42f9e0e53250eba6095c8 +Size: 1308164 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.6-x64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.308-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 331330 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.308 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.13), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.13), dotnet-apphost-pack-6.0 (>= 6.0.13), dotnet-runtime-6.0 (>= 6.0.13), aspnetcore-targeting-pack-6.0 (>= 6.0.13) +SHA256: 79fc932e3258553858c6382c16802fcfa94d62f28517117af2afb39d56a11948 +Size: 85094014 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.308-x64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.310-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 367152 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.310 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.13), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.13), dotnet-runtime-7.0 (>= 7.0.13), dotnet-targeting-pack-7.0 (>= 7.0.13), aspnetcore-runtime-7.0 (>= 7.0.13) +SHA256: a3cb0afabef1917d15235dced239ab22071c829da8f8c0122e66e9fa5a9eccc3 +Size: 96615326 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.310-1_amd64.deb + +Package: powershell +Version: 7.4.1-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 177171 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 625b7ee0b71147421723cb6022a41b5d8fc0d6e19df25b1240008ee491bf6997 +Size: 71016830 +Filename: pool/main/p/powershell/powershell_7.4.1-1.deb_amd64.deb + +Package: moby-containerd +Version: 1.5.14+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 107149 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 482694b81737dec700373e8dca2ff96af8789fd23bb5b76fdef0826d293c0cbf +Size: 27924082 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.14+azure-ubuntu22.04u1_amd64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.28-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19906 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.28) +SHA256: 8df85025563ab88b4e9e3ba46a245511599941dc4289620948ff1b2e5441ccd9 +Size: 6622602 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.28-1_amd64.deb + +Package: libmsquic +Version: 2.3.3 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 13431 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 132a76c4a1159459478ee43fd99701b415b81acea8b72679dcb85718d76f0470 +Size: 4110414 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.3_amd64.deb + +Package: azapi2azurerm +Version: 0.0.0 +Architecture: amd64 +Section: default +Priority: extra +Installed-Size: 20240 +Maintainer: henglu +Description: A tool to migrate terraform resources from azapi to azurerm +Homepage: https://github.com/Azure/azapi2azurerm +Vendor: none +License: MPL-2.0 +SHA256: 3294cb23f7013f939e6246eded6b3e85be150991aa85bc5d050d95d5be7a8cbf +Size: 6674858 +Filename: pool/main/a/azapi2azurerm/azapi2azurerm-0.0.0-1-amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.4865-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: cc459fd7233209669f3583d3babbe1c59e4cf2ab8757e55f956a21598b0e8986 +Size: 126073148 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4865-1.deb + +Package: mdatp +Version: 101.24052.0002 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 636549 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, libpcre3, mde-netfilter +SHA256: ff5555eaf3080128774ee2d624b1e969f8bd94c817e8921dac68c4f2aa437fa9 +Size: 147803348 +Filename: pool/main/m/mdatp/mdatp_101.24052.0002_amd64.deb + +Package: moby-buildx +Version: 0.11.0+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 76246 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 0e89aed41ea1bebc0e3f309bf97a902275f81c86398f0128f32143d5b507f3b5 +Size: 29564338 +Filename: pool/main/m/moby-buildx/moby-buildx_0.11.0+azure-ubuntu22.04u1_amd64.deb + +Package: microsoft-identity-diagnostics +Source: microsoft-identity-diagnostics +Version: 1.1.0 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 3944 +Maintainer: Microsoft Identity +Description: microsoft-identity-diagnostics +Depends: default-jre, jq +Owner: Microsoft Identity +Packager: Microsoft Identity +SHA256: 993a249417892a49d0e38ecef23875d13d37a4ea945be39070cf3ab2d9be8835 +Size: 3711222 +Filename: pool/main/m/microsoft-identity-diagnostics/microsoft-identity-diagnostics_1.1.0_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.12-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68418 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.12 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.12), dotnet-runtime-deps-6.0 (>= 6.0.12) +SHA256: 1d806a6e46ff240495369dd475725db165a9affec62a406849716b0f1639ac0e +Size: 22701764 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.12-x64.deb + +Package: deliveryoptimization-agent +Version: 1.1.0 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 392 +Maintainer: docloss@microsoft.com +Description: Delivery Optimization downloader with Microsoft Connected Cache support + # Delivery Optimization Client + . + This repository contains source code for the following DO components: + . + * Agent + * SDK + * Plug-ins + . + ## Agent + . + Delivery Optimization HTTP downloader with Microsoft Connected Cache support. + . + ## SDK + . + Library for enabling inter-process communication (IPC) with deliveryoptimization clients + through native C++ code. + . + ## Plug-ins + . + Add-on that enables APT downloads to go through Delivery Optimization Agent. + It is a required component only on devices that must download APT packages via a Microsoft Connected Cache instance. + During install, it replaces itself as APT's HTTP(S) transport mechanism, thus receiving all APT downloads requests. + . + ## Getting Started + . + Follow the development machine setup on each desktop you'd like to use. + . + ### Development Machine Setup + . + Clone the repository locally from terminal: + . + ```markdown + > cd (to working directory of your choosing) + > git clone https://github.com/microsoft/do-client + ``` + . + Run the appropriate bootstrapper depending on development machine platform: + . + ```markdown + > cd build/bootstrap + ``` + . + ### Building DO client components + **NOTICE:** + **If you are modifying this project and distributing your own custom build, please modify the DO_BUILDER_IDENTIFIER cmake variable located in https://github.com/microsoft/do-client/blob/main/CMakeLists.txt** + . + After setting up your development machine, navigate back into the project root + . + ```markdown + > cd <project root> + ``` + . + We provide an easy-to-use python script for building our client components from the project root, you can inspect build.py for additional build flags + On debian-based systems, run this command to build the client and package it as a .deb file + . + ```markdown + > python3 build/build.py --project agent --package-for deb + ``` + . + Run this command to build the sdk + . + ```markdown + > python3 build/build.py --project sdk --package-for deb + ``` + . + In order to build the plugin, you must build & install the sdk, an easy way to do this is to install the the packages you produced in the previous two steps + . + Navigate to the build output directory for the agent and install the agent package + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + ``` + . + The sdk produces a runtime and development package, in this case you'll want to install both + Navigate to build output directory for the sdk and install both packages + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + ``` + . + With the sdk installed, you can now build the plugin by navigating back to the project root + . + ```markdown + > cd <project root> + > python3 build/build.py --project plugin-apt --package-for deb + ``` + . + At this point, you should have built and packaged all components + . + ### Installing DO Client components + . + There are a couple ways for you to install the DO client components + . + 1. If you have built the component into a debian package, you can simply find the debian package and install like detailed above. + This will handle installing to the appropriate paths, and also the necessary setup of DO user/group permissions needed for DO-agent. + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + > cd /tmp/build-deliveryoptimization-plugin-apt/linux-debug/ + > sudo apt-get install ./deliveryoptimization-plugin-apt*.deb + ``` + . + 2. If you build and install using cmake, or through some other custom means, be sure to setup the DO user/groups correctly in your installation. + You can reference this [script](https://github.com/microsoft/do-client/blob/main/client-lite/build/postinst.in.sh) to see how to setup the DO user/group and install DO as a daemon. + . + ### Testing DO Client components + . + As guidance, please ensure proper code coverage for project contributions + Unit tests for the agent and sdk are produced as a part of the above build command, you can find them in the build output directory + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/client-lite/test + ``` + . + Our tests utilize the [GTest](https://github.com/google/googletest) unit testing framework, which supports test filtering via command line + You can run all agent tests by running + . + ```markdown + > ./deliveryoptimization-agent-tests + ``` + . + You can filter for specific tests as well, reference the GTest documentation for filtering rules and syntax + ```markdown + > sudo ./deliveryoptimization-agent-tests --gtest_filter=DownloadManagerTests* + ``` + . + The test executable for the SDK is located in the sdk build output as well + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/sdk-cpp/tests + ``` + . + The sdk tests expect a running do-agent, you can either manually run the agent executable from its build output or install the agent package as you may have done while building the plugin + You can run the sdk tests just like the agent tests + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests + ``` + . + And filter them similarly + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests --gtest_filter=DownloadTests* + ``` + . + ## Support + . + The APT plugin component is currently in a **Public Preview** state. During this phase, it will be + supported for 90 days beyond the release date of a new release. At the end of the 90 day window, + we will not guarantee support for the previous version. Please plan to migrate to a newer release + within that 90-day window to avoid any disruptions. + . + ## Filing a Bug + . + Please file a [GitHub Issue](https://github.com/microsoft/do-client/issues) to ensure all issues are + tracked appropriately. + . + ## Build status + . + #### Ubuntu 18.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=45&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=46&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=47&branchName=develop) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + #### Ubuntu 20.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + #### Debian 10 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + ### Windows 10/11 + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20Windows%2010%20x64?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=59&branchName=develop) | + . + ### MacOS + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20MacOS%20X64?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=60&branchName=develop) | + . + ## Contact + . + Directly contact us: <docloss@microsoft.com> +Homepage: https://github.com/microsoft/do-client +Depends: libc6 (>= 2.34), libcurl4 (>= 7.16.2), libgcc-s1 (>= 3.0), libproxy1v5 (>= 0.4.17), libstdc++6 (>= 12) +SHA256: b3b43a6f072d958cfe0b7fd474bbb68067d9b59b8790d188fe9b7b9ea9145e28 +Size: 159832 +Filename: pool/main/d/deliveryoptimization-agent/deliveryoptimization-agent_1.1.0_amd64.deb + +Package: moby-engine +Version: 20.10.18+azure-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 85911 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 5b067e84f63fe08037e660eddab6fa72a449f09a84592b0ab16b9250822d26ac +Size: 22277334 +Filename: pool/main/m/moby-engine/moby-engine_20.10.18+azure-ubuntu22.04u2_amd64.deb + +Package: powershell +Version: 7.2.5-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 186998 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 9132d97fea77d5a8de56b5801b7579bdc1ce669dae084295ddae6b43cf5a3fdb +Size: 69382904 +Filename: pool/main/p/powershell/powershell_7.2.5-1.deb_amd64.deb + +Package: aspnetcore-runtime-8.0 +Version: 8.0.6-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 23509 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-8.0 (>= 8.0.6) +SHA256: 4580389d03bd1dd95ab622942a975c30ffbea00de6ef36061d859705ebde69d9 +Size: 7673546 +Filename: pool/main/a/aspnetcore-runtime-8.0/aspnetcore-runtime-8.0_8.0.6-1_amd64.deb + +Package: aspnetcore-targeting-pack-8.0 +Version: 8.0.5-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 15818 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-8.0 (>= 8.0.5) +SHA256: 48b76802f9331b18f2cc94bbf888c7657bf3d12406c200ebff7f06b4e31f6855 +Size: 1924346 +Filename: pool/main/a/aspnetcore-targeting-pack-8.0/aspnetcore-targeting-pack-8.0_8.0.5-1_amd64.deb + +Package: moby-engine +Version: 27.0.3-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 106615 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: a3815bc44519a6c9b58031c18f7ec07e15af5046bddd1a631e14d18ed1c8a06f +Size: 35746648 +Filename: pool/main/m/moby-engine/moby-engine_27.0.3-ubuntu22.04u1_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.21-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11071 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.21 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 845a4dcdf7cfef468f114df064ddf0d91df3339e8fa81a4d642bdcb9b69918b0 +Size: 3516354 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.21-1_amd64.deb + +Package: moby-engine +Version: 20.10.25+azure-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 86971 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 1d4f9b659df8050fa93a5ee82baa13fd8ac2313f0f4e1d41c54008a4b062ca8f +Size: 22551992 +Filename: pool/main/m/moby-engine/moby-engine_20.10.25+azure-ubuntu22.04u2_amd64.deb + +Package: dotnet-host +Version: 6.0.2-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.2 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 10d190304d21b10b7f51a79d08bd5e867ef97b59cc866841d12f0970e91f62a9 +Size: 55654 +Filename: pool/main/d/dotnet-host/dotnet-host-6.0.2-x64.deb + +Package: mdatp +Version: 101.94.13 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 301191 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, mde-netfilter +SHA256: 03edc9a54c09ababa41a5f3886a3af2e1114b96c10cdf22eb2bd6c344758ed68 +Size: 117484794 +Filename: pool/main/m/mdatp/mdatp_101.94.13.amd64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.106-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 388320 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.106 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.6), dotnet-targeting-pack-8.0 (>= 8.0.6), dotnet-apphost-pack-8.0 (>= 8.0.6), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.6), aspnetcore-targeting-pack-8.0 (>= 8.0.6) +SHA256: 2a3f21f703827159d5bcb86e2fed08c7d15fc16481a073dd7f7f75d1cf16b0b4 +Size: 101756158 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.106-1_amd64.deb + +Package: dotnet-hostfxr-7.0 +Version: 7.0.18-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 428 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 7.0.18 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 7.0.18), libc6 +SHA256: c6db1f5ddd528f6db70de21eb0eb7d1342273740f6147858e3944b509d36ed4a +Size: 144742 +Filename: pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.18-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.123-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 314394 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.123 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.23), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.23), dotnet-apphost-pack-6.0 (>= 6.0.23), dotnet-runtime-6.0 (>= 6.0.23), aspnetcore-targeting-pack-6.0 (>= 6.0.23) +SHA256: 5ddc3e6e75eb51c2310082120b0bf93c960fbba747869b392df4989ebc8410e3 +Size: 78945110 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.123-1_amd64.deb + +Package: moby-cli +Version: 23.0.6+azure-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 35180 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: bcfd4ef897d9b3828d9ccb29e50494b5a09582be74878c5d415f49fe82391796 +Size: 13733464 +Filename: pool/main/m/moby-cli/moby-cli_23.0.6+azure-ubuntu22.04u2_amd64.deb + +Package: libmsquic +Version: 2.3.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 13430 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 2c9f2d234b8ce72afaf345adeb2e11028968307256e73240f3d9e0b48fd8857e +Size: 4111652 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.0_amd64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.10-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11743 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.10) +SHA256: 316dbcaeec56d030ba6a4231df05eacaa515ceb27c5ab9ce3a66a9975494811e +Size: 1313840 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.10-x64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.4-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11062 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.4 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 915a04a17975831a96837f44f068716a250b9cbe7c2911ac646c779825c2b3af +Size: 3519794 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.4-x64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.29-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 456 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.29 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.29), libc6 +SHA256: 5573afeaea3dc52eaefc1cdc909149a003ac2c07c61b123263ad15ceee1b3172 +Size: 143680 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.29-1_amd64.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.2-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.2 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 4604e1c0b284a336d13f9ec0182f3ad13c28360c6b76f441c9e66784ac6e36d3 +Size: 2890 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.2-x64.deb + +Package: dotnet-host +Version: 7.0.5-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 246 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.5 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 665595e26dcde23629c8684e4aa7526237ea8d983000b46cd3d308ab6508f376 +Size: 57242 +Filename: pool/main/d/dotnet-host/dotnet-host-7.0.5-x64.deb + +Package: moby-containerd +Version: 1.5.11+azure-2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 124256 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 6dedc58c7cf1c9faafab4335bc168e888a55bc4b43c8b8c24f388f30bf35c025 +Size: 30634206 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.11+azure-2_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.104-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 312591 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.104 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.4), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.4), dotnet-apphost-pack-6.0 (>= 6.0.4), dotnet-runtime-6.0 (>= 6.0.4), aspnetcore-targeting-pack-6.0 (>= 6.0.4) +SHA256: 966102b1975f5a371ec6e70fc87181846d1ee81bd4eb4747a439cfde6b840022 +Size: 77930174 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.104-x64.deb + +Package: moby-containerd +Version: 1.6.24-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 126669 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 2684fcf3b25ea1e18b0c4d466b73d87082cc671c489c49201b15b7eed26513d9 +Size: 44740640 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.24-ubuntu22.04u2_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.23-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68461 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.23 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.23), dotnet-runtime-deps-6.0 (>= 6.0.23) +SHA256: aed16cfefc6903202f11af5aad5728f6eabe5905221309097e9d5dd60bfd2e29 +Size: 22882640 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.23-1_amd64.deb + +Package: powershell-lts +Version: 7.2.9-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 189110 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 1c0cb7aab087fa409889a0da328d16c3f2cf97d848d329142bdd3deb1b1e8e05 +Size: 70340358 +Filename: pool/main/p/powershell-lts/powershell-lts_7.2.9-1.deb_amd64.deb + +Package: libmsquic +Version: 2.2.2 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 12946 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 24990e09583bbd5fd62872713ddf9ac74a13bba7167318cee8ea264151a48494 +Size: 3953760 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.2_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.308-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 367125 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.308 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.11), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.11), dotnet-runtime-7.0 (>= 7.0.11), dotnet-targeting-pack-7.0 (>= 7.0.11), aspnetcore-runtime-7.0 (>= 7.0.11) +SHA256: 14819de0322cdb8b9c824ad59523ff57988c1d0bbb84c34e8d76e39797c1dbc8 +Size: 96633586 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.308-1_amd64.deb + +Package: dotnet-apphost-pack-7.0 +Version: 7.0.1-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11276 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 7.0.1 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: b7cbcd00def1bbab3cb16f172721a42ab97ce9ef97284d92185197ae77760a3e +Size: 3521274 +Filename: pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.1-x64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.104-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 389108 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.104 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.4), dotnet-targeting-pack-8.0 (>= 8.0.4), dotnet-apphost-pack-8.0 (>= 8.0.4), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.4), aspnetcore-targeting-pack-8.0 (>= 8.0.4) +SHA256: bcc77e1c30f52eb5b03799aa2659a28bb8071bfed196b9040df34d50941dfba4 +Size: 101831754 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.104-1_amd64.deb + +Package: moby-runc +Version: 1.1.5+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 13364 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: 492e43f70bd60db171b04af8797598888de0ca0f07c90c03b98ed828ce670ef4 +Size: 6066532 +Filename: pool/main/m/moby-runc/moby-runc_1.1.5+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.28-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68483 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.28 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.28), dotnet-runtime-deps-6.0 (>= 6.0.28) +SHA256: 8e813e0b3fbef77f63f08010ee1d22fb8e84547bce7f5343046e6a0812ea54b2 +Size: 22829816 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.28-1_amd64.deb + +Package: intune-portal +Version: 1.2210.50 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 26823 +Maintainer: Microsoft +Description: Microsoft Intune + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +Depends: gnome-keyring (>= 3.36), libc6 (>= 2.34), libsqlite3-0 (>= 3.7.14), libx11-6, libpam-pwquality (>= 1.4.0-2), msalsdk-dbusclient (>= 1.0), libglib2.0-0 (>= 2.35.8), libpam0g (>= 0.99.7.1), libuuid1 (>= 2.16), libsecret-1-0 (>= 0.19.1), libssl3 (>= 3.0.0~~alpha1), libcurl4 (>= 7.16.2), zlib1g (>= 1:1.2.0), libglib2.0-0 (>= 2.12.0), libgtk-3-0 (>= 3.9.10), libjavascriptcoregtk-4.0-18 (>= 2.36.8), libwebkit2gtk-4.0-37 (>= 2.5.3), libatk1.0-0 (>= 1.12.4), libgtk-3-0 (>= 3.16.2), libpango-1.0-0 (>= 1.14.0), libstdc++6 (>= 12), libsoup2.4-1 (>= 2.4.0) +Recommends: microsoft-edge-stable (>= 102) +SHA256: 899799f22dda054980d427f8cd29dc836932b9e31ff3069dea4bdd2afe16389c +Size: 6827056 +Filename: pool/main/i/intune-portal/intune-portal_1.2210.50_amd64.deb + +Package: moby-containerd +Version: 1.6.25-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 126934 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 228842f42af1b22efa01c42c176d6d34edafd13220b8b4e86b8b88752f7608ec +Size: 44835210 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.25-ubuntu22.04u1_amd64.deb + +Package: dotnet-runtime-deps-3.1 +Version: 3.1.28-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Core Team +Description: dotnet-runtime-deps-3.1 3.1.28 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +Homepage: https://dot.net/core +Depends: libgcc1, libssl1.0.0 | libssl1.0.2 | libssl1.1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 1af932e9851bd3bc2ea9e6e750816ede6d2f1062afb6fbb8c194a35a7738b3b1 +Size: 2688 +Filename: pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.28-x64.deb + +Package: aspnetcore-runtime-7.0 +Version: 7.0.10-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 21363 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-7.0 (>= 7.0.10) +SHA256: 4669c57ac123ea1f3d772bec04fb2468527d68d6783809ba4b6e7a137e9ba94e +Size: 7062470 +Filename: pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.10-1_amd64.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.0~rc.1.22426.10-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.0~rc.1.22426.10 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 64fa1293af230d99ad4949eda37dba8e78b893cba2fb03bddcff328326625ef3 +Size: 2920 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.0-rc.1.22426.10-x64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.403-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 336560 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.403 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.11), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.11), dotnet-apphost-pack-6.0 (>= 6.0.11), dotnet-runtime-6.0 (>= 6.0.11), aspnetcore-targeting-pack-6.0 (>= 6.0.11) +SHA256: e2e423e97d6571023053e0ced24a122b1ee09c82ecfe2b093204f1f0a090e6fb +Size: 86614876 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.403-x64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.26-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.26 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: fdc5a0703f7d29ef2c1211e18579d0ca6865c9274365e950a63c6e3f379179bb +Size: 2798 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.26-1_amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.5611-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: b90ff7be1b4ef4a4f90b0cf55582a94a1a856bd814c41cbf2d81d3d70d0031c3 +Size: 168981984 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5611-1_amd64.deb + +Package: dotnet-hostfxr-7.0 +Version: 7.0.7-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 424 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 7.0.7 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 7.0.7), libc6 +SHA256: fb83c49522ac9748ae6befed061b663011abed5cb031e15d22215771d30b170c +Size: 143966 +Filename: pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.7-x64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.301-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 408240 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.301 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.6), dotnet-targeting-pack-8.0 (>= 8.0.6), dotnet-apphost-pack-8.0 (>= 8.0.6), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.6), aspnetcore-targeting-pack-8.0 (>= 8.0.6) +SHA256: 748809cd4679f8bd1841367eea3b06b3686f22610d8569c0f456040a4f7431e7 +Size: 106558742 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.301-1_amd64.deb + +Package: aspnetcore-runtime-8.0 +Version: 8.0.1-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 23460 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-8.0 (>= 8.0.1) +SHA256: 7d732f40c990de6f10fffb61bc7df1a3c5097dbdb052dd75b1061d3b707a4297 +Size: 7659594 +Filename: pool/main/a/aspnetcore-runtime-8.0/aspnetcore-runtime-8.0_8.0.1-1_amd64.deb + +Package: moby-engine +Version: 20.10.20+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 86239 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 9715cf946e77a24e9770221bb039e244c78a2d6dc29598936d362774e6bc89ef +Size: 22372828 +Filename: pool/main/m/moby-engine/moby-engine_20.10.20+azure-ubuntu22.04u1_amd64.deb + +Package: moby-containerd +Version: 1.6.17+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 123874 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: fddfb49d1f2a4d7f08f2697cc1e19b99496cc8c2243b36c8cdca348e1d11c53b +Size: 34286272 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.17+azure-ubuntu22.04u1_amd64.deb + +Package: moby-containerd +Version: 1.5.18+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 109077 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 89b4ba1d0ca2505af43f4a45e8f3a7d7bfaba43ea3851d69ad78cb01a5ed5f09 +Size: 28364280 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.18+azure-ubuntu22.04u1_amd64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.4-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11724 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.4) +SHA256: 660b10f8ed6a4fdac26ce2d6a48f523b4f5a9c6f455250a8b4611593b822dc9e +Size: 1306240 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.4.deb + +Package: aspnetcore-runtime-7.0 +Version: 7.0.7-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 21350 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-7.0 (>= 7.0.7) +SHA256: fa1bf3eb1f17d370c50d31d0af0cb4a7348ac591735f77edc00f160a2a05b916 +Size: 7057462 +Filename: pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.7-x64.deb + +Package: powershell-preview +Version: 7.4.0-preview.3-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 193677 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: be418a526d5fe68f39aa1ab126c6262dbf870ae8501ba44ce8b020a2282c536b +Size: 70083566 +Filename: pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.3-1.deb_amd64.deb + +Package: blobfuse2 +Version: 2.0.0-preview.3 +Architecture: amd64 +Section: default +Priority: extra +Installed-Size: 27627 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse +Vendor: none +License: unknown +SHA256: 2329a1130035d20325ac4ef38c174da38b51866c3ebc48c5f4ba6988493392d3 +Size: 13042900 +Filename: pool/main/b/blobfuse2/blobfuse2-2.0.0-preview.3-Ubuntu-22.04-x86-64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.202-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 357028 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.202 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.4), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.4), dotnet-runtime-7.0 (>= 7.0.4), dotnet-targeting-pack-7.0 (>= 7.0.4), aspnetcore-runtime-7.0 (>= 7.0.4) +SHA256: 7cb68886075b3361642aadd467bb4335f635d9471fcc3600d97cf8d6ec6ddaa8 +Size: 91828358 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.202-x64.deb + +Package: azure-ai-vision-dev-common +Version: 0.15.1~beta.1 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 748 +Maintainer: vision-sdk@microsoft.com +Description: Azure AI Vision Common Components Developer Package +Depends: azure-ai-vision-runtime-common (= 0.15.1~beta.1) +SHA256: b0e49d1b6dee1d25d2d897d8ca9dc15e3d5c1b8826f6a7e2703acd8585119397 +Size: 113312 +Filename: pool/main/a/azure-ai-vision-dev-common/azure-ai-vision-dev-common-0.15.1~beta.1-Linux.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.3-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11724 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.3) +SHA256: ad64fd258860d079afd1c1784867be30625a31cbe09438a1102791ca085fea79 +Size: 1306464 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.3.deb + +Package: mdatp +Version: 101.75.43 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 276698 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: curl (>= 7.5), libseccomp2, libuuid1, libatomic1, libc6 (>= 2.23), uuid-runtime, dmidecode, auditd, libselinux1, libfuse2, mde-netfilter +SHA256: 4ae9bb8102a336f865aaf0ceab70b142622053192ef67c4d1bc4f5affd1c8669 +Size: 111919766 +Filename: pool/main/m/mdatp/mdatp_101.75.43.amd64.deb + +Package: aspnetcore-targeting-pack-8.0 +Version: 8.0.8-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 15818 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-8.0 (>= 8.0.8) +SHA256: 371a63aba73f24ba0e51cdf2b8d20ef2282967c74d4bdfd133886cf500e5f412 +Size: 1926170 +Filename: pool/main/a/aspnetcore-targeting-pack-8.0/aspnetcore-targeting-pack-8.0_8.0.8-1_amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.5390-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 1eea1eb871da3df8131c404dcba26ccddccfc4d4234384a7fdb38ce336002881 +Size: 157251308 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5390-1.deb + +Package: msopenjdk-17 +Version: 17.0.4-1 +Architecture: amd64 +Section: java +Priority: extra +Installed-Size: 323723 +Maintainer: Microsoft +Description: OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: fonts-dejavu, libx11-6, libxext6, libxi6, libxrender1, libxtst6, libasound2, libfontconfig1, libfreetype6 +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: 9a19875d9ceb75e0a53b8d891e251d2f3e3b5e8fe2d8212958dbfae9d9a6fcb5 +Size: 191767862 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.4-1_amd64.deb + +Package: dotnet-apphost-pack-8.0 +Version: 8.0.8-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11075 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 8.0.8 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: dc5fba22609ac5feaa2f0ab787edba17811bf76f042d3156a21107e9f186f03d +Size: 3515810 +Filename: pool/main/d/dotnet-apphost-pack-8.0/dotnet-apphost-pack-8.0_8.0.8-1_amd64.deb + +Package: azure-functions-core-tools-3 +Version: 3.0.4806-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v3 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools, azure-functions-core-tools-2 +Replaces: azure-functions-core-tools, azure-functions-core-tools-2 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: caebc792731e03b35387c703705967fed4e7215b649e9c2cef74632f2e38c986 +Size: 227774608 +Filename: pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4806-1.deb + +Package: libmsquic +Version: 2.1.8 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 16108 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl1.1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 9622432bdcedddff93aa4db72970e711b4539913430ff29659ba511e51ddeae0 +Size: 4127324 +Filename: pool/main/libm/libmsquic/libmsquic_2.1.8_amd64.deb + +Package: microsoft-identity-broker +Source: microsoft-identity-broker +Version: 2.0.0 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 90904 +Maintainer: Microsoft Identity +Description: microsoft-identity-broker + Microsoft Authentication Broker for Linux. +Conflicts: msft-identity-broker +Depends: default-jre, systemd, dbus-session-bus, dbus-system-bus, gnome-keyring +Recommends: microsoft-identity-diagnostics +Provides: msft-identity-broker +Replaces: msft-identity-broker +SHA256: 1c9e50e3adb389877e241d696a3d1fd0e10d4892c7a8d717e7d1717beff94581 +Size: 83941724 +Filename: pool/main/m/microsoft-identity-broker/microsoft-identity-broker_2.0.0_amd64.deb + +Package: mdatp +Version: 101.98.30 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 305838 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, mde-netfilter +SHA256: dfec95ca4abf684f6818ad812a68cb324660a8207b5d269029b188e18a6a1afd +Size: 119529588 +Filename: pool/main/m/mdatp/mdatp_101.98.30.amd64.deb + +Package: aadsshlogin-selinux +Version: 1.0.022300001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.3-1), selinux-utils, selinux-policy-default +SHA256: d0c4cf554390a4b99d923146300dae8870a5407ec8030823a08178c5d4c8c39a +Size: 2214 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.022300001_amd64.deb + +Package: libmsquic +Version: 2.3.6 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 13433 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: f592ad7699bec83600e52b7a773b1755b88fa9863cb0f7b29213da4002a51483 +Size: 4113250 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.6_amd64.deb + +Package: moby-engine +Version: 24.0.8-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 100317 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: bec3fe3908966782b767dff12eb97b842f3f6cb1bb300a165f6e0942bcd8a507 +Size: 32212754 +Filename: pool/main/m/moby-engine/moby-engine_24.0.8-ubuntu22.04u1_amd64.deb + +Package: blobfuse2 +Version: 2.1.1 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 30725 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: 4b2d4ba747ca1d40625f3439382abc7245fda059f8d91df335f4028b099a00ad +Size: 15360896 +Filename: pool/main/b/blobfuse2/blobfuse2_2.1.1_amd64.deb + +Package: azure-functions-core-tools-3 +Version: 3.0.4868-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v3 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools, azure-functions-core-tools-2 +Replaces: azure-functions-core-tools, azure-functions-core-tools-2 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 5c6f1d1609d7f1566ddef53416ae4d63c1fef4c001eede265f66c1b930ef0a33 +Size: 228285872 +Filename: pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4868-1.deb + +Package: azure-ai-vision-dev-image-analysis +Version: 0.13.0~beta.1 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 514 +Maintainer: vision-sdk@microsoft.com +Description: Azure AI Vision Image Analysis Developer Package +Depends: azure-ai-vision-dev-common (= 0.13.0~beta.1), azure-ai-vision-runtime-image-analysis (= 0.13.0~beta.1) +SHA256: 65e0a235170d0e504a0a4b15511b9e46327edd85edb997b5c484bf54ba114e75 +Size: 80078 +Filename: pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.13.0~beta.1-Linux.deb + +Package: dotnet-runtime-7.0 +Version: 7.0.16-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70850 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 7.0.16 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-deps-7.0 (>= 7.0.16), dotnet-hostfxr-7.0 (>= 7.0.16) +SHA256: b1cf760842db67bb48ea328dca5113a451a688cbb03e8d302b11263485ddbc54 +Size: 23203366 +Filename: pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.16-1_amd64.deb + +Package: azcmagent +Version: 1.24.02147.540 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 572a26cd0e32a9d21ad0c6df406349110bde36150426e0f78a2bc84f532f51dc +Size: 53624042 +Filename: pool/main/a/azcmagent/azcmagent_1.24.02147.540_amd64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.11-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11744 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.11) +SHA256: 6090cadb2918f982d6421b7b1307de164ec003d06146541f6154de564306b5b0 +Size: 1315928 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.11-x64.deb + +Package: sysmonforlinux +Version: 1.2.0 +Architecture: amd64 +Installed-Size: 58934 +Maintainer: Sysinternals +Description: A system monitor based on eBPF, ported from Windows, that outputs events to Syslog +Depends: libc6 (>= 2.14), libgcc1 (>= 1:3.0), libstdc++6 (>= 5), libxml2 (>= 2.7.4), sysinternalsebpf (>= 1.2.0) +SHA256: 39e135f6689b247a432965a4637d4ef33b8e247185a84b6e22bb88cf85f941f3 +Size: 1763970 +Filename: pool/main/s/sysmonforlinux/sysmonforlinux_1.2.0_amd64.deb + +Package: moby-compose +Version: 2.15.1+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 43912 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: f33beb2210f723d5ac19b3fd0b86a56499e66bb7445be8ac2376037da6879091 +Size: 10710768 +Filename: pool/main/m/moby-compose/moby-compose_2.15.1+azure-ubuntu22.04u1_amd64.deb + +Package: moby-containerd +Version: 1.5.11+azure-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 120364 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: f466c26c5d3cdfdf41a2eb4b0f9aba1bdce5cd2b187eef52efddd55a33c7693a +Size: 28881434 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.11+azure-ubuntu22.04u2_amd64.deb + +Package: aziot-identity-service +Version: 1.4.9-1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 19355 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1), psmisc +SHA256: 0c306767108bb8d235f037dc0c0e9d1f89b35f0348e418131e0c6350a0d3af25 +Size: 4676014 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.4.9-1_amd64.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.19-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.19 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: d6b3b80bcf84001b5b704d1274a218509313ab10e0509d22f992fb977861af00 +Size: 2886 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.19-1_amd64.deb + +Package: dotnet-apphost-pack-7.0 +Version: 7.0.17-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11285 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 7.0.17 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 0633197db22881494f9e7ba905bb04b4d2b398d8518e4096ed6ab88d13318d01 +Size: 3520798 +Filename: pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.17-1_amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.4653-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 35da4e0bf4c9964644f931cf81c3bd6bdfa3dc1b2a1ccc4893cc3263ecb373b2 +Size: 124424256 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4653-1.deb + +Package: powershell +Version: 7.2.14-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 168902 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 89c217d853228a7a2d60620da25b9dda36e8aa87a2714b9082b84359bb30da99 +Size: 68347216 +Filename: pool/main/p/powershell/powershell_7.2.14-1.deb_amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.4704-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 3ec86621b0f80d91ba828774a3f0200046ee14b27046afc64f71d7719fc22e42 +Size: 124473264 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4704-1.deb + +Package: dotnet-hostfxr-7.0 +Version: 7.0.3-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 424 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 7.0.3 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 7.0.3), libc6 +SHA256: 8985e06ed129ed00a442ecb28947c0f09782607633808fb2389c5f87f7bbf04a +Size: 143962 +Filename: pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.3-x64.deb + +Package: azure-functions-core-tools +Version: 4.0.5148-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 045926eb2b3ad031e0c2643bd6b219d3f8d8964fa484a10fd4e0fc29059cf7b2 +Size: 172042448 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5148-1.deb + +Package: dotnet-targeting-pack-7.0 +Version: 7.0.9-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 31138 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 7.0.9 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 2293ac02a16a580a50b49d421dcbe40d0b0c1cc7e42ed8da419bbea189ebfa5a +Size: 2568982 +Filename: pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.9-x64.deb + +Package: powershell-lts +Version: 7.2.14-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 168902 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 7e9cf6178ae45f187173f1f806e1889cbcf87fa9e55fb4658ff1ef0617d2de25 +Size: 68352544 +Filename: pool/main/p/powershell-lts/powershell-lts_7.2.14-1.deb_amd64.deb + +Package: dotnet-runtime-8.0 +Version: 8.0.0-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70492 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 8.0.0 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-8.0 (>= 8.0.0), dotnet-runtime-deps-8.0 (>= 8.0.0) +SHA256: 5bcb79c673e67a0f991eadc29dfe969aaa845609226d756516ab12575805d24b +Size: 23144414 +Filename: pool/main/d/dotnet-runtime-8.0/dotnet-runtime-8.0_8.0.0-1_amd64.deb + +Package: mdatp +Version: 101.98.58 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 306955 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, mde-netfilter +SHA256: 7bc64225075faaef53ec1053f82c96afe64ed8bc676f2c1306237d7c6186a253 +Size: 120343942 +Filename: pool/main/m/mdatp/mdatp_101.98.58.amd64.deb + +Package: dotnet-targeting-pack-8.0 +Version: 8.0.2-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 36082 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 8.0.2 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 3c55b77e554380d7b0741ef279024c51f0d38d88543f60d009b78db82cebd53e +Size: 2802806 +Filename: pool/main/d/dotnet-targeting-pack-8.0/dotnet-targeting-pack-8.0_8.0.2-1_amd64.deb + +Package: odbcinst1debian2 +Source: unixodbc +Version: 2.3.7 +Architecture: amd64 +Section: libs +Priority: optional +Installed-Size: 242 +Maintainer: Ubuntu Developers +Original-Maintainer: Steve Langasek +Description: Support library for accessing odbc ini files + This package contains the libodbcinst library from unixodbc, a library + used by ODBC drivers for reading their configuration settings from + /etc/odbc.ini and ~/.odbc.ini. + . + Also contained in this package are the driver setup plugins, which + describe the features supported by individual ODBC drivers. +Homepage: http://www.unixodbc.org/ +Multi-Arch: same +Breaks: libiodbc2, libmyodbc (<< 5.1.6-2), odbc-postgresql (<< 1:09.00.0310-1.1), tdsodbc (<< 0.82-8) +Conflicts: odbcinst1, odbcinst1debian1 +Depends: libc6 (>= 2.14), libltdl7 (>= 2.4.2), odbcinst (>= 2.3.7) +Replaces: unixodbc (<< 2.3.7) +SHA256: a5ba3b5fad82f0330a8bf4b5b89fe34420ae9b884e75889d4a0803a455180be6 +Size: 134622 +Filename: pool/main/u/unixodbc/odbcinst1debian2_2.3.7_amd64.deb + +Package: dotnet-hostfxr-7.0 +Version: 7.0.8-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 424 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 7.0.8 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 7.0.8), libc6 +SHA256: 45c3624776c280739550c606c83185497c31b21acc8f5150e71dfd5996f504a9 +Size: 144354 +Filename: pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.8-x64.deb + +Package: mdatp +Version: 101.23062.0010 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 386184 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, mde-netfilter +SHA256: 55b7f08fa4748037e5f67c6ca844e289da69212b1c52b7e7de6ae9553a583069 +Size: 133718266 +Filename: pool/main/m/mdatp/mdatp_101.23062.0010.amd64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.24-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11750 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.24) +SHA256: 148be51af16984cf17386ec477d9a3903670cca73a7f25443ec7b1d66ca22c36 +Size: 1315226 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.24-1_amd64.deb + +Package: mdatp +Version: 101.98.89 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 332405 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, mde-netfilter +SHA256: 582d1b94508d2d84432e1e4e049d6dbc712cca437ac82a2f25650703843a2f24 +Size: 125131640 +Filename: pool/main/m/mdatp/mdatp_101.98.89.amd64.deb + +Package: moby-engine +Version: 24.0.9-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 100331 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 54048c24cb1fe643cc0b1bf2a855d44c177f754c04e2a13ae4bd1b2b8c3ab9b5 +Size: 32217724 +Filename: pool/main/m/moby-engine/moby-engine_24.0.9-ubuntu22.04u1_amd64.deb + +Package: moby-runc +Version: 1.1.4+azure-ubuntu22.04u5 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 13360 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: c2a48b238b308c49f1a35b06a9ab37afc91eee3a9ff18bc4e729613b11402942 +Size: 6068374 +Filename: pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu22.04u5_amd64.deb + +Package: moby-buildx +Version: 0.11.2+azure-ubuntu22.04u3 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 76233 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 01d2608b44b8f5d1fdbf6a4c5edc4b6ff103fdfd93cdd2100617b70e514946a0 +Size: 34222544 +Filename: pool/main/m/moby-buildx/moby-buildx_0.11.2+azure-ubuntu22.04u3_amd64.deb + +Package: odbcinst +Source: unixodbc +Version: 2.3.7 +Architecture: amd64 +Section: libs +Priority: optional +Installed-Size: 73 +Maintainer: Ubuntu Developers +Original-Maintainer: Steve Langasek +Description: Helper program for accessing odbc ini files + This package contains the odbcinst helper tool, which allows ODBC driver + packages to install their own driver settings. +Homepage: http://www.unixodbc.org/ +Multi-Arch: foreign +Conflicts: odbcinst1 +Depends: libc6 (>= 2.4), odbcinst1debian2 (>= 2.3.7) +Replaces: odbcinst1, odbcinst1debian1 (<< 2.3.7), unixodbc (<< 2.3.7) +SHA256: 80b52c6b1728146dd1f6b3adecb311c24fa7ca191bda569263c1733b3e6a9675 +Size: 12024 +Filename: pool/main/u/unixodbc/odbcinst_2.3.7_amd64.deb + +Package: omi +Source: omi +Version: 1.7.1.0 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 4932 +Maintainer: Microsoft Corporation +Description: Open Management Infrastructure + omi server +Depends: libc6 (>= 2.3.6), libpam-runtime (>= 0.79-3) +Provides: omi +SHA256: f5cf3d358d6f93d2e3bcedcfe001900f74b65d1d88711b4087da339257f6b507 +Size: 1916638 +Filename: pool/main/o/omi/omi-1.7.1-0.ssl_300.ulinux.s.x64.deb + +Package: dotnet-sdk-3.1 +Version: 3.1.424-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 193096 +Maintainer: Microsoft +Description: Microsoft .NET Core SDK 3.1.424 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://dotnet.github.io/core +Depends: libc6 (>= 2.14), libgcc1 (>= 1:3.0), libstdc++6 (>= 4.6), dotnet-targeting-pack-3.1 (>= 3.1.0), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-3.1 (>= 3.1.30), aspnetcore-targeting-pack-3.1 (>= 3.1.10), dotnet-runtime-3.1 (>= 3.1.30), aspnetcore-runtime-3.1 (>= 3.1.30) +SHA256: c210f414ae6fac87305dc87332e42eb236ecf9aa87dc239737603ead0745fb97 +Size: 49828584 +Filename: pool/main/d/dotnet-sdk-3.1/dotnet-sdk-3.1.424-x64.deb + +Package: azure-functions-core-tools +Version: 4.0.4653-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 171aeb6bc5d33779abe3e2eddc99474eef8e3ae8151cd3a9115cb34d8b4d3338 +Size: 124365596 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4653-1.deb + +Package: dotnet-runtime-deps-3.1 +Version: 3.1.32-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Core Team +Description: dotnet-runtime-deps-3.1 3.1.32 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. This package installs all the system dependencies for .NET Core Runtime. +Homepage: https://dot.net/core +Depends: libgcc1, libssl1.0.0 | libssl1.0.2 | libssl1.1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: cae69c3c33de3da4bfcd4b7efa29c4023c518e4adba34056ebaa1b0f9f78ba22 +Size: 2674 +Filename: pool/main/d/dotnet-runtime-deps-3.1/dotnet-runtime-deps-3.1.32-x64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.417-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 337404 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.417 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.25), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.25), dotnet-apphost-pack-6.0 (>= 6.0.25), dotnet-runtime-6.0 (>= 6.0.25), aspnetcore-targeting-pack-6.0 (>= 6.0.25) +SHA256: e0fba6990e8181bcc9e8aee92efd9a9cc9464b2cd48482a8154363dc1e915d9b +Size: 86834506 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.417-1_amd64.deb + +Package: powershell +Version: 7.2.8-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 186934 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 5f72d3dd601e5211aa00f26cc5ed578eca7762c0d34bea0e560e5147d1e0d8d7 +Size: 69440998 +Filename: pool/main/p/powershell/powershell_7.2.8-1.deb_amd64.deb + +Package: powershell-lts +Version: 7.2.12-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 168871 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: c970cf3cfc68b7394c889f0df1b3ac0ca8c88a9cccea1a425bba239a392058ae +Size: 68202122 +Filename: pool/main/p/powershell-lts/powershell-lts_7.2.12-1.deb_amd64.deb + +Package: microsoft-identity-broker +Source: microsoft-identity-broker +Version: 1.7.0 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 90907 +Maintainer: Microsoft Identity +Description: microsoft-identity-broker + Microsoft Authentication Broker for Linux. +Conflicts: msft-identity-broker +Depends: default-jre, systemd, dbus-session-bus, dbus-system-bus, gnome-keyring +Recommends: microsoft-identity-diagnostics +Provides: msft-identity-broker +Replaces: msft-identity-broker +SHA256: f3584a61029b4a298049c3ba2f5dc67707857f3a15a5e4332ae57c189ea46755 +Size: 83946126 +Filename: pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.7.0_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.25-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 456 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.25 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.25), libc6 +SHA256: d7802c057864a1c083752edf0479f6b096978e07987cc94230eb46a87d79f309 +Size: 143604 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.25-1_amd64.deb + +Package: msopenjdk-17 +Version: 17.0.6-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 324300 +Maintainer: Microsoft +Description: OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: fonts-dejavu, libx11-6, libxext6, libxi6, libxrender1, libxtst6, libasound2, libfontconfig1, libfreetype6 +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: 367323e32388113e6f9603cb65de9c117f07aa929df044670524b0df9db2e2fd +Size: 192107296 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.6-1_amd64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.201-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 419738 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.201 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.2), dotnet-targeting-pack-8.0 (>= 8.0.2), dotnet-apphost-pack-8.0 (>= 8.0.2), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.2), aspnetcore-targeting-pack-8.0 (>= 8.0.2) +SHA256: ca261169ebc918a4263929c383d60eba14df0bf148d49e7df6cea50cc7c7428d +Size: 109998090 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.201-1_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.18-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68460 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.18 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.18), dotnet-runtime-deps-6.0 (>= 6.0.18) +SHA256: bebae5e400edcf0dde125ac0be4a050443701904abc62d951097ea836865b347 +Size: 23003214 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.18-x64.deb + +Package: dotnet-host +Version: 7.0.20-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 246 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.20 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 2f381b07ca0c72dd135fc85b2a7534dbe1b6180b26c58683a04b71d9366324be +Size: 57250 +Filename: pool/main/d/dotnet-host/dotnet-host_7.0.20-1_amd64.deb + +Package: azure-ai-vision-runtime-common-media +Version: 0.11.1~beta.1 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 16458 +Maintainer: vision-sdk@microsoft.com +Description: Azure AI Vision Common Components Media Runtime Package +Depends: azure-ai-vision-runtime-common (= 0.11.1~beta.1) +SHA256: 8e7550023fbc57e74b2c137731f2dedf9dc8c0fc1b106b9d051e0dba8e97e862 +Size: 5099542 +Filename: pool/main/a/azure-ai-vision-runtime-common-media/azure-ai-vision-runtime-common-media-0.11.1~beta.1-Linux.deb + +Package: powershell-preview +Version: 7.4.0-preview.4-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 173637 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 41ece23dc2b75bbce34604f3aac521ad2edcea4a3cf20f2c3016f509d9bd240c +Size: 69264320 +Filename: pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.4-1.deb_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.22-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.22 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.22), libc6 +SHA256: c5a1b053ad7cbd575809bbfab15fce0bd2ada12876d7a65583c441f0d95e311c +Size: 142392 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.22-1_amd64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.19-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.19 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 5a76b63c5cd8979e182dd7f9faea1ac1e2ce15845fabb1068e65ddb974f4918b +Size: 2122060 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.19-x64.deb + +Package: moby-compose +Version: 2.17.2+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 52638 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 1e8ee2718ea49cf79d4562a4d2b4d5c99746807a3ee9b189ca85ac5896b6b902 +Size: 12045422 +Filename: pool/main/m/moby-compose/moby-compose_2.17.2+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-apphost-pack-7.0 +Version: 7.0.10-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11281 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 7.0.10 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 1c730d33b41d3cb90a4b4113c422c1be81b5fa8f739046643befb55903921675 +Size: 3522798 +Filename: pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.10-1_amd64.deb + +Package: dotnet-hostfxr-7.0 +Version: 7.0.13-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 424 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 7.0.13 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 7.0.13), libc6 +SHA256: 532d2fa2dc9c1b2076010d25fcd7a89fa3a37a8134f8530c58894438aa751d8a +Size: 143994 +Filename: pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.13-1_amd64.deb + +Package: dotnet-hostfxr-8.0 +Version: 8.0.1-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 296 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 8.0.1 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libc6, libgcc1, libstdc++6, dotnet-host (>= 8.0.1) +SHA256: e1e819e08a8fce5619c6c7e554b3fe487568e0903e2fc6bc97c3532c8371c30d +Size: 108046 +Filename: pool/main/d/dotnet-hostfxr-8.0/dotnet-hostfxr-8.0_8.0.1-1_amd64.deb + +Package: dotnet-runtime-7.0 +Version: 7.0.9-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70839 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 7.0.9 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-deps-7.0 (>= 7.0.9), dotnet-hostfxr-7.0 (>= 7.0.9) +SHA256: cf64af93034be5eb0e8b4152100ee1f62ce1c41db6c3e8efc870c60ece52b222 +Size: 23199430 +Filename: pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.9-x64.deb + +Package: dotnet-runtime-deps-8.0 +Version: 8.0.2-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 8.0.2 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52 +SHA256: a394b6c014367a3971e3045b687f2f86f71742c0fd3a425d8e77e59dec3ae7a1 +Size: 2894 +Filename: pool/main/d/dotnet-runtime-deps-8.0/dotnet-runtime-deps-8.0_8.0.2-1_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.12-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11071 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.12 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: dfb9214017c725b2f2857bd83da980623a9136e48905375df61319b1ccb12ec1 +Size: 3531316 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.12-x64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.4-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27360 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.4 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 7d8324d65e4eefa0b979f0a92684391b1b554d31ca856895a4fce36b5a99d104 +Size: 2125006 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.4-x64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.26-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.26 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 19ee5e57c871369e0f1d6fb14705f4bf4ca30fd65438e96cd5cf1ce17069ed4a +Size: 2133348 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.26-1_amd64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.33-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.33 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 5e9fb1ac3d5caa6d62db0cb6ab25c5343b85732e4bb716cbc60c6d9f8bf7567f +Size: 2894 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.33-1_amd64.deb + +Package: moby-compose +Version: 2.23.0-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 58365 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: d079beff4892335ca7c1cdc071f9c0d81fa8c99ff74fe618832e4614f1f47bdf +Size: 17592428 +Filename: pool/main/m/moby-compose/moby-compose_2.23.0-ubuntu22.04u1_amd64.deb + +Package: blobfuse2 +Version: 2.0.4 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 31358 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: 79198abd87f82ee46b1b894d0ef873e93cecc508316e93893b5db322fe0a114f +Size: 15490958 +Filename: pool/main/b/blobfuse2/blobfuse2-2.0.4.x86_64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.6280-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 1f6163c7e80d29c8b6976441d21e4c00b480f1373d7593cc4993be27bc632ba3 +Size: 207734170 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.6280-1_amd64.deb + +Package: dotnet-hostfxr-7.0 +Version: 7.0.16-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 428 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 7.0.16 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 7.0.16), libc6 +SHA256: 9bf20d96fdebe01a50ba132fd5c09be7fcf56c2ac1c2cc8bd907a951f5e6b248 +Size: 144782 +Filename: pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.16-1_amd64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.5-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.5 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 3237a6a729460d8b47133c5e31591d1840b21c232c069af2768a876813b31bc8 +Size: 2806 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.5-x64.deb + +Package: azure-ai-vision-runtime-common-media +Version: 0.13.0~beta.1 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 16145 +Maintainer: vision-sdk@microsoft.com +Description: Azure AI Vision Common Components Media Runtime Package +Depends: azure-ai-vision-runtime-common (= 0.13.0~beta.1) +SHA256: 9dda765ea87c75ac95ca3bd36ea5bef5935f0d56de1d39a9c65d903aaf174436 +Size: 4976178 +Filename: pool/main/a/azure-ai-vision-runtime-common-media/azure-ai-vision-runtime-common-media-0.13.0~beta.1-Linux.deb + +Package: powershell-preview +Version: 7.4.0-preview.5-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 175473 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 38112c1586a450e87827823c559001662ca0950d580a611e3bf58e7b62791072 +Size: 70114408 +Filename: pool/main/p/powershell-preview/powershell-preview_7.4.0-preview.5-1.deb_amd64.deb + +Package: unixodbc-dev +Source: unixodbc +Version: 2.3.7 +Architecture: amd64 +Section: devel +Priority: extra +Installed-Size: 1698 +Maintainer: Ubuntu Developers +Original-Maintainer: Steve Langasek +Description: ODBC libraries for UNIX (development files) + This package contains the development files (headers and libraries) for + unixODBC, an implementation of the Open DataBase Connectivity interface + for Unix systems. You should not need to install this package unless + you intend to develop C language applications which use ODBC, or to + compile ODBC-using applications from source. +Homepage: http://www.unixodbc.org/ +Conflicts: libiodbc2-dev, remembrance-agent (<< 2.11-4) +Depends: unixodbc (= 2.3.7), odbcinst1debian2 (= 2.3.7), libltdl3-dev +SHA256: dc575321dac251eaac96ebfa024cbb2605cec279a4baae176529be97ae61fe4e +Size: 37052 +Filename: pool/main/u/unixodbc/unixodbc-dev_2.3.7_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.31-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68483 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.31 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.31), dotnet-runtime-deps-6.0 (>= 6.0.31) +SHA256: 475f01669eb09097cf903323644bac81bcde1e188513bb77e841a764e602d268 +Size: 22894684 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.31-1_amd64.deb + +Package: dotnet-host +Version: 7.0.13-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 246 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.13 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: b478f09525bbacaa261ff0edb3e0faefc648861cd5cf1e582849cf2723a086c3 +Size: 57230 +Filename: pool/main/d/dotnet-host/dotnet-host_7.0.13-1_amd64.deb + +Package: mde-netfilter +Version: 100.69.52 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 92 +Maintainer: Microsoft Defender for Endponts +Description: Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace +Depends: libnetfilter-queue1, libglib2.0-0 +SHA256: 6e00f07a56be4097b9ff86ab3257017811d1b6f6bf121b69b53a8d6c06042c36 +Size: 24430 +Filename: pool/main/m/mde-netfilter/mde-netfilter_100.69.52.amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.5907-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 2e140ce8d2548df11ce964c7d44d1ce2cb0b67df52d5a8bc86f77e1b05fad92d +Size: 208351962 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5907-1_amd64.deb + +Package: moby-containerd +Version: 1.6.30-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 128255 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: f02101de2953d81772efc77a727f01c0e8a1ac93cd2ef9ae2084d10886941cf8 +Size: 45840436 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.30-ubuntu22.04u2_amd64.deb + +Package: aziot-edge +Version: 1.4.20-1 +Architecture: amd64 +Section: admin +Priority: extra +Installed-Size: 18514 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, aziot-identity-service (= 1.4.6-1), sed +SHA256: f17e41c9dc8d78094f96ceb04f2407645d64e7bc08472d711ca4160bcf1a6e06 +Size: 4876334 +Filename: pool/main/a/aziot-edge/aziot-edge_1.4.20-1_amd64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.15-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.15 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: c50a6d720eb317297a5915f1246f50239f4aaa98208436cbde53f5c7a9d29110 +Size: 2796 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.15-x64.deb + +Package: azcmagent +Version: 1.35.02478.1194 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 34ea6c2cfcbf593546d19bf6de0245008ba19c5f57d6562e7b9371792ae03279 +Size: 55205234 +Filename: pool/main/a/azcmagent/azcmagent_1.35.02478.1194_amd64.deb + +Package: moby-compose +Version: 2.23.1-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 58364 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: bee7b2c61c3b8f7f7b42d91308ccc179f57126e7ac51b0eec724e5cc33792ad7 +Size: 17591584 +Filename: pool/main/m/moby-compose/moby-compose_2.23.1-ubuntu22.04u1_amd64.deb + +Package: libmsquic +Version: 2.1.4 +Architecture: amd64 +Section: default +Priority: extra +Installed-Size: 16079 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 2275d8debabc093181fb3cf6f2c07c9351365bc4a8941c69b985a099673b298c +Size: 4117996 +Filename: pool/main/libm/libmsquic/libmsquic_2.1.4_amd64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.29-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19905 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.29) +SHA256: 52902f1ae13e2ae3d9cfd61f3f2974334c756c10fb62ce55cb53bfee18677c65 +Size: 6624930 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.29-1_amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.5530-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 1c599b15ea9a5a3acdfe24457bfa9b4f9cd79f271ff3224e81480e843d3feb19 +Size: 158158784 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5530-1_amd64.deb + +Package: dotnet-runtime-7.0 +Version: 7.0.7-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70837 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 7.0.7 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-deps-7.0 (>= 7.0.7), dotnet-hostfxr-7.0 (>= 7.0.7) +SHA256: ba5c8bb6c3509d24c9f5fb8ed8b8ac51165044be3bbb726e094c781f9cc04d49 +Size: 23204566 +Filename: pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.7-x64.deb + +Package: msopenjdk-17 +Version: 17.0.4.1-1 +Architecture: amd64 +Section: java +Priority: extra +Installed-Size: 323717 +Maintainer: Microsoft +Description: OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: fonts-dejavu, libx11-6, libxext6, libxi6, libxrender1, libxtst6, libasound2, libfontconfig1, libfreetype6 +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: 23df3c1a4b3bd9218632b828765cdecc49e2143f4969496df164dad9521c060f +Size: 191756484 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.4.1-1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.304-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 366875 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.304 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.7), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.7), dotnet-runtime-7.0 (>= 7.0.7), dotnet-targeting-pack-7.0 (>= 7.0.7), aspnetcore-runtime-7.0 (>= 7.0.7) +SHA256: 3e683a05c3ae357896c893fb09a56418274c00498d0344af59e5d0b152ae82fd +Size: 96542450 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.304-x64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.30-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68483 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.30 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.30), dotnet-runtime-deps-6.0 (>= 6.0.30) +SHA256: 8564566355cce865dbd3c5ea594b1ff155caf75dd2d7cecc9312d6ccb4fad636 +Size: 22566956 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.30-1_amd64.deb + +Package: dotnet-runtime-8.0 +Version: 8.0.7-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70256 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 8.0.7 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-8.0 (>= 8.0.7), dotnet-runtime-deps-8.0 (>= 8.0.7) +SHA256: 9eef6cdf55f85b315de73a9a971c12826a1ef7f826e62e9c69ad64d450187aff +Size: 23050030 +Filename: pool/main/d/dotnet-runtime-8.0/dotnet-runtime-8.0_8.0.7-1_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.33-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 428 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.33 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.33), libc6 +SHA256: 27ee50f5aa687433aae501616a4fa7ad699853977cdf8e2645551e030cefdc54 +Size: 143558 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.33-1_amd64.deb + +Package: unixodbc +Version: 2.3.7 +Architecture: amd64 +Section: database +Priority: optional +Installed-Size: 111 +Maintainer: Ubuntu Developers +Original-Maintainer: Steve Langasek +Description: Basic ODBC tools + UnixODBC is an implementation of the Open Database Connectivity standard, + a database abstraction layer that allows applications to be used with + many different relational databases by way of a single library. + . + This package contains isql, a command-line tool that allows SQL commands + to be entered interactively. +Homepage: http://www.unixodbc.org/ +Multi-Arch: foreign +Conflicts: unixodbc-bin (<< 2.3.7) +Depends: libc6 (>= 2.14), odbcinst1debian2 (>= 2.3.7), libodbc1 (>= 2.3.7) +SHA256: 3a1ee6341d9319731bbffbae775fd7f455bcd34d97237a82b58a3280a3366f24 +Size: 19572 +Filename: pool/main/u/unixodbc/unixodbc_2.3.7_amd64.deb + +Package: aadsshlogin-selinux +Version: 1.0.023850001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.3-1), selinux-utils, selinux-policy-default +SHA256: 6a0c3277754585d81d7c1216a23fa034bca6cacef7f162aba0af301ea734fc49 +Size: 2214 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.023850001_amd64.deb + +Package: mdatp +Version: 101.60.93 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 207852 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: curl (>= 7.5), libseccomp2, libuuid1, libatomic1, libc6 (>= 2.23), python3, uuid-runtime, dmidecode, auditd, libselinux1, libfuse2, mde-netfilter, perl +SHA256: 9faf6bf463dcd6cb467eb3b887b9f5af1d7c5a0e05126b989f5c7c640db84567 +Size: 60945336 +Filename: pool/main/m/mdatp/mdatp_101.60.93.amd64.deb + +Package: msopenjdk-17 +Version: 17.0.8-2 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 324732 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 17 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 42cf4a8de93da7d44cbf043b207f077797c88b9c4f6fc3ec10612901aa61f0b2 +Size: 165069322 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8-2_amd64.deb + +Package: moby-engine +Version: 23.0.6+azure-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 97220 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 8a60ad946ed45ccd71f4c3d831cf29d8631eccffb62a40a014cd15127bd0fc8b +Size: 25013548 +Filename: pool/main/m/moby-engine/moby-engine_23.0.6+azure-ubuntu22.04u2_amd64.deb + +Package: dotnet-host +Version: 7.0.4-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 246 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.4 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 7ce61ee5404f2ac55d834c1412267cc1eb7b6abab41572100c26b873e6a993ac +Size: 57210 +Filename: pool/main/d/dotnet-host/dotnet-host-7.0.4-x64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.316-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 365584 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.316 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.19), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.19), dotnet-runtime-7.0 (>= 7.0.19), dotnet-targeting-pack-7.0 (>= 7.0.19), aspnetcore-runtime-7.0 (>= 7.0.19) +SHA256: d679fdda0f67e7bd32b1d3c987305ce2372805b383b4b7a54f1d27842a90371e +Size: 96372642 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.316-1_amd64.deb + +Package: powershell-preview +Version: 7.5.0-preview.3-1.deb +Architecture: amd64 +Section: shells +Priority: optional +Installed-Size: 180295 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 0b6861652fd5a3284b69c3e1bbb53e403067a0be1e657f46bfddcdfc2fec3998 +Size: 72400646 +Filename: pool/main/p/powershell-preview/powershell-preview_7.5.0-preview.3-1.deb_amd64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.15-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.15 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 8b1e8e8539e5a5186bd52c168d7fad2a912d0765a999c0e7010444941b7ef402 +Size: 2131114 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.15-x64.deb + +Package: mde-netfilter +Version: 100.69.48 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 92 +Maintainer: Microsoft Defender for Endponts +Description: Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace +Depends: libnetfilter-queue1, libglib2.0-0 +SHA256: eca7883022d9968c8ce2e357230abe4fbae1df472f490c13428a988275d34527 +Size: 24420 +Filename: pool/main/m/mde-netfilter/mde-netfilter_100.69.48.amd64.deb + +Package: dotnet-targeting-pack-7.0 +Version: 7.0.0-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 31132 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 7.0.0 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 4b3447d53557aa91e5522b47cc1e65f53fc34ca7e89ac6e6e2d3de8c9a26a248 +Size: 2567740 +Filename: pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.0-x64.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.4-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.4 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 98e226c6ba99ef984fc0672c64c50b5ad3b1b03ba574ddbcdcb87cb6920100a1 +Size: 2886 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0.4-x64.deb + +Package: omi +Source: omi +Version: 1.7.0.0 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 4820 +Maintainer: Microsoft Corporation +Description: Open Management Infrastructure + omi server +Depends: libc6 (>= 2.3.6), libpam-runtime (>= 0.79-3) +Provides: omi +SHA256: 9e4d9ef4e1965f8a82f97eaf4502538692ce7d8b73100859260c369c1a08f661 +Size: 1885644 +Filename: pool/main/o/omi/omi-1.7.0-0.ssl_300.ulinux.x64.deb + +Package: moby-engine +Version: 20.10.17+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 97682 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: c41a99e8705e0356adf89f1730f636993a85c0ac8f028e54dfe4e2c1f612155a +Size: 23279264 +Filename: pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu22.04u1_amd64.deb + +Package: azure-functions-core-tools-3 +Version: 3.0.4753-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v3 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools, azure-functions-core-tools-2 +Replaces: azure-functions-core-tools, azure-functions-core-tools-2 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 34bdb4adc9be76d1496ff8281c4d66aed4ba8a5baf656fba7f75d9225d00354d +Size: 227764116 +Filename: pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.4753-1.deb + +Package: azcmagent +Version: 1.31.02356.952 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 7c93aff6e5b62413727e391e666fd857be0d76b8e6b3119dd5e9c94329c5bd28 +Size: 54290410 +Filename: pool/main/a/azcmagent/azcmagent_1.31.02356.952_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.319-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 331573 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.319 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.24), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.24), dotnet-apphost-pack-6.0 (>= 6.0.24), dotnet-runtime-6.0 (>= 6.0.24), aspnetcore-targeting-pack-6.0 (>= 6.0.24) +SHA256: 385918a9f7fcb909bcab0f0a13ed6db6edfcb35a41f9123105495331ec28bee4 +Size: 85294962 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.319-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.133-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 314802 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.133 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.33), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.33), dotnet-apphost-pack-6.0 (>= 6.0.33), dotnet-runtime-6.0 (>= 6.0.33), aspnetcore-targeting-pack-6.0 (>= 6.0.33) +SHA256: faa371a0b2c3885c74980e085fb94217be5ca20022c15b01c37fbdfff1a37173 +Size: 78820650 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.133-1_amd64.deb + +Package: azure-ai-vision-runtime-image-analysis +Version: 0.13.0~beta.1 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 682 +Maintainer: vision-sdk@microsoft.com +Description: Azure AI Vision Image Analysis Runtime Package +Depends: azure-ai-vision-runtime-common (= 0.13.0~beta.1), azure-ai-vision-runtime-common-media (= 0.13.0~beta.1) +SHA256: 58acb3b752c6503043aaf1cfcdb3ce19ae976ba01f548c7f75dc6a91c0bb33fe +Size: 150004 +Filename: pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.13.0~beta.1-Linux.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.105-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 350038 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.105 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.5), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.5), dotnet-runtime-7.0 (>= 7.0.5), dotnet-targeting-pack-7.0 (>= 7.0.5), aspnetcore-runtime-7.0 (>= 7.0.5) +SHA256: ee86e6651c1e00b627ef3f7688ca41c0090058df0c2508c638404e7bd64753c8 +Size: 90637070 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.105-x64.deb + +Package: intune-portal +Version: 1.2405.17-jammy +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 27699 +Maintainer: Microsoft +Description: Microsoft Intune + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +Depends: libpango-1.0-0 (>= 1.14.0), libcurl4 (>= 7.16.2), libsoup2.4-1 (>= 2.4.0), gnome-keyring (>= 3.36), libsystemd0, libatk1.0-0 (>= 1.12.4), libssl3 (>= 3.0.0~~alpha1), libjavascriptcoregtk-4.0-18, libsqlite3-0 (>= 3.7.14), libpam0g (>= 0.99.7.1), zlib1g (>= 1:1.2.0), libgtk-3-0 (>= 3.21.4), libx11-6, libglib2.0-0 (>= 2.12.0), libsecret-1-0 (>= 0.7), libuuid1 (>= 2.16), libwebkit2gtk-4.0-37 (>= 2.39.90), libc6 (>= 2.34), libgtk-3-0 (>= 3.9.10), msalsdk-dbusclient (>= 1.0), libstdc++6 (>= 12), libglib2.0-0 (>= 2.35.8), libpam-pwquality (>= 1.4.0-2), libdbus-1-3 (>= 1.9.14) +Recommends: microsoft-edge-stable (>= 102) +SHA256: 5a954f5b387c8cdd3dd8c698dab31784b7e9557b1f94c97d84e63d9cd18994b9 +Size: 6662402 +Filename: pool/main/i/intune-portal/intune-portal_1.2405.17-jammy_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.401-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 336555 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.401 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.9), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.9), dotnet-apphost-pack-6.0 (>= 6.0.9), dotnet-runtime-6.0 (>= 6.0.9), aspnetcore-targeting-pack-6.0 (>= 6.0.9) +SHA256: c87f7c06058a2b355817e5671b8d94d18abbf70fba8f72824ae81ac4c5d83005 +Size: 86551776 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.401-x64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.32-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19905 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.32) +SHA256: 0a0e751cf26e10fffa727e6fbb62d72d2e0e786fb54485e95dc7e95d4afc1ebd +Size: 6622702 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.32-1_amd64.deb + +Package: moby-containerd +Version: 1.5.13+azure-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 107145 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 5bb237c50903f87e4a54ac0f1ebd612f33855558c8f054c9886cb836074e7d1c +Size: 27898488 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.13+azure-ubuntu22.04u2_amd64.deb + +Package: sysmonforlinux +Version: 1.3.3 +Architecture: amd64 +Installed-Size: 58934 +Maintainer: Sysinternals +Description: A system monitor based on eBPF, ported from Windows, that outputs events to Syslog +Depends: libc6 (>= 2.14), libgcc1 (>= 1:3.0), libstdc++6 (>= 5), libxml2 (>= 2.7.4), libssl-dev, sysinternalsebpf (>= 1.2.0) +SHA256: 61ba1d2d0c1550865461d68e54efda2497704bc66f6f8bce321db10906a2c9aa +Size: 3221754 +Filename: pool/main/s/sysmonforlinux/sysmonforlinux_1.3.3_amd64.deb + +Package: azapi2azurerm +Version: 1.0.0 +Architecture: amd64 +Section: default +Priority: extra +Installed-Size: 20460 +Maintainer: henglu +Description: A tool to migrate terraform resources from azapi to azurerm +Homepage: https://github.com/Azure/azapi2azurerm +Vendor: none +License: MPL-2.0 +SHA256: 40aeaab74ceb13e7c63047f68992d326dc4b23bc3e2e3fa32200ad3cf4fe5481 +Size: 6693854 +Filename: pool/main/a/azapi2azurerm/azapi2azurerm-1.0.0-1-amd64.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.17-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.17 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 5338d2af9a39886e62045d4c7a7a3e00775506d55439db85ac17bbc19575bcbb +Size: 2882 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.17-1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.113-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 350115 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.113 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.13), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.13), dotnet-runtime-7.0 (>= 7.0.13), dotnet-targeting-pack-7.0 (>= 7.0.13), aspnetcore-runtime-7.0 (>= 7.0.13) +SHA256: 223e3af61704a49c26518832cfe04260c23017fd06177dcda24d83495c39012e +Size: 90709030 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.113-1_amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.5390-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 4264cfb88a9565f15594d8b54ec57bda33e06684acd8d5c9d3081ceb5089e750 +Size: 157254364 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5390-1.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.27-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19904 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.27) +SHA256: 567aae8b5d3722ca0b036edcb6391bf88e85930657f14c2bca146125c583bf5f +Size: 6623542 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.27-1_amd64.deb + +Package: azure-ai-vision-runtime-image-analysis +Version: 0.11.1~beta.1 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 682 +Maintainer: vision-sdk@microsoft.com +Description: Azure AI Vision Image Analysis Runtime Package +Depends: azure-ai-vision-runtime-common (= 0.11.1~beta.1), azure-ai-vision-runtime-common-media (= 0.11.1~beta.1) +SHA256: dc35ab240cb86855ab55cd95f92f89fc3900c72c1ddc234e90ddbf87a6cf5b2a +Size: 149912 +Filename: pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.11.1~beta.1-Linux.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.30-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11075 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.30 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 417d30371b6a2c80d0858f14c975df599c607e1b6dd864e10d9eef62ae6613ad +Size: 3535812 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.30-1_amd64.deb + +Package: aspnetcore-targeting-pack-8.0 +Version: 8.0.3-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 15813 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-8.0 (>= 8.0.3) +SHA256: 8410f08edd1f6995460661a78a64cdca9d7d5ace0412d5dcf8cc39fb1b74b211 +Size: 1915770 +Filename: pool/main/a/aspnetcore-targeting-pack-8.0/aspnetcore-targeting-pack-8.0_8.0.3-1_amd64.deb + +Package: aspnetcore-runtime-8.0 +Version: 8.0.7-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 23515 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-8.0 (>= 8.0.7) +SHA256: f190fba895ff516b05bdd36f216fc9151b53d37d8c77edeedd167ab68105808e +Size: 7674866 +Filename: pool/main/a/aspnetcore-runtime-8.0/aspnetcore-runtime-8.0_8.0.7-1_amd64.deb + +Package: dotnet-apphost-pack-7.0 +Version: 7.0.9-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11281 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 7.0.9 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: a64f3530d4ea352189d2b3bd0bf7def827c9ff70fce7b7655df0db27038dcd0b +Size: 3524010 +Filename: pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.9-x64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.14-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11744 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.14) +SHA256: a7fe468a27a9efb9f56f65ce563eb582f064e486f566710c3ebb680ce3a2386d +Size: 1315118 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.14-x64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.5858-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 04fa6228a5ff52024d4f38685b284c8b2ae0d4302a77c24d5c2e22cb38814f69 +Size: 208255474 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5858-1_amd64.deb + +Package: dotnet-targeting-pack-7.0 +Version: 7.0.13-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 31138 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 7.0.13 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 1ff382ea6af6364f8f35a5ccd64bae88c31d09652d5ad252fd55bb212e99673d +Size: 2567222 +Filename: pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0_7.0.13-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.421-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 336990 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.421 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.29), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.29), dotnet-apphost-pack-6.0 (>= 6.0.29), dotnet-runtime-6.0 (>= 6.0.29), aspnetcore-targeting-pack-6.0 (>= 6.0.29) +SHA256: e835ddcb29058c90c82ed5f90cc70c4c9706701a4a3036ffac490d679520d840 +Size: 86831766 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.421-1_amd64.deb + +Package: moby-containerd +Version: 1.6.18+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 125352 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 9c62b8730d4e5e1dae91a7ea493e55c05431b62c01a61019e71c481a01f16fc5 +Size: 34783010 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.18+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.22-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.22 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: b80fa237cab00252cc80941d7c912bed0c6565891b9ad4a41ebb2641e1c138a8 +Size: 2133678 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.22-1_amd64.deb + +Package: dotnet-runtime-8.0 +Version: 8.0.1-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70245 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 8.0.1 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-8.0 (>= 8.0.1), dotnet-runtime-deps-8.0 (>= 8.0.1) +SHA256: 9be3da585f30f02ca2db48044a65748bdd83458312375e17a9ac3ef96e0254c4 +Size: 23053646 +Filename: pool/main/d/dotnet-runtime-8.0/dotnet-runtime-8.0_8.0.1-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.121-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 314335 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.121 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.21), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.21), dotnet-apphost-pack-6.0 (>= 6.0.21), dotnet-runtime-6.0 (>= 6.0.21), aspnetcore-targeting-pack-6.0 (>= 6.0.21) +SHA256: ea0ec0cc9ae4f25bb30f5f4c7704875a62d54656ee3cb1e22a3c8a4d97f24489 +Size: 78873546 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.121-1_amd64.deb + +Package: azcmagent +Version: 1.43.02724.1568 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 803b8b00ef51302f86ce830e4720a86e0647e347e7350db42cfa8c23859e6076 +Size: 67155790 +Filename: pool/main/a/azcmagent/azcmagent_1.43.02724.1568_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.105-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 312610 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.105 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.5), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.5), dotnet-apphost-pack-6.0 (>= 6.0.5), dotnet-runtime-6.0 (>= 6.0.5), aspnetcore-targeting-pack-6.0 (>= 6.0.5) +SHA256: 633cc12c08795b939f67990b8677cbd693cede30ae09bbbd6bfed6e7397070db +Size: 78307244 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.105-x64.deb + +Package: sysinternalsebpf +Version: 1.4.0 +Architecture: amd64 +Installed-Size: 22072 +Maintainer: Sysinternals +Description: A shared library and code library for making eBPF programs. + SysinternalsEBPF is a shared library that provides control over + eBPF programs, and an eBPF code library that eBPF programs can include to + interact with the library. +Depends: libc6 (>= 2.26), libelf1 (>= 0.131), libglib2.0-0 (>= 2.12.0), libjson-glib-1.0-0 (>= 0.13.2), zlib1g (>= 1:1.2.3.3) +SHA256: 64958aac0d3f0949ebd9430f033e8b72b9e2ec4e444828fbf9b50a2122a47260 +Size: 705086 +Filename: pool/main/s/sysinternalsebpf/sysinternalsebpf_1.4.0_amd64.deb + +Package: dotnet-apphost-pack-7.0 +Version: 7.0.20-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11285 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 7.0.20 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: f4fad24e23d3ea26ff6d7921f58f5e984d000dd23ec063ad7e25f668c069b308 +Size: 3527478 +Filename: pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.20-1_amd64.deb + +Package: aziot-edge +Version: 1.4.27-1 +Architecture: amd64 +Section: admin +Priority: extra +Installed-Size: 18514 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, aziot-identity-service (= 1.4.7-1), sed +SHA256: 6e0f7729066ce8d675cb828701f6f50d8eafad86c0a12b03535e111361753a9f +Size: 4876326 +Filename: pool/main/a/aziot-edge/aziot-edge_1.4.27-1_amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.5441-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: f8908ba61bfe2c80198f5e68282f02d7150a5ae4aa411444eb21ae4e8e1af71e +Size: 157337028 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5441-1.deb + +Package: moby-runc +Version: 1.1.12-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 13286 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: 133587396b06fcf71744263dfea4239466b26f0678d7b1aa2495604be51050c4 +Size: 6676550 +Filename: pool/main/m/moby-runc/moby-runc_1.1.12-ubuntu22.04u1_amd64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.23-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11750 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.23) +SHA256: d77d76800156fe2f8927c4058e9f38c5869792154381eaab1f21c390c1f2339f +Size: 1315890 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.23-1_amd64.deb + +Package: dotnet-host +Version: 6.0.28-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.28 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: f0db181908ab08ad93c3a11e4c789f8b4074afc82958aa1618477eece87c50bd +Size: 55924 +Filename: pool/main/d/dotnet-host/dotnet-host_6.0.28-1_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.20-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11071 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.20 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 758f26010760cd1b7e36aaeb4c04903d1b6f0544809e5c2d2b302d130a5d553a +Size: 3523928 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.20-x64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.415-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 337395 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.415 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.23), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.23), dotnet-apphost-pack-6.0 (>= 6.0.23), dotnet-runtime-6.0 (>= 6.0.23), aspnetcore-targeting-pack-6.0 (>= 6.0.23) +SHA256: 271f45bad6cd63327162eccf54fd12bf0b13eac42100147cf03ab105d372241a +Size: 86815422 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.415-1_amd64.deb + +Package: moby-engine +Version: 20.10.23+azure-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 86950 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 20fa6383d55dfe4e784ca31843be81af0687879818ed63eb29051ec102bb3541 +Size: 22600226 +Filename: pool/main/m/moby-engine/moby-engine_20.10.23+azure-ubuntu22.04u2_amd64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.32-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.32 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: f55caef173086ec23a04850a38bafeb5d9bf0a149f097a284459438313b5ccea +Size: 2800 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.32-1_amd64.deb + +Package: moby-runc +Version: 1.1.14-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 13581 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: ce83d4ff1c9efa32eefebd1891ed40efff16889a0d14775e77042fd21c5580bb +Size: 6875838 +Filename: pool/main/m/moby-runc/moby-runc_1.1.14-ubuntu22.04u1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.422-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 337494 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.422 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.30), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.30), dotnet-apphost-pack-6.0 (>= 6.0.30), dotnet-runtime-6.0 (>= 6.0.30), aspnetcore-targeting-pack-6.0 (>= 6.0.30) +SHA256: ed543f78c99dc0a909608ba1cea9715c80df6d1bb81347af0eb2f58d85f350e8 +Size: 86934942 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.422-1_amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.4865-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: e5a1b29838b4bd994f116abd7703c5705e0e88177b0899d91f157b8592ed1864 +Size: 126081380 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.4865-1.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.13-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.13 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: a20d656894bb7709356e3914b6aa1410b869fc97b1adc5a7a1af5b82cfd4eba1 +Size: 2886 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.13-1_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.20-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.20 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.20), libc6 +SHA256: 38f6d045ebf8dc7b6b1c554a4d81a8e59e50e90438ee9b1fd76f594047583d3d +Size: 142360 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.20-x64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.5-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19855 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.5) +SHA256: 7c264f8735dbe110e039125f5bad99ecb950a199abe16d6cd2cb97b07b4975d2 +Size: 6604008 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.5-x64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.24-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11071 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.24 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 3a1c44092c90f674e400896b1bdb629091bc899774ef03d80a6f82568743069c +Size: 3522342 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.24-1_amd64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.27-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.27 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: a925e0f727044e7f2c9e19adcb5df94df502e08a6cd0ec61cd9394ddce387205 +Size: 2137272 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.27-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.300-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 330666 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.300 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.5), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.5), dotnet-apphost-pack-6.0 (>= 6.0.5), dotnet-runtime-6.0 (>= 6.0.5), aspnetcore-targeting-pack-6.0 (>= 6.0.5) +SHA256: 5dcee2d1cea6d4d90cdda4cf70da1b5947f3d798d47b0b477dc4885513afe860 +Size: 84870018 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.300-x64.deb + +Package: dotnet-apphost-pack-7.0 +Version: 7.0.7-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11281 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 7.0.7 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: e2e154b631f938328fdb2c262de25cc7c6769a3705a2b55d30f00fab3d715acb +Size: 3524566 +Filename: pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0.7-x64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.13-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19873 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.13) +SHA256: bbf1f452f980f7807b093746972e745a9c804da606e42e9250b1515a2179b5d7 +Size: 6612406 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.13-x64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.25-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19905 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.25) +SHA256: d79514043ad9aa4eec12b43f124c4a6c8c339f16fbcf672db0b5887485feafa6 +Size: 6620870 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0_6.0.25-1_amd64.deb + +Package: dotnet-runtime-3.1 +Version: 3.1.30-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 71233 +Maintainer: .NET Core Team +Description: Microsoft .NET Core Runtime - 3.1.30 Microsoft.NETCore.App 3.1.30 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://dot.net/core +Depends: dotnet-hostfxr-3.1 (>= 3.1.30), dotnet-runtime-deps-3.1 (>= 3.1.30) +SHA256: 748af674ef3158330159ad766e13fe2e50df9f864053831ede774f22be9b5b8e +Size: 21656458 +Filename: pool/main/d/dotnet-runtime-3.1/dotnet-runtime-3.1.30-x64.deb + +Package: moby-runc +Version: 1.1.4+azure-ubuntu22.04u3 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 14259 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: d1bc339a295e50b3c1f6b7e5973beebd981520b12f98d359df178a991996cea6 +Size: 5669040 +Filename: pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu22.04u3_amd64.deb + +Package: moby-runc +Version: 1.1.11-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 13275 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: 9299b38363eb9a519f90d143cdd4b78b5e069f73c08846881c3e822c7883a3da +Size: 6673542 +Filename: pool/main/m/moby-runc/moby-runc_1.1.11-ubuntu22.04u1_amd64.deb + +Package: dotnet-host +Version: 7.0.3-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 246 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.3 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: c86af078631884cb8aecb055ad37570c49a2de66672df4f4ae9ff574eca4331c +Size: 57350 +Filename: pool/main/d/dotnet-host/dotnet-host-7.0.3-x64.deb + +Package: libmsquic +Version: 2.3.2 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 13431 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: b9583bea09a1b1d02bdda1f5da5e1196a518b5ae4e151f955d64a1db45b9c89e +Size: 4112124 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.2_amd64.deb + +Package: libmsquic +Version: 2.2.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 16751 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl1.1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: f436ce58f5d47869aefb256635b97e1b95872dba8ace6c8991928f4d8a88e782 +Size: 4348660 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.0_amd64.deb + +Package: powershell-lts +Version: 7.2.6-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 187014 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: ff202d7a1773806df4d150f860f91028cd318ff5557b99ef43e7b07002d784df +Size: 69468394 +Filename: pool/main/p/powershell-lts/powershell-lts_7.2.6-1.deb_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.120-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 314334 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.120 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.20), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.20), dotnet-apphost-pack-6.0 (>= 6.0.20), dotnet-runtime-6.0 (>= 6.0.20), aspnetcore-targeting-pack-6.0 (>= 6.0.20) +SHA256: 2b0127f7334f7b4d29f4fd582d7a376cd3df021652eb5a8c2791cb60b45c66ca +Size: 78857458 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.120-x64.deb + +Package: powershell-lts +Version: 7.2.11-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 189132 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: e8a94fca555dd774d7c942d6892082637b811b8eb3eddf1a6820033d833d156c +Size: 70503936 +Filename: pool/main/p/powershell-lts/powershell-lts_7.2.11-1.deb_amd64.deb + +Package: dotnet-targeting-pack-7.0 +Version: 7.0.2-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 31135 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 7.0.2 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 1e1b3c93eaa1f6fd742e7dd166928435d56ccce4217e1bbc6177f172977665a7 +Size: 2567262 +Filename: pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.2-x64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.9-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11742 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.9) +SHA256: 75232addc8ebe5da0ac7bbbf605f012da77390de8db6be5627c0c1d8fee7a858 +Size: 1313808 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.9-x64.deb + +Package: azure-functions-core-tools-3 +Version: 3.0.5682-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 84e5cb6709b9eedcd5fcfbbc144c50fe07209ad295422aea111ceba505688870 +Size: 228474734 +Filename: pool/main/a/azure-functions-core-tools-3/azure-functions-core-tools-3_3.0.5682-1_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.33-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68485 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.33 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.33), dotnet-runtime-deps-6.0 (>= 6.0.33) +SHA256: 03cb55d923f7df66bf59c55a1a4ce2eb6cd0a241e9837e942e46d666397198f6 +Size: 22323554 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.33-1_amd64.deb + +Package: dotnet-targeting-pack-7.0 +Version: 7.0.1-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 31135 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 7.0.1 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 7a7c760329044684e0614f9129037509e391f1457ca80c3b5a9df87d25d52400 +Size: 2568218 +Filename: pool/main/d/dotnet-targeting-pack-7.0/dotnet-targeting-pack-7.0.1-x64.deb + +Package: dotnet-apphost-pack-3.1 +Version: 3.1.31-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 214 +Maintainer: .NET Core Team +Description: Microsoft.NETCore.App.Host 3.1.31 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 760bf1bd6cca99b32db239b0bfd2260f7f24179135c7f69107a29dea06c17d64 +Size: 41936 +Filename: pool/main/d/dotnet-apphost-pack-3.1/dotnet-apphost-pack-3.1.31-x64.deb + +Package: azapi2azurerm +Version: 1.1.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 20596 +Maintainer: henglu +Description: A tool to migrate terraform resources from azapi to azurerm +Homepage: https://github.com/Azure/azapi2azurerm +Vendor: none +License: MPL-2.0 +SHA256: 3d76c30d08189db164b13f34a39bfb57e8a79700effa18024b9d1fcd2aa66673 +Size: 6702890 +Filename: pool/main/a/azapi2azurerm/azapi2azurerm-1.1.0-1-amd64.deb + +Package: mdatp +Version: 101.24062.0001 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 693609 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, libpcre3, mde-netfilter +SHA256: 2078c1bf47faa9df1dc63dc96cda637e9b76016b3bf2b775045cc46e35f91cd4 +Size: 155759770 +Filename: pool/main/m/mdatp/mdatp_101.24062.0001_amd64.deb + +Package: dotnet-hostfxr-7.0 +Version: 7.0.12-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 424 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 7.0.12 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 7.0.12), libc6 +SHA256: 0842eef025ce499ec4ab04bb9b21baa16e7e4c92047478a1e2d2edeee7a9ea8f +Size: 143910 +Filename: pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0_7.0.12-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.130-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 314821 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.130 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.30), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.30), dotnet-apphost-pack-6.0 (>= 6.0.30), dotnet-runtime-6.0 (>= 6.0.30), aspnetcore-targeting-pack-6.0 (>= 6.0.30) +SHA256: 6a78f159512e4cb53c39d7f663f701e5ed30124452b144b6d2577fb5e5addb24 +Size: 78831134 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.130-1_amd64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.3-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27360 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.3 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 6724a88dbbc4a9468491cb3b6c56f805a1664f17cfc141adba33b0f72fed8238 +Size: 2126034 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.3-x64.deb + +Package: dotnet-host +Version: 7.0.15-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 246 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.15 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 7e63bbceb8ccf99d6a9832b4f2c3813d85e0f338a88ffc0ae0e1bd015a0b9e8f +Size: 57326 +Filename: pool/main/d/dotnet-host/dotnet-host_7.0.15-1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.405-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 403199 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.405 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.15), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.15), dotnet-runtime-7.0 (>= 7.0.15), dotnet-targeting-pack-7.0 (>= 7.0.15), aspnetcore-runtime-7.0 (>= 7.0.15) +SHA256: e2baf4e92f755aa8818435ab377fb3147711cb84941a0af84eda58d28eb01b87 +Size: 108206438 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.405-1_amd64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.25-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.25 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: eaeda3484af7420e7e7adc80c77010476aaadddf0809cfddfe099f6d89b23a97 +Size: 2800 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.25-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.408-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 337170 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.408 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.16), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.16), dotnet-apphost-pack-6.0 (>= 6.0.16), dotnet-runtime-6.0 (>= 6.0.16), aspnetcore-targeting-pack-6.0 (>= 6.0.16) +SHA256: edc5a25502bd63d67fcca871fee05dd2232b92a2d32318506942ab18c6b28b06 +Size: 86692582 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.408-x64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.19-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11748 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.19) +SHA256: 0659506cd6862cdcce62768918ea580c070c1249a0e2e5b0aba323891e75bac7 +Size: 1314238 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.19-x64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.5441-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: ee828c1bdfa48ecab95cb9625f11dbe6e3333d89c47edced6c6d85faff6fb2e6 +Size: 157321128 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5441-1.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.103-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 350037 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.103 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.3), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.3), dotnet-runtime-7.0 (>= 7.0.3), dotnet-targeting-pack-7.0 (>= 7.0.3), aspnetcore-runtime-7.0 (>= 7.0.3) +SHA256: a510a1e1ece4d989d4afe7c89015ba3771e42277139c0b84d919bf58659178f8 +Size: 90608242 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.103-x64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.21-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11749 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.21) +SHA256: 900d02b0c6113ac51a2410488ef4f46f6fd1b438f18e5c83a0919ab645622d2c +Size: 1315550 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.21-1_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.10-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.10 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.10), libc6 +SHA256: 2f96001b5b7063d29a430d368cb7dba492ebd67dab5406a11c9408db4581c1a6 +Size: 142342 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.10-x64.deb + +Package: msopenjdk-17 +Version: 17.0.3+7-LTS-1 +Architecture: amd64 +Section: java +Priority: extra +Installed-Size: 323643 +Maintainer: Microsoft +Description: OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, fonts-dejavu, java-common, libasound2, libc6, libfreetype6, libfontconfig1, libx11-6, libxext6, libxi6, libxrender1, libxtst6, zlib1g +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: 9ceeed9a945f9b772de6157a86eb1ec2a7e995fb2bd06b796c8687a9e8e1b43b +Size: 191708950 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.3+7-LTS-1_amd64.deb + +Package: moby-runc +Version: 1.1.7+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 13385 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: 45a205b88a161781347061c85fa777bc61a9e38163e3f0d17da1b4e7a2b393d9 +Size: 6079360 +Filename: pool/main/m/moby-runc/moby-runc_1.1.7+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-runtime-8.0 +Version: 8.0.3-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70240 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 8.0.3 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-8.0 (>= 8.0.3), dotnet-runtime-deps-8.0 (>= 8.0.3) +SHA256: c71834bebf1df06665af8c15d79b7aa9e2031bce5aedb35bf92a08407248a09a +Size: 23044374 +Filename: pool/main/d/dotnet-runtime-8.0/dotnet-runtime-8.0_8.0.3-1_amd64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.202-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 419865 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.202 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.3), dotnet-targeting-pack-8.0 (>= 8.0.3), dotnet-apphost-pack-8.0 (>= 8.0.3), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.3), aspnetcore-targeting-pack-8.0 (>= 8.0.3) +SHA256: 6ec2d1442742e1c5b97fdab47092154f41492696bfad8d79da7b26ae95912a24 +Size: 110189334 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.202-1_amd64.deb + +Package: moby-compose +Version: 2.29.0-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61809 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 3e2a40de4ac6772bd6477e30de083ebce8fee83d6c8cbe8d602bcbd0c81f07be +Size: 18565470 +Filename: pool/main/m/moby-compose/moby-compose_2.29.0-ubuntu22.04u1_amd64.deb + +Package: dotnet-apphost-pack-7.0 +Version: 7.0.13-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11281 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 7.0.13 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 5425475e280b41cdc55df0a2dca006cc0c88c1b2d86662a0c487091e375b435c +Size: 3523526 +Filename: pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.13-1_amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.4590-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 3196f8455a0d88e681280d7e2ac3c02b5b697af674af9d739afd200210d4f374 +Size: 124425924 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.4590-1.deb + +Package: powershell +Version: 7.3.8-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 172244 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: c4ddfbad0231ba18ad70571c4c5d69f5a2dd5f7834054737ac6bb4089d83317e +Size: 69188746 +Filename: pool/main/p/powershell/powershell_7.3.8-1.deb_amd64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.31-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11750 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.31) +SHA256: 9564dbe146b44b8dfb174a4452718eeef4ccfd96e35e8281d163525bf288db0c +Size: 1316338 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.31-1_amd64.deb + +Package: azure-ai-vision-dev-image-analysis +Version: 0.15.1~beta.1 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 514 +Maintainer: vision-sdk@microsoft.com +Description: Azure AI Vision Image Analysis Developer Package +Depends: azure-ai-vision-dev-common (= 0.15.1~beta.1), azure-ai-vision-runtime-image-analysis (= 0.15.1~beta.1) +SHA256: debc3c3de7c09b9cc825fcdc157e74b7a1d436c8f294cd3afe766a114836f675 +Size: 80022 +Filename: pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.15.1~beta.1-Linux.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.103-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 312519 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.103 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.3), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.3), dotnet-apphost-pack-6.0 (>= 6.0.3), dotnet-runtime-6.0 (>= 6.0.3), aspnetcore-targeting-pack-6.0 (>= 6.0.3) +SHA256: 50af338321766b2340778c3ade3277056b990a585433087d2689f1e7f19e071b +Size: 77837574 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.103-x64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.12-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19874 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.12) +SHA256: 80cfc243c528fabf035eb00208103895dc9550f8659bc62aec4538a48cec20e4 +Size: 6611238 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.12-x64.deb + +Package: azcmagent +Version: 1.41.02691.1552 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 21a30107050516bc037f2623d6488de98c13977246bd4bdc1fec98afa2254a95 +Size: 67139386 +Filename: pool/main/a/azcmagent/azcmagent_1.41.02691.1552_amd64.deb + +Package: azapi2azurerm +Version: 1.7.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 38084 +Maintainer: henglu +Description: A tool to migrate terraform resources from azapi to azurerm +Homepage: https://github.com/Azure/azapi2azurerm +Vendor: none +License: MPL-2.0 +SHA256: 6389f078d27cd88e4d98a835f40d2c4a59ccab93f65bd4811ba21ba6219f7711 +Size: 10216844 +Filename: pool/main/a/azapi2azurerm/azapi2azurerm-1.7.0-1-amd64.deb + +Package: aadsshlogin-selinux +Version: 1.0.023850001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.3-1), selinux-utils, selinux-policy-default +SHA256: 6a0c3277754585d81d7c1216a23fa034bca6cacef7f162aba0af301ea734fc49 +Size: 2214 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.023850001_amd64.deb + +Package: azapi2azurerm +Version: 1.8.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 70084 +Maintainer: henglu +Description: A tool to migrate terraform resources from azapi to azurerm +Homepage: https://github.com/Azure/azapi2azurerm +Vendor: none +License: MPL-2.0 +SHA256: f25bdb7d081fc4f4adcd6621926f8cddffc9a2248c30b46e6cd568469828eecc +Size: 9666182 +Filename: pool/main/a/azapi2azurerm/azapi2azurerm-1.8.0-1-amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.5858-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: cc9abe755d9b624af76292e194b1b8f8b6243636d334d0535147c1fa53213e80 +Size: 208269730 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5858-1_amd64.deb + +Package: mdatp +Version: 101.24032.0007 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 604136 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, libpcre3, mde-netfilter +SHA256: 3ef5bccfa0e8fcef1bf55793162daf01b1a8fc2051d9d68ff9c65376a4c6ab67 +Size: 153106074 +Filename: pool/main/m/mdatp/mdatp_101.24032.0007_amd64.deb + +Package: dotnet-host +Version: 7.0.19-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 246 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.19 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 07aa8c1f4096cb5652cca36ae08b689f9e4b5c0fa9430d9ece067d9acd9c5770 +Size: 57414 +Filename: pool/main/d/dotnet-host/dotnet-host_7.0.19-1_amd64.deb + +Package: aspnetcore-runtime-7.0 +Version: 7.0.1-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 21336 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-7.0 (>= 7.0.1) +SHA256: 675601d3df8f116972c0786de4512a99f01c1f6cd8058cfb56f83ae7dee70ea8 +Size: 7050794 +Filename: pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0.1-x64.deb + +Package: azcmagent +Version: 1.29.02286.794 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: a2de8f368efc70d6c0d6de01331560fa3308f579559aa1706a2e2acc678981e0 +Size: 54135290 +Filename: pool/main/a/azcmagent/azcmagent_1.29.02286.794_amd64.deb + +Package: moby-cli +Version: 26.1.2-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 38944 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 338149fc92da6d5a648d278bb0e43b80bb43402154ac9fd7deabc8728ae3b91d +Size: 17165766 +Filename: pool/main/m/moby-cli/moby-cli_26.1.2-ubuntu22.04u1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.424-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 337491 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.424 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.32), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.32), dotnet-apphost-pack-6.0 (>= 6.0.32), dotnet-runtime-6.0 (>= 6.0.32), aspnetcore-targeting-pack-6.0 (>= 6.0.32) +SHA256: b83f3063f923bed7969c1769b6ec7e331662dffdb8176556dd9175bac7181dd3 +Size: 86936770 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.424-1_amd64.deb + +Package: aadsshlogin-selinux +Version: 1.0.027980001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.3-1), selinux-utils, selinux-policy-default +SHA256: c59f0d5edfb8998604cd172d9126cd1f9a48f7514deb6b8d73636dca1e4c8b4b +Size: 2220 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.027980001_amd64.deb + +Package: powershell-lts +Version: 7.4.5-1.deb +Architecture: amd64 +Section: shells +Priority: optional +Installed-Size: 176713 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 7e477c2ce41d3b66d2c9bf43a8e288407422f88a9700d3a6bf355f15e433fcb3 +Size: 70997022 +Filename: pool/main/p/powershell-lts/powershell-lts_7.4.5-1.deb_amd64.deb + +Package: dotnet-host +Version: 6.0.13-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.13 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 395725e796a51348e6853245c06d0ec5b81cf038cbc9ebc4ec9f591f12ce7681 +Size: 55798 +Filename: pool/main/d/dotnet-host/dotnet-host-6.0.13-x64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.29-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.29 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 204eae305058a76a5c9d464be9ce7a53ca745bf4e4d8f7ceb2531baab10ef859 +Size: 2800 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0_6.0.29-1_amd64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.28-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11750 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.28) +SHA256: 7d15f93821475f189d535f0a3a24793b61903cae27a889ca4325e9cd62b54734 +Size: 1315330 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0_6.0.28-1_amd64.deb + +Package: aspnetcore-targeting-pack-7.0 +Version: 7.0.14-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 13099 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-7.0 (>= 7.0.14) +SHA256: 3ac3a76fa20909fadc1e88350d7746041c07abf2ad42adffdb2ca7b82a1885b9 +Size: 1510702 +Filename: pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0_7.0.14-1_amd64.deb + +Package: aziot-edge +Version: 1.5.8-1 +Architecture: amd64 +Section: admin +Priority: extra +Installed-Size: 17212 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, psmisc, sed, aziot-identity-service (= 1.5.2-1) +SHA256: 2b2a0f3df9ff28c7ce5803613bdfe32e284115c5af4b563f47f25dd3a8d2163c +Size: 4464462 +Filename: pool/main/a/aziot-edge/aziot-edge_1.5.8-1_amd64.deb + +Package: dotnet-hostfxr-8.0 +Version: 8.0.2-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 296 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 8.0.2 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libc6, libgcc1, libstdc++6, dotnet-host (>= 8.0.2) +SHA256: a51e5351a0d3783f7956f7ed7f40d69be10b6f4f4f27d1bcdb0d32814d7ba709 +Size: 107994 +Filename: pool/main/d/dotnet-hostfxr-8.0/dotnet-hostfxr-8.0_8.0.2-1_amd64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.108-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 388328 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.108 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.8), dotnet-targeting-pack-8.0 (>= 8.0.8), dotnet-apphost-pack-8.0 (>= 8.0.8), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.8), aspnetcore-targeting-pack-8.0 (>= 8.0.8) +SHA256: 6abb71bd210329889342f5e41426246b15f245098e982464a4a889341ea43d29 +Size: 101844662 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.108-1_amd64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.2-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.2 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libssl1.0.0 | libssl1.0.2 | libssl1.1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: a86f12817d94c2ec721af3537e3ef92a4371d81bf96232dbd99543b1f0648988 +Size: 2808 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.2-x64.deb + +Package: powershell +Version: 7.3.6-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 172207 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 9219bc276da261d6fd1bce5dcbf898466e70682ea2f17eabff85841fbe6c9e57 +Size: 69106406 +Filename: pool/main/p/powershell/powershell_7.3.6-1.deb_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.3-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11062 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.3 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 1689060a6209de074a7ba1ca61658d7e7fecdd4ecd8afe241a1085ad1d2fb56e +Size: 3510004 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.3-x64.deb + +Package: moby-buildx +Version: 0.9.0+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 66611 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 6266c7c306a7e8b34fc307a61d9e915d46b35914a2c096da3229bd3fc9b39219 +Size: 24739318 +Filename: pool/main/m/moby-buildx/moby-buildx_0.9.0+azure-ubuntu22.04u1_amd64.deb + +Package: msopenjdk-17 +Version: 17.0.8-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 324571 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 17 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 6d5a05b672e69cf7be78aead401c16068734af4d9002498ab6514bffe40490f7 +Size: 164951794 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8-1_amd64.deb + +Package: msopenjdk-11 +Version: 11.0.20-3 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 318628 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 11 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 03dea1e256a822651b96db15d5ccaa92d74f70e118d670dba0f3249a156cb92e +Size: 167149714 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20-3_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.22-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68461 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.22 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.22), dotnet-runtime-deps-6.0 (>= 6.0.22) +SHA256: 86c8edb1b543a25dfef7dae191243d36ff939800a0a04f6f6d2a597d208711e0 +Size: 22756012 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0_6.0.22-1_amd64.deb + +Package: msodbcsql17 +Version: 17.10.4.1-1 +Architecture: amd64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: 31e2c8d37b011aa51d902bf14f5f7919e69fbe52ed350fa3a2e9b1e6c8fbaa29 +Size: 744572 +Filename: pool/main/m/msodbcsql17/msodbcsql17_17.10.4.1-1_amd64.deb + +Package: moby-containerd +Version: 1.6.36-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 129412 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 67e865b240373ed41c244e48a71c1664a18d711ccfaf51d486f6c232b6ce2337 +Size: 46246038 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.36-ubuntu22.04u1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.125-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 314396 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.125 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.25), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.25), dotnet-apphost-pack-6.0 (>= 6.0.25), dotnet-runtime-6.0 (>= 6.0.25), aspnetcore-targeting-pack-6.0 (>= 6.0.25) +SHA256: bbcd9fcc54b7aaebfc86cd5aff81818ebaf8e55b40f161fabb8e78dfebe70c41 +Size: 78939086 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.125-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.404-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 336633 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.404 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.12), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.12), dotnet-apphost-pack-6.0 (>= 6.0.12), dotnet-runtime-6.0 (>= 6.0.12), aspnetcore-targeting-pack-6.0 (>= 6.0.12) +SHA256: b0db8754304b29c3a8a28820080713733b8cba9cc4549e6496bf7f4945685562 +Size: 86631222 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.404-x64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.12-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11746 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.12) +SHA256: 3f8aeb1f6a3d17bf42d286c5083d43f65f07d08ba0195a88992a02b023320210 +Size: 1314262 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.12-x64.deb + +Package: dotnet-sdk-8.0 +Version: 8.0.101-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 390273 +Maintainer: Microsoft +Description: Microsoft .NET SDK 8.0.101 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-8.0 (>= 8.0.1), dotnet-targeting-pack-8.0 (>= 8.0.1), dotnet-apphost-pack-8.0 (>= 8.0.1), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-8.0 (>= 8.0.1), aspnetcore-targeting-pack-8.0 (>= 8.0.1) +SHA256: 6cc179c7e9a486484b8f483c1fb64c3b6e0cdc04d315e79e26de23e7cf387ef8 +Size: 101999218 +Filename: pool/main/d/dotnet-sdk-8.0/dotnet-sdk-8.0_8.0.101-1_amd64.deb + +Package: azureauth +Version: 0.8.2-7 +Architecture: amd64 +Section: misc +Priority: optional +Installed-Size: 74209 +Maintainer: ES365 Security Experience Team +Description: A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information. +SHA256: 88293e261db82ab4065f3121d5347305dafae0cc18976a9db7dc857b0c9a23c8 +Size: 24108106 +Filename: pool/main/a/azureauth/azureauth_0.8.2-7_amd64.deb + +Package: dotnet-host +Version: 7.0.0-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 246 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.0 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 4e62b76f0f8d8eae41ee1f21090bb9909f0024f2d3dc3fe928a312c2bec9fc69 +Size: 57340 +Filename: pool/main/d/dotnet-host/dotnet-host-7.0.0-x64.deb + +Package: dotnet-runtime-deps-8.0 +Version: 8.0.1-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 8.0.1 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52 +SHA256: 5124a35a71e7dc84721a33e7c7b1f7afd65f8568f5a7a121eb25f7b1ceb74499 +Size: 2886 +Filename: pool/main/d/dotnet-runtime-deps-8.0/dotnet-runtime-deps-8.0_8.0.1-1_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.9-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68406 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.9 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.9), dotnet-runtime-deps-6.0 (>= 6.0.9) +SHA256: 43fd3fccf39777add0f20b110264ad674c51db7e71cba095e694e45fd286b195 +Size: 22757840 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.9-x64.deb + +Package: moby-buildx +Version: 0.12.0-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 75295 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: e5fcbefd3d42475dc65d9438c50f06d53cb36522d24819f4137a7df8cef96f56 +Size: 34144538 +Filename: pool/main/m/moby-buildx/moby-buildx_0.12.0-ubuntu22.04u1_amd64.deb + +Package: dotnet-runtime-7.0 +Version: 7.0.10-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70843 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 7.0.10 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-deps-7.0 (>= 7.0.10), dotnet-hostfxr-7.0 (>= 7.0.10) +SHA256: 61ff73e62903f96a7f4e85005bbae9c324958747a1369684754b9da69dfce308 +Size: 23207202 +Filename: pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.10-1_amd64.deb + +Package: dotnet-apphost-pack-7.0 +Version: 7.0.18-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11285 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 7.0.18 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 713909ab883f507e55df2522c1a64b0b1920fb4b6646d5fe2c65ebaadfced2db +Size: 3527214 +Filename: pool/main/d/dotnet-apphost-pack-7.0/dotnet-apphost-pack-7.0_7.0.18-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.124-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 314393 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.124 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.24), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.24), dotnet-apphost-pack-6.0 (>= 6.0.24), dotnet-runtime-6.0 (>= 6.0.24), aspnetcore-targeting-pack-6.0 (>= 6.0.24) +SHA256: b12b9b63f859b0eb365fc0aaa9d7995add2a24ddc02e0df5602372b51e0a25d3 +Size: 78926170 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.124-1_amd64.deb + +Package: dotnet-host +Version: 3.1.32-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 145 +Maintainer: .NET Core Team +Description: Microsoft .NET Core Host - 3.1.32 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://dot.net/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 3547d638fbd423815cdfc08f98ef9d4a1c9e51ad854e379b68af8777218c4524 +Size: 32436 +Filename: pool/main/d/dotnet-host/dotnet-host-3.1.32-x64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.5-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.5 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.5), libc6 +SHA256: 946b46de39d9157ed341f4df85709543211f8baacfc94604a8a24e960250f87a +Size: 142074 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.5-x64.deb + +Package: dotnet-runtime-deps-6.0 +Version: 6.0.6-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 26 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 6.0.6 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: 43d23398197e62254878b0dbebfb4192d6edcb529c898735fd127ee8bc2aba13 +Size: 2806 +Filename: pool/main/d/dotnet-runtime-deps-6.0/dotnet-runtime-deps-6.0.6-x64.deb + +Package: moby-compose +Version: 2.6.0+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 25932 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 433787c2508c1cb6fa352755ebe5b38121d00f1ff3cc774cf3f6224af3e2d2bb +Size: 7202098 +Filename: pool/main/m/moby-compose/moby-compose_2.6.0+azure-ubuntu22.04u1_amd64.deb + +Package: powershell-lts +Version: 7.2.7-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 187019 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: dc85567c9a52e16ebed727f41389de0b8e3275437e4b7a3905bc894f359a24f9 +Size: 69460950 +Filename: pool/main/p/powershell-lts/powershell-lts_7.2.7-1.deb_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.100-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 343757 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.100 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.0), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.0), dotnet-runtime-7.0 (>= 7.0.0), dotnet-targeting-pack-7.0 (>= 7.0.0), aspnetcore-runtime-7.0 (>= 7.0.0) +SHA256: 766366dadb45bd2c882f141f0f2a9b5ceaee12b86073dc8fb4e771667ee672a0 +Size: 88442416 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.100-x64.deb + +Package: dotnet-hostfxr-3.1 +Version: 3.1.32-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 408 +Maintainer: .NET Core Team +Description: Microsoft .NET Core Host FX Resolver - 3.1.32 3.1.32 + .NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://dot.net/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 3.1.32), libc6 +SHA256: fd90563cc5240ec457877dde687e8fa8a9ad27a00c196955578a155d64f06796 +Size: 120802 +Filename: pool/main/d/dotnet-hostfxr-3.1/dotnet-hostfxr-3.1.32-x64.deb + +Package: moby-compose +Version: 2.10.0+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 25680 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: af498852d132588eca69941d8783b121dd96525f7d3fa1c6e2578c6bd7b25a91 +Size: 7128218 +Filename: pool/main/m/moby-compose/moby-compose_2.10.0+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-hostfxr-8.0 +Version: 8.0.0-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 296 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 8.0.0 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libc6, libgcc1, libstdc++6, dotnet-host (>= 8.0.0) +SHA256: c6f1a690e37353f5ba593fe0a8367788a8683a1c2c3469b837123182b1b15f4a +Size: 108018 +Filename: pool/main/d/dotnet-hostfxr-8.0/dotnet-hostfxr-8.0_8.0.0-1_amd64.deb + +Package: moby-cli +Version: 23.0.7+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 35181 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 9236e13dd8c6b3aee2ea3dc5ef96b0a4f2594dd14c0084dcbdbe85ad98b789b6 +Size: 13720298 +Filename: pool/main/m/moby-cli/moby-cli_23.0.7+azure-ubuntu22.04u1_amd64.deb + +Package: msopenjdk-11 +Version: 11.0.21-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 317689 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 11 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 7c153e16c53b1b45b9ad3c94c4dc30e3574cca0eebdb1b69df5ce515db2d4f8a +Size: 166637290 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.21-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.302-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 330653 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.302 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.7), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.7), dotnet-apphost-pack-6.0 (>= 6.0.7), dotnet-runtime-6.0 (>= 6.0.7), aspnetcore-targeting-pack-6.0 (>= 6.0.7) +SHA256: 592c559cb5fc9dc5440cea502e388cc7b0aaa1beaccb03f9360e3378e0a851df +Size: 84868880 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.302-x64.deb + +Package: msodbcsql17 +Version: 17.10.1.1-1 +Architecture: amd64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: f5562b6bc8f682f0f341d13700ae0d448276847c5de097fbb9d4c74943f1076f +Size: 743398 +Filename: pool/main/m/msodbcsql17/msodbcsql17_17.10.1.1-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.420-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 336987 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.420 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.28), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.28), dotnet-apphost-pack-6.0 (>= 6.0.28), dotnet-runtime-6.0 (>= 6.0.28), aspnetcore-targeting-pack-6.0 (>= 6.0.28) +SHA256: 4ef60e269eaa4a8624f2c73c23a27464b6821c623de346b3b462806a9fdd4c63 +Size: 86850926 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.420-1_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.28-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 456 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.28 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.28), libc6 +SHA256: 7f62ea6237225f755feb92582a18aede12c408242ca36acd2fb7151ac46b976f +Size: 143622 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0_6.0.28-1_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.108-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 350058 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.108 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.8), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.8), dotnet-runtime-7.0 (>= 7.0.8), dotnet-targeting-pack-7.0 (>= 7.0.8), aspnetcore-runtime-7.0 (>= 7.0.8) +SHA256: df8a89bade0d908f4d57ef6fffb9510e0efeda2350a8a4dc7ce5f57211ac79ce +Size: 90674394 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0.108-x64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.10-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68406 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.10 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.10), dotnet-runtime-deps-6.0 (>= 6.0.10) +SHA256: 25d420ba348172b128109c37e20790dda6d089a335c200635667f52362d8ccb9 +Size: 23009270 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.10-x64.deb + +Package: moby-compose +Version: 2.10.1+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 25680 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 92538ffbae67ad143b97e4804999408a75f36111dccdd82831c0b39b31796964 +Size: 7127912 +Filename: pool/main/m/moby-compose/moby-compose_2.10.1+azure-ubuntu22.04u1_amd64.deb + +Package: moby-containerd +Version: 1.6.33-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 129396 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: e00892ae3d7840d0fc36cddc7ddea084f639a09926a703986f45b9c16c6b3fe7 +Size: 46238840 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.33-ubuntu22.04u1_amd64.deb + +Package: dotnet-runtime-7.0 +Version: 7.0.4-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70804 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 7.0.4 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-deps-7.0 (>= 7.0.4), dotnet-hostfxr-7.0 (>= 7.0.4) +SHA256: b351edd6cc0a5ff6196cb3dcbc093b80cf9ade1d1c003e8ce5441debb7650fd0 +Size: 23198918 +Filename: pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.4-x64.deb + +Package: powershell +Version: 7.2.16-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 168889 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 58e86f8f379bfacb417e617350b16696b134f50c4572ce7a56ab308cb9d243fe +Size: 68377064 +Filename: pool/main/p/powershell/powershell_7.2.16-1.deb_amd64.deb + +Package: moby-compose +Version: 2.20.3+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 59115 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 3ea3a005e55768f2b1c581d00847924cf8e8ac882b805cd8510b696c8c909dad +Size: 13236444 +Filename: pool/main/m/moby-compose/moby-compose_2.20.3+azure-ubuntu22.04u1_amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.5455-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: a9cddfdef9b4d91c9f4a345860918216b7b78d53520e05607f127cc33ffc37b5 +Size: 157999168 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5455-1.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.15-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19873 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.15) +SHA256: bb6a784b886153a7655c94f81466776b7f2c121d67566bbb6d957a92a8f995cd +Size: 6611850 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.15-x64.deb + +Package: microsoft-identity-broker +Source: microsoft-identity-broker +Version: 1.6.1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 89518 +Maintainer: Microsoft Identity +Description: microsoft-identity-broker + Microsoft Authentication Broker for Linux. +Conflicts: msft-identity-broker +Depends: default-jre, systemd, dbus-session-bus, dbus-system-bus, gnome-keyring +Recommends: microsoft-identity-diagnostics +Provides: msft-identity-broker +Replaces: msft-identity-broker +SHA256: 0d85c6a8c05418ac38c6c5a90fdef7b7965c7014e1d0b9957cb317d53e43366b +Size: 82562298 +Filename: pool/main/m/microsoft-identity-broker/microsoft-identity-broker_1.6.1_amd64.deb + +Package: moby-buildx +Version: 0.9.1+azure-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 65424 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 3afa636e6d6465ed85444a0f5c5859f922cc961e2cf858809f458eb4329ee63c +Size: 25630782 +Filename: pool/main/m/moby-buildx/moby-buildx_0.9.1+azure-ubuntu22.04u2_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.13-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68422 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.13 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.13), dotnet-runtime-deps-6.0 (>= 6.0.13) +SHA256: 0e1debddea9b7ff4939a88af07867fcefc87b2f468f98f71fadd4aa71b176a80 +Size: 22613226 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.13-x64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.19-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11071 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.19 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 825da08fafaaf997b1fe218f01921fdac410e70b740fb8b025d2da238f0f51e6 +Size: 3522960 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0.19-x64.deb + +Package: moby-containerd +Version: 1.6.34-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 129404 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 8694487259d97f9688d5bb48a8dcf8b2e90e70116c290702ec93c834b33f7a7d +Size: 46238918 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.34-ubuntu22.04u1_amd64.deb + +Package: procdump +Version: 3.3.0 +Architecture: amd64 +Maintainer: Sysinternals +Description: Sysinternals process dump utility + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +Depends: zlib1g, gdb (>= 7.6.1) +License: MIT +SHA256: 4d08b3f1634fc45f28cf856316b7b05477aafeef7c4aff0bb7f3c67c6cc693ed +Size: 1362614 +Filename: pool/main/p/procdump/procdump_3.3.0_amd64.deb + +Package: dotnet-hostfxr-6.0 +Version: 6.0.9-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 452 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 6.0.9 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 6.0.9), libc6 +SHA256: 1d7e48c097b8a44fbaf341d6eeb8d176c809cd8950c5f1aecc7ce0bdfc1540a9 +Size: 142246 +Filename: pool/main/d/dotnet-hostfxr-6.0/dotnet-hostfxr-6.0.9-x64.deb + +Package: moby-engine +Version: 20.10.22+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 86259 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: d4a1e8183cfb08f4f3dbe3646e6904c6b1d71ac615edef0450123b4014eaacdd +Size: 22362670 +Filename: pool/main/m/moby-engine/moby-engine_20.10.22+azure-ubuntu22.04u1_amd64.deb + +Package: moby-containerd +Version: 1.6.30-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 128243 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: e4c683b2f755c3f482c82e276b66c1af4071b8ba0bd76abb5ba9eda9848c4dbc +Size: 45843242 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.30-ubuntu22.04u1_amd64.deb + +Package: dotnet-runtime-6.0 +Version: 6.0.6-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 68401 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 6.0.6 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-6.0 (>= 6.0.6), dotnet-runtime-deps-6.0 (>= 6.0.6) +SHA256: 568ac6b27881ced8198b39bdf885bc864d07fe5d629356ca135cee3d4570f983 +Size: 22760148 +Filename: pool/main/d/dotnet-runtime-6.0/dotnet-runtime-6.0.6-x64.deb + +Package: aspnetcore-targeting-pack-7.0 +Version: 7.0.9-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 13094 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-7.0 (>= 7.0.9) +SHA256: 5f6bc5506a83dd7f0835bc4f9e1213094981f3fb60e639e321c78a73e25a1ef9 +Size: 1499018 +Filename: pool/main/a/aspnetcore-targeting-pack-7.0/aspnetcore-targeting-pack-7.0.9-x64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.311-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 331465 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.311 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.16), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.16), dotnet-apphost-pack-6.0 (>= 6.0.16), dotnet-runtime-6.0 (>= 6.0.16), aspnetcore-targeting-pack-6.0 (>= 6.0.16) +SHA256: c1a665a32c50c5304923b06d3186e921829b342b6be153a772b420d9e628b9bd +Size: 85165330 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.311-x64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.5198-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 0a904362091791c5465b9ee18a2ff9667f052d59e5d4bd24d343f8d11de4839b +Size: 155422440 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5198-1.deb + +Package: dotnet-host +Version: 6.0.5-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.5 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 2afa31bcf3bac0b866d3f215b71c6d56e885a9996b2c2729621222466986384d +Size: 55654 +Filename: pool/main/d/dotnet-host/dotnet-host-6.0.5-x64.deb + +Package: azure-ai-vision-runtime-image-analysis +Version: 0.10.0~beta.1 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 682 +Maintainer: vision-sdk@microsoft.com +Description: Azure AI Vision Image Analysis Runtime Package +Depends: azure-ai-vision-runtime-core (= 0.10.0~beta.1), azure-ai-vision-runtime-core-media (= 0.10.0~beta.1) +SHA256: c4271a9f38e1851357258aa8c8c892be7d2b3bd4c7fe2ceae3b134ac16c1257f +Size: 149320 +Filename: pool/main/a/azure-ai-vision-runtime-image-analysis/azure-ai-vision-runtime-image-analysis-0.10.0~beta.1-Linux.deb + +Package: blobfuse2 +Version: 2.0.2 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 27889 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: 2c59f5daab9808c18034460a5fbf417896af6ca6e6f14c293afd9dad408233c3 +Size: 13168278 +Filename: pool/main/b/blobfuse2/blobfuse2-2.0.2-Ubuntu-22.04-x86-64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.28-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.28 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 45678f8b99c85c90f620c8bedaa058461ad297cdc5e32e585aa472905d8cd552 +Size: 2135156 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.28-1_amd64.deb + +Package: msopenjdk-21 +Version: 21.0.1-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 352673 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 21 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 5fb5615e574cabaf0dd699797e738034523810d46b15a811ddec67b029d40744 +Size: 176352102 +Filename: pool/main/m/msopenjdk-21/msopenjdk-21_21.0.1-1_amd64.deb + +Package: mdatp +Version: 101.23082.0009 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 411025 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, libpcre3, mde-netfilter +SHA256: 6eb534b0e23b061644bf6b11a6eaeacc59e7f44ca5afba33a505f3950ebf456f +Size: 150354446 +Filename: pool/main/m/mdatp/mdatp_101.23082.0009_amd64.deb + +Package: azcmagent +Version: 1.23.02105.466 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 17f9602fa7199ca006776c2c0688bfba291242292db0b0528f249af5933b647a +Size: 53831532 +Filename: pool/main/a/azcmagent/azcmagent_1.23.02105.466_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.110-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 350085 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.110 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.10), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.10), dotnet-runtime-7.0 (>= 7.0.10), dotnet-targeting-pack-7.0 (>= 7.0.10), aspnetcore-runtime-7.0 (>= 7.0.10) +SHA256: 37f9bf12b98e288c114bc919c706a0ff8c72cbb4b8ced055322b53759d662f5b +Size: 90674390 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.110-1_amd64.deb + +Package: moby-containerd +Version: 1.6.28-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 129481 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 635705b36a4e4a83ab255005e8eb15915da69323ede4eb1579b8d11200f22d96 +Size: 45949578 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.28-ubuntu22.04u1_amd64.deb + +Package: omi +Source: omi +Version: 1.7.3.0 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 4924 +Maintainer: Microsoft Corporation +Description: Open Management Infrastructure + omi server +Depends: libc6 (>= 2.3.6), libpam-runtime (>= 0.79-3) +Provides: omi +SHA256: a1cae618ad42b1f69301a1ecd0ee98d209e7829a2a55b7bb1746c3af83166e87 +Size: 1915752 +Filename: pool/main/o/omi/omi-1.7.3-0.ssl_300.ulinux.s.x64.deb + +Package: aspnetcore-targeting-pack-6.0 +Version: 6.0.7-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 11724 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-6.0 (>= 6.0.7) +SHA256: 05b8dbac0076ac80c1abae45fe66cd04a9ff9e621b22efdfe45fd5301826708a +Size: 1306680 +Filename: pool/main/a/aspnetcore-targeting-pack-6.0/aspnetcore-targeting-pack-6.0.7-x64.deb + +Package: dotnet-runtime-deps-7.0 +Version: 7.0.12-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 9 +Maintainer: .NET Team +Description: dotnet-runtime-deps-debian 7.0.12 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libicu | libicu72 | libicu71 | libicu70 | libicu69 | libicu68 | libicu67 | libicu66 | libicu65 | libicu63 | libicu60 | libicu57 | libicu55 | libicu52, libc6, libssl1.0.0 | libssl1.0.2 | libssl1.1 | libssl3, zlib1g, libstdc++6, libgssapi-krb5-2 +SHA256: b65bcfd2a273e8e3b55bbf6f0752097b8dece00d9706ee9711d6a1d4af82c404 +Size: 2890 +Filename: pool/main/d/dotnet-runtime-deps-7.0/dotnet-runtime-deps-7.0_7.0.12-1_amd64.deb + +Package: dotnet-host +Version: 7.0.11-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 246 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.11 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 6548914c6872fa051b95a87c8f624313a8e51c72729eb3f27348b20140c3f02a +Size: 57370 +Filename: pool/main/d/dotnet-host/dotnet-host_7.0.11-1_amd64.deb + +Package: powershell +Version: 7.4.2-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 177241 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: b83e34cf4bfe9d82960fbc1ffb5fa768916fe19a9f7d3a8e8f1665041b4a3295 +Size: 71065372 +Filename: pool/main/p/powershell/powershell_7.4.2-1.deb_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.425-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 337499 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.425 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.33), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.33), dotnet-apphost-pack-6.0 (>= 6.0.33), dotnet-runtime-6.0 (>= 6.0.33), aspnetcore-targeting-pack-6.0 (>= 6.0.33) +SHA256: 6a615666a445d928042b790d262e7aedd9689cb594cff7451af5556695b48080 +Size: 86936298 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0_6.0.425-1_amd64.deb + +Package: moby-compose +Version: 2.10.2+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 25680 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: f1dd20a662b67a72a64bd60e55b61c03266eabe3e59edfaf11ce9e2d0f601c41 +Size: 7127846 +Filename: pool/main/m/moby-compose/moby-compose_2.10.2+azure-ubuntu22.04u1_amd64.deb + +Package: azure-ai-vision-dev-image-analysis +Version: 0.10.0~beta.1 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 512 +Maintainer: vision-sdk@microsoft.com +Description: Azure AI Vision Image Analysis Developer Package +Depends: azure-ai-vision-dev-core (= 0.10.0~beta.1), azure-ai-vision-runtime-image-analysis (= 0.10.0~beta.1) +SHA256: e1ea2d650eddc24d02243d7b2a656e99f14dc67730242cbc05de820419d29ad4 +Size: 79326 +Filename: pool/main/a/azure-ai-vision-dev-image-analysis/azure-ai-vision-dev-image-analysis-0.10.0~beta.1-Linux.deb + +Package: moby-buildx +Version: 0.10.4+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 69080 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: f69e2577d7ee483d5901ad3cb4327d9c587d1b5bd4b86aa8545bb27f028dfd80 +Size: 27166710 +Filename: pool/main/m/moby-buildx/moby-buildx_0.10.4+azure-ubuntu22.04u1_amd64.deb + +Package: intune-portal +Version: 1.2404.23-jammy +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 27711 +Maintainer: Microsoft +Description: Microsoft Intune + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +Depends: libc6 (>= 2.34), libjavascriptcoregtk-4.0-18, libdbus-1-3 (>= 1.9.14), libx11-6, libpam0g (>= 0.99.7.1), libsqlite3-0 (>= 3.7.14), libssl3 (>= 3.0.0~~alpha1), libgtk-3-0 (>= 3.21.4), msalsdk-dbusclient (>= 1.0), libglib2.0-0 (>= 2.35.8), libgtk-3-0 (>= 3.9.10), libpam-pwquality (>= 1.4.0-2), libglib2.0-0 (>= 2.12.0), libpango-1.0-0 (>= 1.14.0), libwebkit2gtk-4.0-37 (>= 2.39.90), libsoup2.4-1 (>= 2.4.0), libuuid1 (>= 2.16), libsystemd0, libsecret-1-0 (>= 0.7), libcurl4 (>= 7.16.2), zlib1g (>= 1:1.2.0), libstdc++6 (>= 12), libatk1.0-0 (>= 1.12.4), gnome-keyring (>= 3.36) +Recommends: microsoft-edge-stable (>= 102) +SHA256: cc01f7e6217edd8a43346a375219b32f8a51257944846d4f693ef5aa746da408 +Size: 6666262 +Filename: pool/main/i/intune-portal/intune-portal_1.2404.23-jammy_amd64.deb + +Package: microsoft-azurevpnclient +Version: 3.0.0 +Architecture: amd64 +Section: net +Priority: optional +Installed-Size: 36429 +Maintainer: Microsoft Azure VPN +Description: Azure VPN Client + The Azure VPN Client lets you connect to Azure securely from anywhere in the world. It supports Microsoft Entra ID and certificate-based authentication. +Homepage: https://apps.microsoft.com/store/detail/azure-vpn-client +Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.34), libcap2 (>= 1:2.10), libcurl4 (>= 7.16.2), libepoxy0 (>= 1.0), libfontconfig1 (>= 2.12.6), libgcc-s1 (>= 3.0), libglib2.0-0 (>= 2.39.90), libgtk-3-0 (>= 3.21.4), libpango-1.0-0 (>= 1.29.4), libpangocairo-1.0-0 (>= 1.14.0), libsecret-1-0 (>= 0.7), libsqlite3-0 (>= 3.7.14), libssl3 (>= 3.0.0~~alpha1), libstdc++6 (>= 12), libsystemd0 (>= 239), zlib1g (>= 1:1.2.0), zenity | kdialog +Pre-Depends: dpkg (>= 1.14.0) +SHA256: 9e5d360433d1d374d9a1051bb29a65103e81ca74ebeaa35155d1f0e9fc94577b +Size: 12590862 +Filename: pool/main/m/microsoft-azurevpnclient/microsoft-azurevpnclient_3.0.0_amd64.deb + +Package: dotnet-runtime-7.0 +Version: 7.0.19-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70852 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 7.0.19 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-deps-7.0 (>= 7.0.19), dotnet-hostfxr-7.0 (>= 7.0.19) +SHA256: 9fb03475404fb90fc0cc63c3d326d18444cdf80a3d06c0d48f5df7875a359cb7 +Size: 23212810 +Filename: pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0_7.0.19-1_amd64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.33-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27376 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.33 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 6fb67aab7048a95febf72819c276539336f5273ea20da05a26f3aa23276b9850 +Size: 2121562 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0_6.0.33-1_amd64.deb + +Package: dotnet-host +Version: 6.0.29-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 259 +Maintainer: .NET Team +Description: Microsoft .NET Host - 6.0.29 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 88bb553d55f34faebb10e861203f247c181becf8c83ed626acf9b3dfccc17cc5 +Size: 55770 +Filename: pool/main/d/dotnet-host/dotnet-host_6.0.29-1_amd64.deb + +Package: moby-cli +Version: 24.0.9-ubuntu22.04u2 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 35248 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: a83f561a9f3fa3c923d3090976709651f5a5e73cfc8c54d86441f68aee2072e9 +Size: 15752820 +Filename: pool/main/m/moby-cli/moby-cli_24.0.9-ubuntu22.04u2_amd64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.311-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 367149 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.311 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.14), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.14), dotnet-runtime-7.0 (>= 7.0.14), dotnet-targeting-pack-7.0 (>= 7.0.14), aspnetcore-runtime-7.0 (>= 7.0.14) +SHA256: a31b2ac8356564574c888242b07b274a646504e108738b98f17c284d1b28bb43 +Size: 96596610 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.311-1_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.114-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 313863 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.114 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.14), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.14), dotnet-apphost-pack-6.0 (>= 6.0.14), dotnet-runtime-6.0 (>= 6.0.14), aspnetcore-targeting-pack-6.0 (>= 6.0.14) +SHA256: 5e73956aa56a60e1e89549e0d33fdfa6614b64234632baabb4a5c89076b61b70 +Size: 78676286 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.114-x64.deb + +Package: azure-ai-vision-runtime-common-media +Version: 0.15.1~beta.1 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 16147 +Maintainer: vision-sdk@microsoft.com +Description: Azure AI Vision Common Components Media Runtime Package +Depends: azure-ai-vision-runtime-common (= 0.15.1~beta.1) +SHA256: 4927ad8980bacaa284aae6a65dfae195ebd74c3546a9dc3b5f283adbff09339e +Size: 4976590 +Filename: pool/main/a/azure-ai-vision-runtime-common-media/azure-ai-vision-runtime-common-media-0.15.1~beta.1-Linux.deb + +Package: aziot-edge +Version: 1.4.41-1 +Architecture: amd64 +Section: admin +Priority: extra +Installed-Size: 18951 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, psmisc, sed, aziot-identity-service (= 1.4.9-1) +SHA256: 71faf22b8745ebf81f2ae376918b12666f1ac7a23b5b29399d4b88f1a5301def +Size: 5009108 +Filename: pool/main/a/aziot-edge/aziot-edge_1.4.41-1_amd64.deb + +Package: moby-cli +Version: 20.10.24+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 50200 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: e217f8ddbb03a46c7305a14c60f6418ff0650215431ee53a459be5b92bb11500 +Size: 10842104 +Filename: pool/main/m/moby-cli/moby-cli_20.10.24+azure-ubuntu22.04u1_amd64.deb + +Package: libmsquic +Version: 2.1.1 +Architecture: amd64 +Section: default +Priority: extra +Installed-Size: 22575 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 66b934f9eb658a8f430e675ada16d16edd6789f57347a56f7ac9ea72564ca8ce +Size: 6406602 +Filename: pool/main/libm/libmsquic/libmsquic_2.1.1_amd64.deb + +Package: dotnet-host +Version: 7.0.0~rc.1.22426.10-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 239 +Maintainer: .NET Team +Description: Microsoft .NET Host - 7.0.0 RC 1 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Conflicts: dotnet, dotnet-nightly +Depends: libgcc1, libstdc++6, libc6 +SHA256: 2b22de3e4870e7672cd986fc4b1d35c58e5580e613a3e056cc778eb892eca3d9 +Size: 56600 +Filename: pool/main/d/dotnet-host/dotnet-host-7.0.0-rc.1.22426.10-x64.deb + +Package: procdump +Version: 2.0-16795 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 10696 +Maintainer: OSS Tooling Dev Team +Description: Sysinternals process dump utility + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +Homepage: https://github.com/Microsoft/ProcDump-for-Linux +Depends: gdb (>= 7.6.1),libc6 +SHA256: f69c54d78708b84c27e90600fbc50a11392b384a92acb18e522d236d38113a61 +Size: 1645762 +Filename: pool/main/p/procdump/procdump_2.0-16795_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.116-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 311307 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.116 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.16), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.16), dotnet-apphost-pack-6.0 (>= 6.0.16), dotnet-runtime-6.0 (>= 6.0.16), aspnetcore-targeting-pack-6.0 (>= 6.0.16) +SHA256: 70b59d15f436ace27bb104305b9986d4e9bfea432730e2c5d3d287cac1600f9a +Size: 78307442 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.116-x64.deb + +Package: aspnetcore-runtime-7.0 +Version: 7.0.15-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 21370 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-7.0 (>= 7.0.15) +SHA256: 1f854806186014234dcf14045add835be5ac76248cd6844c935cf7c8e002d3de +Size: 7064222 +Filename: pool/main/a/aspnetcore-runtime-7.0/aspnetcore-runtime-7.0_7.0.15-1_amd64.deb + +Package: moby-compose +Version: 2.16.0+azure-ubuntu22.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 46220 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: da2c929569ca6e51dc1c91ae4a0773165d26929a8857b2b495bdd3dfd47783c9 +Size: 11266320 +Filename: pool/main/m/moby-compose/moby-compose_2.16.0+azure-ubuntu22.04u1_amd64.deb + +Package: dotnet-targeting-pack-6.0 +Version: 6.0.13-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 27378 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 6.0.13 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 75d79e64f4f3525555196c3de3b6a6d6c255a317a51538cfe30567f92caf51a9 +Size: 2130996 +Filename: pool/main/d/dotnet-targeting-pack-6.0/dotnet-targeting-pack-6.0.13-x64.deb + +Package: mdatp +Version: 101.71.18 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 212129 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: curl (>= 7.5), libseccomp2, libuuid1, libatomic1, libc6 (>= 2.23), uuid-runtime, dmidecode, auditd, libselinux1, libfuse2, mde-netfilter +SHA256: a01be3805ced294071b50ec817aa52dd7e3ed03907ca1a14690f0bcad2e1ce46 +Size: 62151012 +Filename: pool/main/m/mdatp/mdatp_101.71.18.amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.410-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 337370 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.410 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.18), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.18), dotnet-apphost-pack-6.0 (>= 6.0.18), dotnet-runtime-6.0 (>= 6.0.18), aspnetcore-targeting-pack-6.0 (>= 6.0.18) +SHA256: d714b88755d977894f1485c36b44a1c5f044ecfb329e6c04da9435faea474465 +Size: 86806086 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.410-x64.deb + +Package: dotnet-sdk-7.0 +Version: 7.0.317-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 365584 +Maintainer: Microsoft +Description: Microsoft .NET SDK 7.0.317 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: aspnetcore-targeting-pack-7.0 (>= 7.0.20), netstandard-targeting-pack-2.1 (>= 2.1.0), dotnet-apphost-pack-7.0 (>= 7.0.20), dotnet-runtime-7.0 (>= 7.0.20), dotnet-targeting-pack-7.0 (>= 7.0.20), aspnetcore-runtime-7.0 (>= 7.0.20) +SHA256: fe0db29eeaea63cbc188ec42ca5d51afe0d542e2d4174d88be8a3dde7009f447 +Size: 96372670 +Filename: pool/main/d/dotnet-sdk-7.0/dotnet-sdk-7.0_7.0.317-1_amd64.deb + +Package: dotnet-targeting-pack-8.0 +Version: 8.0.8-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 36083 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Ref 8.0.8 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 93e8152f8cb4ad6a64fa9f1965d6185956e19e90d9e19458e880e37d34efdd03 +Size: 2799454 +Filename: pool/main/d/dotnet-targeting-pack-8.0/dotnet-targeting-pack-8.0_8.0.8-1_amd64.deb + +Package: intune-portal +Version: 1.2302.11 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 18819 +Maintainer: Microsoft +Description: Microsoft Intune + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +Depends: libsecret-1-0 (>= 0.19.1), libx11-6, zlib1g (>= 1:1.2.0), libgtk-3-0 (>= 3.21.4), libpango-1.0-0 (>= 1.14.0), libpam-pwquality (>= 1.4.0-2), libgtk-3-0 (>= 3.9.10), libstdc++6 (>= 12), libatk1.0-0 (>= 1.12.4), libsoup2.4-1 (>= 2.4.0), libc6 (>= 2.34), libpam0g (>= 0.99.7.1), libglib2.0-0 (>= 2.12.0), libsqlite3-0 (>= 3.7.14), libssl3 (>= 3.0.0~~alpha1), libglib2.0-0 (>= 2.35.8), gnome-keyring (>= 3.36), libcurl4 (>= 7.16.2), libjavascriptcoregtk-4.0-18 (>= 2.38.5), libuuid1 (>= 2.16), msalsdk-dbusclient (>= 1.0), libwebkit2gtk-4.0-37 (>= 2.5.3), libsystemd0 +Recommends: microsoft-edge-stable (>= 102) +SHA256: f2a0ea5e54e14c6cc0ed943c145279544ed625548020520074d2b645ef1b7d30 +Size: 3372884 +Filename: pool/main/i/intune-portal/intune-portal_1.2302.11_amd64.deb + +Package: aspnetcore-runtime-8.0 +Version: 8.0.5-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 23509 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-8.0 (>= 8.0.5) +SHA256: 9aa2050f51944d47121f5700417184d2802ab46c6d06f6518bd0685585016d0e +Size: 7672582 +Filename: pool/main/a/aspnetcore-runtime-8.0/aspnetcore-runtime-8.0_8.0.5-1_amd64.deb + +Package: aziot-edge +Version: 1.5.10-1 +Architecture: amd64 +Section: admin +Priority: extra +Installed-Size: 17212 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, psmisc, sed, aziot-identity-service (= 1.5.3-1) +SHA256: 217e047b9e23ec3943f15170e778fa00fb54b2def319d7e0da40a9f0545d9636 +Size: 4464486 +Filename: pool/main/a/aziot-edge/aziot-edge_1.5.10-1_amd64.deb + +Package: dotnet-runtime-8.0 +Version: 8.0.8-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70261 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 8.0.8 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-hostfxr-8.0 (>= 8.0.8), dotnet-runtime-deps-8.0 (>= 8.0.8) +SHA256: d55bba71ab018322a5b5d096ca61676175730854fd3c6ca70ed915af005a80a6 +Size: 23049666 +Filename: pool/main/d/dotnet-runtime-8.0/dotnet-runtime-8.0_8.0.8-1_amd64.deb + +Package: powershell-lts +Version: 7.2.8-1.deb +Architecture: amd64 +Section: shells +Priority: extra +Installed-Size: 186934 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 012eb465df8a50284c49d0e37940e4bb84a88600094c7b706e5b15ef724c1333 +Size: 69447560 +Filename: pool/main/p/powershell-lts/powershell-lts_7.2.8-1.deb_amd64.deb + +Package: dotnet-sdk-6.0 +Version: 6.0.203-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 319917 +Maintainer: Microsoft +Description: Microsoft .NET SDK 6.0.203 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-targeting-pack-6.0 (>= 6.0.5), netstandard-targeting-pack-2.1 (>= 2.1.0), aspnetcore-runtime-6.0 (>= 6.0.5), dotnet-apphost-pack-6.0 (>= 6.0.5), dotnet-runtime-6.0 (>= 6.0.5), aspnetcore-targeting-pack-6.0 (>= 6.0.5) +SHA256: debc94f20bcb9123d2c3bd8c369049d8af2858791da3a114c953786da442c1a2 +Size: 80517208 +Filename: pool/main/d/dotnet-sdk-6.0/dotnet-sdk-6.0.203-x64.deb + +Package: azure-functions-core-tools +Version: 3.0.4669-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v3 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools, azure-functions-core-tools-2 +Replaces: azure-functions-core-tools, azure-functions-core-tools-2 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 8fa09b323ce9042ad1e8cda02546047bc6e2e9ba07afddd498ebe4a86b13df69 +Size: 227702464 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_3.0.4669-1.deb + +Package: aspnetcore-targeting-pack-8.0 +Version: 8.0.0-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 15792 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-targeting-pack-8.0 (>= 8.0.0) +SHA256: d09f928a198197a966b9e76a77ae0953781b510d3d3cf5a240a857d385bf8bf6 +Size: 1906362 +Filename: pool/main/a/aspnetcore-targeting-pack-8.0/aspnetcore-targeting-pack-8.0_8.0.0-1_amd64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.8-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19860 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.8) +SHA256: fe093d8c965519050ec012a273b54e80590c38b214e9f98ddeadd10d89a615e6 +Size: 6605452 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.8-x64.deb + +Package: libmsquic +Version: 2.1.3 +Architecture: amd64 +Section: default +Priority: extra +Installed-Size: 16079 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 468e51c36fa323f47ae5789cf8ae9d45475d3639062bae7e8db688d4fa85154d +Size: 4117940 +Filename: pool/main/libm/libmsquic/libmsquic_2.1.3_amd64.deb + +Package: aspnetcore-runtime-6.0 +Version: 6.0.7-1 +Architecture: amd64 +Section: devel +Priority: standard +Installed-Size: 19860 +Maintainer: Microsoft +Description: Shared Framework for hosting of Microsoft ASP.NET Core applications. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/aspnetcore). We happily accept issues and PRs. +Homepage: https://asp.net +Depends: dotnet-runtime-6.0 (>= 6.0.7) +SHA256: 5c60c0e32b4411b290d7a0169ef42fde0207876aead9fbbf9b42741bc27e12de +Size: 6606224 +Filename: pool/main/a/aspnetcore-runtime-6.0/aspnetcore-runtime-6.0.7-x64.deb + +Package: dotnet-hostfxr-7.0 +Version: 7.0.0-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 424 +Maintainer: .NET Team +Description: Microsoft .NET Host FX Resolver - 7.0.0 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: libgcc1, libstdc++6, dotnet-host (>= 7.0.0), libc6 +SHA256: aba67fc99134f951372118c3f843be58fb05c33d5ceff5aea080eff62b8917eb +Size: 144012 +Filename: pool/main/d/dotnet-hostfxr-7.0/dotnet-hostfxr-7.0.0-x64.deb + +Package: aztfexport +Version: 0.14.1 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 77444 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfexport +Vendor: none +License: MPL-2.0 +SHA256: b867bd25206053f636955282cc60c1a133b8751383c82c30bfb6983e9f3757d6 +Size: 12805058 +Filename: pool/main/a/aztfexport/aztfexport_0.14.1_amd64.deb + +Package: mde-netfilter-src +Version: 100.69.59-2 +Architecture: amd64 +Section: alien +Priority: extra +Installed-Size: 63 +Maintainer: root +Description: Microsoft Defender for Endpoints Netfitler + Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace + . + (Converted from a rpm package by alien version 8.95.) +SHA256: a804fafeb8c74bca1b8344740b45d39b1dea55e65be9f73d3d88fb2eeb1f3643 +Size: 13628 +Filename: pool/main/m/mde-netfilter-src/mde-netfilter-src_100.69.59-2.amd64.deb + +Package: dotnet-runtime-7.0 +Version: 7.0.1-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 70801 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Runtime 7.0.1 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +Depends: dotnet-runtime-deps-7.0 (>= 7.0.1), dotnet-hostfxr-7.0 (>= 7.0.1) +SHA256: c26e9d6bfb512806e89b4f2094964915c206b62be1bae7bf5efb69c6f090a305 +Size: 23188750 +Filename: pool/main/d/dotnet-runtime-7.0/dotnet-runtime-7.0.1-x64.deb + +Package: sysinternalsebpf +Version: 1.1.0 +Architecture: amd64 +Installed-Size: 20553 +Maintainer: Sysinternals +Description: A shared library and code library for making eBPF programs. + SysinternalsEBPF is a shared library that provides control over + eBPF programs, and an eBPF code library that eBPF programs can include to + interact with the library. +Depends: libc6 (>= 2.26), libelf1 (>= 0.131), libglib2.0-0 (>= 2.12.0), libjson-glib-1.0-0 (>= 0.13.2), zlib1g (>= 1:1.2.3.3) +SHA256: 9dc54caf038da57759b80a8ad46f1d783dc98f9039bfa307613d962d29c1c19f +Size: 594218 +Filename: pool/main/s/sysinternalsebpf/sysinternalsebpf_1.1.0-0_amd64.deb + +Package: dotnet-apphost-pack-8.0 +Version: 8.0.1-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11054 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 8.0.1 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 88dc35486d8d30b465847220f0ff72586825c232570f488ca8a8b33860fff0af +Size: 3507794 +Filename: pool/main/d/dotnet-apphost-pack-8.0/dotnet-apphost-pack-8.0_8.0.1-1_amd64.deb + +Package: azapi2azurerm +Version: 1.6.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 36328 +Maintainer: henglu +Description: A tool to migrate terraform resources from azapi to azurerm +Homepage: https://github.com/Azure/azapi2azurerm +Vendor: none +License: MPL-2.0 +SHA256: e5ce4199c1bb93083fe7d3d718e2fc94ff5d4f588256729e1201c60a104e4c1d +Size: 9880990 +Filename: pool/main/a/azapi2azurerm/azapi2azurerm-1.6.0-1-amd64.deb + diff --git a/apt_cache/lists/packages.microsoft.com_ubuntu_22.04_prod_dists_jammy_main_binary-arm64_Packages b/apt_cache/lists/packages.microsoft.com_ubuntu_22.04_prod_dists_jammy_main_binary-arm64_Packages new file mode 100644 index 000000000..c7dd55911 --- /dev/null +++ b/apt_cache/lists/packages.microsoft.com_ubuntu_22.04_prod_dists_jammy_main_binary-arm64_Packages @@ -0,0 +1,6671 @@ +Package: moby-cli +Version: 20.10.21+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 48302 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: deda2f32be6f2c066637afafe5ace8af93ec6ce6c47e3cceef390cfa43a8c178 +Size: 9682598 +Filename: pool/main/m/moby-cli/moby-cli_20.10.21+azure-ubuntu22.04u1_arm64.deb + +Package: moby-runc +Version: 1.1.7+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 12811 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: 54bdcccda82006267925cd8420c02005cdc784671953d8473a106b9bfb740671 +Size: 5629896 +Filename: pool/main/m/moby-runc/moby-runc_1.1.7+azure-ubuntu22.04u1_arm64.deb + +Package: moby-compose +Version: 2.19.0+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 56634 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 90247c54ed9a2d89084cb77ca81d0ac8de9e3bdf15340743a6a5358b9e805788 +Size: 11808064 +Filename: pool/main/m/moby-compose/moby-compose_2.19.0+azure-ubuntu22.04u1_arm64.deb + +Package: moby-cli +Version: 20.10.23+azure-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 48440 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: e9a5ceb37fbb1de988822f7c1dfa8dc3831040353f2e8d8580f980c109c2a15d +Size: 9766710 +Filename: pool/main/m/moby-cli/moby-cli_20.10.23+azure-ubuntu22.04u2_arm64.deb + +Package: moby-compose +Version: 2.17.3+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 51049 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: dc97a63349f85629b5dd0e799fd7fce15573f71d7e6c4defae5715eb36857f05 +Size: 10763016 +Filename: pool/main/m/moby-compose/moby-compose_2.17.3+azure-ubuntu22.04u1_arm64.deb + +Package: moby-cli +Version: 20.10.18+azure-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 48302 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 499ef9ae3d3834c447f721fb8debd27a9780d55da9fbf99d10f934d9ced1dad6 +Size: 9715894 +Filename: pool/main/m/moby-cli/moby-cli_20.10.18+azure-ubuntu22.04u2_arm64.deb + +Package: moby-buildx +Version: 0.16.2-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 77516 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 37a211304af4e28d757ad37b7c75e3e449dab4d1f99c9b6c97523ada2ba457e9 +Size: 33674972 +Filename: pool/main/m/moby-buildx/moby-buildx_0.16.2-ubuntu22.04u1_arm64.deb + +Package: deviceupdate-agent +Version: 1.1.0 +Architecture: arm64 +Section: admin +Priority: extra +Installed-Size: 5370 +Maintainer: aduct@microsoft.com +Description: Device update agent +Homepage: https://github.com/Azure/iot-hub-device-update +Depends: deliveryoptimization-agent (>= 1.0.0), libdeliveryoptimization (>= 1.0.0), libcurl4-openssl-dev, libc6 (>= 2.34), libcurl4 (>= 7.18.2), libgcc-s1 (>= 3.0), libssl3 (>= 3.0.0~~alpha1), libstdc++6 (>= 11), libxml2 (>= 2.7.4) +Suggests: deliveryoptimization-plugin-apt +SHA256: 8562b12a92b1f078417f4974f95dfb1505a4d774bb9fbf28b65af3ef03367c90 +Size: 1957790 +Filename: pool/main/d/deviceupdate-agent/deviceupdate-agent_1.1.0_arm64.deb + +Package: moby-compose +Version: 2.10.0+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 25360 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: e55a7faa1f82eb369731da7341d8b6a63180d6679344fca7d81265f245cfccba +Size: 6377404 +Filename: pool/main/m/moby-compose/moby-compose_2.10.0+azure-ubuntu22.04u1_arm64.deb + +Package: moby-engine +Version: 24.0.9-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 66642 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 68ee0e277997b68de9f03235ae928e8d37794a518ffe9013969ece58eba345e6 +Size: 21181000 +Filename: pool/main/m/moby-engine/moby-engine_24.0.9-ubuntu22.04u2_arm64.deb + +Package: moby-compose +Version: 2.11.2+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 42128 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 41b328bf91fb99a75410d9a7e2d74e8367548de04c6da87cfbb2d5dd1297b9fb +Size: 9413236 +Filename: pool/main/m/moby-compose/moby-compose_2.11.2+azure-ubuntu22.04u1_arm64.deb + +Package: moby-engine +Version: 26.1.1-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 76005 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 4a6fdb2e7b8585aac1c8d027c92d96ec03919a5ce69f24c84800204df4a5382a +Size: 23470212 +Filename: pool/main/m/moby-engine/moby-engine_26.1.1-ubuntu22.04u1_arm64.deb + +Package: msopenjdk-17 +Version: 17.0.9-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 300333 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 17 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 2876ff5740cf0af84dc8739d54ff4d8b89cad6a117ef6afe1205fee65bf5ebc2 +Size: 157334954 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.9-1_arm64.deb + +Package: msodbcsql18 +Version: 18.1.2.1-1 +Architecture: arm64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: d502459da3186f5f449fc862e932b8c86a46eae23ad3817d273d5dd9854ec8cb +Size: 686510 +Filename: pool/main/m/msodbcsql18/msodbcsql18_18.1.2.1-1_arm64.deb + +Package: msodbcsql18 +Version: 18.3.2.1-1 +Architecture: arm64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: d9bb2d2e165e9d86f6b5de75b2baa24c9f0f25107471bcf82254d27f5dafff30 +Size: 690530 +Filename: pool/main/m/msodbcsql18/msodbcsql18_18.3.2.1-1_arm64.deb + +Package: azapi2azurerm +Version: 1.2.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 20032 +Maintainer: henglu +Description: A tool to migrate terraform resources from azapi to azurerm +Homepage: https://github.com/Azure/azapi2azurerm +Vendor: none +License: MPL-2.0 +SHA256: 027da0f0eeaab8804b6e614b4309a3a67d5b8b3e2b2df23b09cfafd4540ccf16 +Size: 6089408 +Filename: pool/main/a/azapi2azurerm/azapi2azurerm-1.2.0-1-arm64.deb + +Package: moby-compose +Version: 2.28.1-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 59992 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 28c8c65aaa1fcbdbc2b5c5d33d7b87e9c98fce50289b0e4c67ce32ceb06ac3f6 +Size: 16800154 +Filename: pool/main/m/moby-compose/moby-compose_2.28.1-ubuntu22.04u1_arm64.deb + +Package: moby-compose +Version: 2.24.5-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 58453 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: f944d8e929dfd7881f1dd2a389dd63bb1e8edce72220e9d0b623542dfa18c66a +Size: 16280424 +Filename: pool/main/m/moby-compose/moby-compose_2.24.5-ubuntu22.04u1_arm64.deb + +Package: azapi2azurerm +Version: 1.6.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 35136 +Maintainer: henglu +Description: A tool to migrate terraform resources from azapi to azurerm +Homepage: https://github.com/Azure/azapi2azurerm +Vendor: none +License: MPL-2.0 +SHA256: 47f9fb0f6fbb02e8153364ddcd760fd9595d326324da4fa933525605e66a8470 +Size: 8998856 +Filename: pool/main/a/azapi2azurerm/azapi2azurerm-1.6.0-1-arm64.deb + +Package: moby-cli +Version: 23.0.7+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 33720 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 73ae20ee75d1f9aa9d639a61de5c9146858ce4548c7dd032e530f40a62d192af +Size: 12695446 +Filename: pool/main/m/moby-cli/moby-cli_23.0.7+azure-ubuntu22.04u1_arm64.deb + +Package: moby-compose +Version: 2.23.2-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 56774 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 3aaf33106b7ca6282169be24e9817bd28f4f07a65179934dde80b3a3db8c3122 +Size: 15952120 +Filename: pool/main/m/moby-compose/moby-compose_2.23.2-ubuntu22.04u1_arm64.deb + +Package: aziot-identity-service +Version: 1.4.5-1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 15962 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1) +SHA256: 5bdc50da055cfcf1f8ce095ae87c9a1e0d49eb0c33919c2d35fa2235a7b7804e +Size: 3957546 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.4.5-1_arm64.deb + +Package: moby-compose +Version: 2.18.1+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 51118 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: dbecebe38aa9986299e58af14d4b7ebe8cebb7e8cafc5f566730a6c8a1e468b5 +Size: 10784776 +Filename: pool/main/m/moby-compose/moby-compose_2.18.1+azure-ubuntu22.04u1_arm64.deb + +Package: moby-buildx +Version: 0.16.0-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 77512 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: cb4480877ecbc4134ce597f96e72dc2077ee51da98dc0f99e948cdc6abd880b0 +Size: 33671138 +Filename: pool/main/m/moby-buildx/moby-buildx_0.16.0-ubuntu22.04u1_arm64.deb + +Package: aadsshlogin +Version: 1.0.023850001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libc6 (>= 2.34), libcurl4 (>= 7.16.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 3.1~), libsemanage2 (>= 2.0.32), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.16), passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: b5029713abce251071e4836721c21cde73c3165213cfe379a911597c950d1a0b +Size: 334864 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.023850001_arm64.deb + +Package: aadsshlogin +Version: 1.0.027980001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libc6 (>= 2.34), libcurl4 (>= 7.16.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 3.1~), libsemanage2 (>= 2.0.32), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.16), passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: 9d8db2a5c5631b7f0d6b780e7441d95ab9109bfcc0b437689e098f5983b7bba3 +Size: 335020 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.027980001_arm64.deb + +Package: blobfuse2 +Version: 2.2.1 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 29486 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: 55c6b865affdd0509834a051dd33fe0456ceaf92e1792985b084cc00ae228a9c +Size: 14270674 +Filename: pool/main/b/blobfuse2/blobfuse2_2.2.1_arm64.deb + +Package: moby-compose +Version: 2.6.1+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 25424 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: bd54833a35eb5385537d5de79801c345042e56897b8219d3d659aed9bc315a5b +Size: 6374346 +Filename: pool/main/m/moby-compose/moby-compose_2.6.1+azure-ubuntu22.04u1_arm64.deb + +Package: aadsshlogin +Version: 1.0.022090001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libcurl4, libuuid1, passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: 3c05a26fdc7d20d53aecfe42929899f15c1079ece0c050d304f4059e5e45dc17 +Size: 332882 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.022090001_arm64.deb + +Package: moby-cli +Version: 26.1.5-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 37531 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 213c4edb0224a115e26db6fe6fbf9e81cc3a0f190c3a429160557e18c8406c81 +Size: 15923902 +Filename: pool/main/m/moby-cli/moby-cli_26.1.5-ubuntu22.04u1_arm64.deb + +Package: moby-buildx +Version: 0.12.1-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 72861 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 51a56720801b7304ca8ad2f0d004ef880804e24741e42ce433a37a206acfb4eb +Size: 31674862 +Filename: pool/main/m/moby-buildx/moby-buildx_0.12.1-ubuntu22.04u1_arm64.deb + +Package: moby-containerd +Version: 1.5.13+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 98289 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: f416d7b83982390c2172a56d867f52bba1de19ac839195b98b70b5e041edbddf +Size: 20379434 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.13+azure-ubuntu22.04u1_arm64.deb + +Package: moby-containerd +Version: 1.6.26-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 101805 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 3a66e95dcd19c03713fc17bac132351a71b052aa4adc93a0805b3730a23ffd37 +Size: 34119868 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.26-ubuntu22.04u1_arm64.deb + +Package: moby-buildx +Version: 0.10.4+azure-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 66869 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 41d6f818078ed495e960abde148b3573e574ac1d036443c9802a48bd1203c8ce +Size: 25254962 +Filename: pool/main/m/moby-buildx/moby-buildx_0.10.4+azure-ubuntu22.04u2_arm64.deb + +Package: moby-cli +Version: 26.1.1-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 37514 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: bba0c03caa6a2fd49987a00340aabcd1ae91d22fddaa187e32a334bf973d1416 +Size: 15915220 +Filename: pool/main/m/moby-cli/moby-cli_26.1.1-ubuntu22.04u1_arm64.deb + +Package: aztfy +Version: 0.9.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 45248 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfy +Vendor: none +License: MPL-2.0 +SHA256: 21450aae85a356b1494b5807719c77da82b3b152354b335061c872b150ff8425 +Size: 8042128 +Filename: pool/main/a/aztfy/aztfy-0.9.0-1-arm64.deb + +Package: moby-cli +Version: 20.10.22+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 48310 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: f4a0812facdd00732e624252dd494a3c5ad397c10c3561d48b01c63751bf2811 +Size: 9702590 +Filename: pool/main/m/moby-cli/moby-cli_20.10.22+azure-ubuntu22.04u1_arm64.deb + +Package: msopenjdk-17 +Version: 17.0.4-1 +Architecture: arm64 +Section: java +Priority: extra +Installed-Size: 298447 +Maintainer: Microsoft +Description: OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: fonts-dejavu, libx11-6, libxext6, libxi6, libxrender1, libxtst6, libasound2, libfontconfig1, libfreetype6 +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: b4ad7072235122abde510df2567da88bddc37aa84b89d58d6195eec10d5892e1 +Size: 181927918 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.4-1_arm64.deb + +Package: azapi2azurerm +Version: 1.8.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 68864 +Maintainer: henglu +Description: A tool to migrate terraform resources from azapi to azurerm +Homepage: https://github.com/Azure/azapi2azurerm +Vendor: none +License: MPL-2.0 +SHA256: 2e15e240b114e04d4a3c89a105ae0c0c00f4863c1fb1d5617d70af74af9c89ae +Size: 8887474 +Filename: pool/main/a/azapi2azurerm/azapi2azurerm-1.8.0-1-arm64.deb + +Package: aadsshlogin-selinux +Version: 1.0.021030001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.3-1), selinux-utils, selinux-policy-default +SHA256: cc7baab8ebe2b5bcdd6e1383c97236ed40e18a777bb3ac94625f248a0e394af5 +Size: 2218 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.021030001_arm64.deb + +Package: moby-compose +Version: 2.16.0+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 44688 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 84ee0aca298c53923b321ef9c6f60508ac9c3210ac21c69f5885c5efba5ebe98 +Size: 10013512 +Filename: pool/main/m/moby-compose/moby-compose_2.16.0+azure-ubuntu22.04u1_arm64.deb + +Package: msopenjdk-17 +Version: 17.0.11-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 325963 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 17 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: a5b9b9f6b437e5aa4c5132585bdd66fc86818452fa0fcc9a3eca124be2fcb373 +Size: 162980134 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.11-1_arm64.deb + +Package: deliveryoptimization-agent +Version: 1.1.0 +Architecture: arm64 +Section: devel +Priority: optional +Installed-Size: 408 +Maintainer: docloss@microsoft.com +Description: Delivery Optimization downloader with Microsoft Connected Cache support + # Delivery Optimization Client + . + This repository contains source code for the following DO components: + . + * Agent + * SDK + * Plug-ins + . + ## Agent + . + Delivery Optimization HTTP downloader with Microsoft Connected Cache support. + . + ## SDK + . + Library for enabling inter-process communication (IPC) with deliveryoptimization clients + through native C++ code. + . + ## Plug-ins + . + Add-on that enables APT downloads to go through Delivery Optimization Agent. + It is a required component only on devices that must download APT packages via a Microsoft Connected Cache instance. + During install, it replaces itself as APT's HTTP(S) transport mechanism, thus receiving all APT downloads requests. + . + ## Getting Started + . + Follow the development machine setup on each desktop you'd like to use. + . + ### Development Machine Setup + . + Clone the repository locally from terminal: + . + ```markdown + > cd (to working directory of your choosing) + > git clone https://github.com/microsoft/do-client + ``` + . + Run the appropriate bootstrapper depending on development machine platform: + . + ```markdown + > cd build/bootstrap + ``` + . + ### Building DO client components + **NOTICE:** + **If you are modifying this project and distributing your own custom build, please modify the DO_BUILDER_IDENTIFIER cmake variable located in https://github.com/microsoft/do-client/blob/main/CMakeLists.txt** + . + After setting up your development machine, navigate back into the project root + . + ```markdown + > cd <project root> + ``` + . + We provide an easy-to-use python script for building our client components from the project root, you can inspect build.py for additional build flags + On debian-based systems, run this command to build the client and package it as a .deb file + . + ```markdown + > python3 build/build.py --project agent --package-for deb + ``` + . + Run this command to build the sdk + . + ```markdown + > python3 build/build.py --project sdk --package-for deb + ``` + . + In order to build the plugin, you must build & install the sdk, an easy way to do this is to install the the packages you produced in the previous two steps + . + Navigate to the build output directory for the agent and install the agent package + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + ``` + . + The sdk produces a runtime and development package, in this case you'll want to install both + Navigate to build output directory for the sdk and install both packages + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + ``` + . + With the sdk installed, you can now build the plugin by navigating back to the project root + . + ```markdown + > cd <project root> + > python3 build/build.py --project plugin-apt --package-for deb + ``` + . + At this point, you should have built and packaged all components + . + ### Installing DO Client components + . + There are a couple ways for you to install the DO client components + . + 1. If you have built the component into a debian package, you can simply find the debian package and install like detailed above. + This will handle installing to the appropriate paths, and also the necessary setup of DO user/group permissions needed for DO-agent. + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + > cd /tmp/build-deliveryoptimization-plugin-apt/linux-debug/ + > sudo apt-get install ./deliveryoptimization-plugin-apt*.deb + ``` + . + 2. If you build and install using cmake, or through some other custom means, be sure to setup the DO user/groups correctly in your installation. + You can reference this [script](https://github.com/microsoft/do-client/blob/main/client-lite/build/postinst.in.sh) to see how to setup the DO user/group and install DO as a daemon. + . + ### Testing DO Client components + . + As guidance, please ensure proper code coverage for project contributions + Unit tests for the agent and sdk are produced as a part of the above build command, you can find them in the build output directory + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/client-lite/test + ``` + . + Our tests utilize the [GTest](https://github.com/google/googletest) unit testing framework, which supports test filtering via command line + You can run all agent tests by running + . + ```markdown + > ./deliveryoptimization-agent-tests + ``` + . + You can filter for specific tests as well, reference the GTest documentation for filtering rules and syntax + ```markdown + > sudo ./deliveryoptimization-agent-tests --gtest_filter=DownloadManagerTests* + ``` + . + The test executable for the SDK is located in the sdk build output as well + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/sdk-cpp/tests + ``` + . + The sdk tests expect a running do-agent, you can either manually run the agent executable from its build output or install the agent package as you may have done while building the plugin + You can run the sdk tests just like the agent tests + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests + ``` + . + And filter them similarly + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests --gtest_filter=DownloadTests* + ``` + . + ## Support + . + The APT plugin component is currently in a **Public Preview** state. During this phase, it will be + supported for 90 days beyond the release date of a new release. At the end of the 90 day window, + we will not guarantee support for the previous version. Please plan to migrate to a newer release + within that 90-day window to avoid any disruptions. + . + ## Filing a Bug + . + Please file a [GitHub Issue](https://github.com/microsoft/do-client/issues) to ensure all issues are + tracked appropriately. + . + ## Build status + . + #### Ubuntu 18.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=45&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=46&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=47&branchName=develop) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + #### Ubuntu 20.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + #### Debian 10 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + ### Windows 10/11 + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20Windows%2010%20x64?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=59&branchName=develop) | + . + ### MacOS + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20MacOS%20X64?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=60&branchName=develop) | + . + ## Contact + . + Directly contact us: <docloss@microsoft.com> +Homepage: https://github.com/microsoft/do-client +Depends: libc6 (>= 2.34), libcurl4 (>= 7.16.2), libgcc-s1 (>= 3.0), libproxy1v5 (>= 0.4.17), libstdc++6 (>= 12) +SHA256: 7e4e40e7b9dd761c7cccf40f5368a9354b4e090ebe541e938a543a108df72c9a +Size: 159866 +Filename: pool/main/d/deliveryoptimization-agent/deliveryoptimization-agent_1.1.0_arm64.deb + +Package: moby-cli +Version: 24.0.8-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 33743 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 9eec0ffdd6e481c3a4b5308e1f7671701b95b9abb9b2590246a16b2b9976a40d +Size: 14467916 +Filename: pool/main/m/moby-cli/moby-cli_24.0.8-ubuntu22.04u1_arm64.deb + +Package: msopenjdk-17 +Version: 17.0.4.1-1 +Architecture: arm64 +Section: java +Priority: extra +Installed-Size: 298449 +Maintainer: Microsoft +Description: OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: fonts-dejavu, libx11-6, libxext6, libxi6, libxrender1, libxtst6, libasound2, libfontconfig1, libfreetype6 +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: ffa78da7ef49bf5f102ee6464feb2bc2e4394d2082cfe3799a17cd877758746e +Size: 181926720 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.4.1-1_arm64.deb + +Package: moby-compose +Version: 2.18.0+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 51118 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 481d72691a1bb72565b67274d68f5c06aa13d61ed28f11672191db1fdbd5c31a +Size: 10784194 +Filename: pool/main/m/moby-compose/moby-compose_2.18.0+azure-ubuntu22.04u1_arm64.deb + +Package: aadsshlogin-selinux +Version: 1.0.022600002 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.3-1), selinux-utils, selinux-policy-default +SHA256: b2947f3973c83ad35d407abe22267b5585f1983521d5efb912502785d88bb9c0 +Size: 2218 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.022600002_arm64.deb + +Package: moby-engine +Version: 20.10.21+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 61851 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 82df063823b6e8b685b9dff621d5e4d89d71903bf0e23ecdd847dacdea5b7108 +Size: 14539286 +Filename: pool/main/m/moby-engine/moby-engine_20.10.21+azure-ubuntu22.04u1_arm64.deb + +Package: moby-compose +Version: 2.26.1-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 59707 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 7392df999965c21afc7144c5960b316dab66cee56c3b14154b32221d7023e0ef +Size: 16695846 +Filename: pool/main/m/moby-compose/moby-compose_2.26.1-ubuntu22.04u1_arm64.deb + +Package: moby-runc +Version: 1.1.4+azure-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 13806 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: 6407bacdc76f4e1dd338fac2f7af5d07d8166134d31d804508749c53ddc91258 +Size: 5188446 +Filename: pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu22.04u2_arm64.deb + +Package: libmsquic +Version: 2.3.3 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 13457 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: d0ffacf9ce812660bbb356200c83eee1ca5dd3f0b4e5ad42ba00553ee2e5368a +Size: 4041764 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.3_arm64.deb + +Package: moby-compose +Version: 2.27.1-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 60002 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: e57fbd1c9e3b45a94e7e0533fc96352c4ce3fc4e206adbacfdfac831c075682d +Size: 16791650 +Filename: pool/main/m/moby-compose/moby-compose_2.27.1-ubuntu22.04u1_arm64.deb + +Package: libmsquic +Version: 2.1.4 +Architecture: arm64 +Section: default +Priority: extra +Installed-Size: 16791 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 18a56280c8e068bdd9f5c4e04d02a421556bf7100e294cb1e802c141d5f309a8 +Size: 4189614 +Filename: pool/main/libm/libmsquic/libmsquic_2.1.4_arm64.deb + +Package: moby-containerd +Version: 1.6.30-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 101979 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 7223c5630739182067dca3fa847b25cf252424c9430811b762ffab734f847285 +Size: 34209914 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.30-ubuntu22.04u2_arm64.deb + +Package: msopenjdk-21 +Version: 21.0.3-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 353277 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 21 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: a3e857b913427ab19d5a18a50471d4a35384dbddee543eb01bf9fd3068589362 +Size: 174184086 +Filename: pool/main/m/msopenjdk-21/msopenjdk-21_21.0.3-1_arm64.deb + +Package: moby-containerd +Version: 1.6.27-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 101809 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 961c9fd030c57c2bda1868465fc4a6204e2ad1921fb340ee821dcd3533e4f1ed +Size: 34128250 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.27-ubuntu22.04u1_arm64.deb + +Package: moby-runc +Version: 1.1.4+azure-ubuntu22.04u3 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 13806 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: 07b261256db436173bbbff8ddded61a8b56820e7a4e05594d4cbb2ded0ec8ccf +Size: 5188374 +Filename: pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu22.04u3_arm64.deb + +Package: libmsquic +Version: 2.2.2 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 12949 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: a20d269fbd3cdd9182d64175502ee734027dae915bb9bd8d71831608955f2ef2 +Size: 3895864 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.2_arm64.deb + +Package: aziot-edge +Version: 1.4.33-1 +Architecture: arm64 +Section: admin +Priority: extra +Installed-Size: 15594 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, psmisc, sed, aziot-identity-service (= 1.4.8-1) +SHA256: 89945d6fc9a30e4ab6b866e49054ff94c4d793267dd331b32ad8a333266f12fa +Size: 3669616 +Filename: pool/main/a/aziot-edge/aziot-edge_1.4.33-1_arm64.deb + +Package: moby-cli +Version: 20.10.24+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 48439 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 7be15bef813ee458947b34356d8c2812b86b170451d54742eb16654d9f10a3a1 +Size: 9755282 +Filename: pool/main/m/moby-cli/moby-cli_20.10.24+azure-ubuntu22.04u1_arm64.deb + +Package: moby-containerd +Version: 1.6.32-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 102821 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: e66ca2bebae7f19bcbef0c1be72517a62cde38573bff43e7cd06591db5999259 +Size: 34516996 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.32-ubuntu22.04u1_arm64.deb + +Package: moby-buildx +Version: 0.15.0-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 77300 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: ffee08fc6f31be082af3b24836501f27124ce82ec343a8450c63b988c3a58e28 +Size: 33566282 +Filename: pool/main/m/moby-buildx/moby-buildx_0.15.0-ubuntu22.04u1_arm64.deb + +Package: aadsshlogin-selinux +Version: 1.0.023850001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.3-1), selinux-utils, selinux-policy-default +SHA256: fc60bdb9e35750f0acabc53b733001984e37f0bbbc04fbf4c06d56f25aa5af81 +Size: 2218 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.023850001_arm64.deb + +Package: moby-buildx +Version: 0.11.2+azure-ubuntu22.04u3 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 73096 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: d7ef81cce706689382fea8074aa263f359a00a30b88cd9cd06b33a19e5fada8e +Size: 31736438 +Filename: pool/main/m/moby-buildx/moby-buildx_0.11.2+azure-ubuntu22.04u3_arm64.deb + +Package: moby-compose +Version: 2.26.0-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 59707 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: db5ad73f1679656f76715d2e59f76c525be0dfae7e0132215c7a6beac7121cc1 +Size: 16695988 +Filename: pool/main/m/moby-compose/moby-compose_2.26.0-ubuntu22.04u1_arm64.deb + +Package: aztfexport +Version: 0.13.1 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 71808 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfexport +Vendor: none +License: MPL-2.0 +SHA256: 6baa4498f5b857a76a17fcc0ff1bdc8fd3dfced98b5e6e338cd2eb1056bde8b0 +Size: 10908470 +Filename: pool/main/a/aztfexport/aztfexport_0.13.1_arm64.deb + +Package: moby-compose +Version: 2.25.0-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 58521 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: a0f59bc4b54ae41c3095ea49ca98d415e74d762ff1f1fa3f110609afbeee837b +Size: 16306656 +Filename: pool/main/m/moby-compose/moby-compose_2.25.0-ubuntu22.04u1_arm64.deb + +Package: libmsquic +Version: 2.2.5 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 12986 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 0dbca49f499a8db23ea5c83d078e059a37aa992bea0207cef107002bcd1942df +Size: 3900068 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.5_arm64.deb + +Package: moby-engine +Version: 23.0.6+azure-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 69206 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 4075cf96a34978a4467d64884c025878a4cd59a25ad064f502842e70dc3aae56 +Size: 16305764 +Filename: pool/main/m/moby-engine/moby-engine_23.0.6+azure-ubuntu22.04u2_arm64.deb + +Package: moby-containerd +Version: 1.6.34-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 102821 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: e4d6034e73ded772642fc5eecf13d78934fbdc5f3c8e6ce5891d75ff0556c10f +Size: 34519648 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.34-ubuntu22.04u1_arm64.deb + +Package: azureauth +Version: 0.8.4-1 +Architecture: arm64 +Section: misc +Priority: optional +Installed-Size: 82446 +Maintainer: ES365 Security Experience Team +Description: A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information. +SHA256: d4cbb1be55e8ace7597b7fe373acb975c0aa234828f1e2fc580533dd0508c541 +Size: 21320314 +Filename: pool/main/a/azureauth/azureauth_0.8.4-1_arm64.deb + +Package: aziot-edge +Version: 1.4.10-1 +Architecture: arm64 +Section: admin +Priority: extra +Installed-Size: 15613 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, aziot-identity-service (= 1.4.4-1), sed +SHA256: 606db2f32b041fa67d2f88f08f76d09a3b95f5c5e76c884a0644f653065ce9a6 +Size: 3682756 +Filename: pool/main/a/aziot-edge/aziot-edge_1.4.10-1_arm64.deb + +Package: msopenjdk-17 +Version: 17.0.7-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 299212 +Maintainer: Microsoft +Description: OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: fonts-dejavu, libx11-6, libxext6, libxi6, libxrender1, libxtst6, libasound2, libfontconfig1, libfreetype6 +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: b15bdda6551f62f631704a3f36d34480e2b08a2fca34b404c4f69b69ef4639cd +Size: 182393474 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.7-1_arm64.deb + +Package: aztfexport +Version: 0.14.2 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 76096 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfexport +Vendor: none +License: MPL-2.0 +SHA256: 8795abd986a81ade35f9bfec585e4fc6172ed63b4fa50166497cf70c69d29605 +Size: 11790424 +Filename: pool/main/a/aztfexport/aztfexport_0.14.2_arm64.deb + +Package: moby-containerd +Version: 1.6.20+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 99170 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 6d6197170d99c9d27fccafd579c5b2d18707ea9fd5356b3426a530017d50a3d1 +Size: 25142696 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.20+azure-ubuntu22.04u1_arm64.deb + +Package: blobfuse2 +Version: 2.3.2 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 24391 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: da295a3a228bbffee4145ea6db87185ec59e4c90eb81cc1f678ee392bb9d7c00 +Size: 12526888 +Filename: pool/main/b/blobfuse2/blobfuse2_2.3.2_arm64.deb + +Package: moby-compose +Version: 2.14.1+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 42512 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: ea7c41b8ededcf8aaa64ea0af36ca0fddaa8a62baa272663bad4ca7e1b054328 +Size: 9491894 +Filename: pool/main/m/moby-compose/moby-compose_2.14.1+azure-ubuntu22.04u1_arm64.deb + +Package: aadsshlogin +Version: 1.0.023850001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libc6 (>= 2.34), libcurl4 (>= 7.16.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 3.1~), libsemanage2 (>= 2.0.32), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.16), passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: b5029713abce251071e4836721c21cde73c3165213cfe379a911597c950d1a0b +Size: 334864 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.023850001_arm64.deb + +Package: aziot-edge +Version: 1.4.27-1 +Architecture: arm64 +Section: admin +Priority: extra +Installed-Size: 15590 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, aziot-identity-service (= 1.4.7-1), sed +SHA256: a22c55a24a2089f391396546898c759c7a7538951d50f938668a88d8d7885a48 +Size: 3670922 +Filename: pool/main/a/aziot-edge/aziot-edge_1.4.27-1_arm64.deb + +Package: aadsshlogin +Version: 1.0.026840001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libc6 (>= 2.34), libcurl4 (>= 7.16.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 3.1~), libsemanage2 (>= 2.0.32), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.16), passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: 9af08cbd71231c43dbf764a2aff5d40e0b02d52b6fc2947c8bf2595b7531bc8b +Size: 334962 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.026840001_arm64.deb + +Package: moby-engine +Version: 20.10.15+azure-1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 72068 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: b525a8c8ec85dddd266cb81bca1e82bc5c1f226fa94adfad3f8712d839f16141 +Size: 15855388 +Filename: pool/main/m/moby-engine/moby-engine_20.10.15+azure-1_arm64.deb + +Package: msopenjdk-21 +Version: 21.0.2-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 353187 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 21 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: c98f276d379fe3a64425b1e0d8b063b5f9d098fbec028a1c15ea17ff6eeb7d98 +Size: 174109098 +Filename: pool/main/m/msopenjdk-21/msopenjdk-21_21.0.2-1_arm64.deb + +Package: moby-compose +Version: 2.21.0-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 56987 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: dd743b25c35fefd77f06f99b9996a2cd3dde1809ad738453446cb28abe796cda +Size: 16019198 +Filename: pool/main/m/moby-compose/moby-compose_2.21.0-ubuntu22.04u1_arm64.deb + +Package: moby-cli +Version: 20.10.17+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 58417 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 7beb5263ec78456e12620cc9db732da240da729423a5f556848ac717dfd8aeb3 +Size: 10477982 +Filename: pool/main/m/moby-cli/moby-cli_20.10.17+azure-ubuntu22.04u1_arm64.deb + +Package: moby-engine +Version: 20.10.20+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 61778 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: a01f1cddffd6998db4fa326d1aef774de95c6613ccd5209b70f5c9868a44e6e8 +Size: 14547112 +Filename: pool/main/m/moby-engine/moby-engine_20.10.20+azure-ubuntu22.04u1_arm64.deb + +Package: moby-containerd +Version: 1.6.21+azure-ubuntu22.04u3 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 99242 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 56d1eba09e91782d4e8c1e712d3c2f0986c4dcd4da14b4a124f5be9944e62ff1 +Size: 25165492 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.21+azure-ubuntu22.04u3_arm64.deb + +Package: libmsquic +Version: 2.1.3 +Architecture: arm64 +Section: default +Priority: extra +Installed-Size: 16791 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: de612ae7e0de86414901ca4efc1e85db2ce844396fe5d42355a0b390756de2f5 +Size: 4189596 +Filename: pool/main/libm/libmsquic/libmsquic_2.1.3_arm64.deb + +Package: mssql-tools18 +Version: 18.1.1.1-1 +Architecture: arm64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL Tools Team +Description: Tools for Microsoft(R) SQL Server(R) + This package provides tools for Microsoft(R) SQL Server(R). +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), msodbcsql18 (>= 18.0.0.0) +SHA256: 2274c0acc0b063c00661e7a8e89f5d34232234f5af29f8fd22cde5ece6ab9c78 +Size: 207708 +Filename: pool/main/m/mssql-tools18/mssql-tools18_18.1.1.1-1_arm64.deb + +Package: moby-compose +Version: 2.12.2+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 42512 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 0a1503da0efd6f22af90dcdb7111f641c71981132143e89605da18e31116b6ad +Size: 9502156 +Filename: pool/main/m/moby-compose/moby-compose_2.12.2+azure-ubuntu22.04u1_arm64.deb + +Package: aztfexport +Version: 0.13.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 71808 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfexport +Vendor: none +License: MPL-2.0 +SHA256: 8ed1550fec55c3d476bfda2401aa69c67eb3f0b73daf9b45ec26dbe63b654c20 +Size: 10908408 +Filename: pool/main/a/aztfexport/aztfexport_0.13.0_arm64.deb + +Package: msopenjdk-11 +Version: 11.0.24-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 329448 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 11 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 3fefc3a41ad59a18fa419eeba3fcb656b57b5adb2247048386bbbca7a8d86c5b +Size: 167515398 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.24-1_arm64.deb + +Package: moby-containerd +Version: 1.6.16+azure-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 98465 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 4dd241dff52f824bf5bfaae7cbfb6497f943da398b28ca354f25ddcdc582e4bc +Size: 24759188 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.16+azure-ubuntu22.04u2_arm64.deb + +Package: moby-cli +Version: 20.10.15+azure-1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 57106 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 52b64171a2861081864818ee579f20b67f1b2ed749dc9760576fee32cf2298ab +Size: 10781730 +Filename: pool/main/m/moby-cli/moby-cli_20.10.15+azure-1_arm64.deb + +Package: moby-engine +Version: 20.10.18+azure-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 61560 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: a2c45f5c8cd7740f7bf3dedecdb2f42a922d214790c3bf9f885ffae28751f57b +Size: 14503118 +Filename: pool/main/m/moby-engine/moby-engine_20.10.18+azure-ubuntu22.04u2_arm64.deb + +Package: moby-buildx +Version: 0.8.2+azure-1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 63274 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: d40cb872ad3e3206e90ea6195e3fadfd7bcf51ee1ecb17ba0f672d637214d5a6 +Size: 22735776 +Filename: pool/main/m/moby-buildx/moby-buildx_0.8.2+azure-1_arm64.deb + +Package: aztfexport +Version: 0.14.1 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 75840 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfexport +Vendor: none +License: MPL-2.0 +SHA256: 3b1586ed4f00ad1d80b9280f6dfea4c3ae3df1e2d5db811c0b46700f1b2ccc25 +Size: 11749128 +Filename: pool/main/a/aztfexport/aztfexport_0.14.1_arm64.deb + +Package: msopenjdk-11 +Version: 11.0.20.1-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 317302 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 11 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 618d60f7de8f632ecb6668f95c62cf2e4ec01ea638ac51f11dd950b8bea1919d +Size: 164692414 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20.1-1_arm64.deb + +Package: moby-engine +Version: 26.1.2-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 76008 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 53a58f725e8a5f988b1efbb0553a7f166924e117f4ef9a1695ba4de5d901cdb5 +Size: 23469104 +Filename: pool/main/m/moby-engine/moby-engine_26.1.2-ubuntu22.04u1_arm64.deb + +Package: moby-engine +Version: 20.10.25+azure-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 62098 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 846d7851ded9c38b57b2c7cda8040ca9e5651daa6373c94129ce1c201d5f6731 +Size: 14686374 +Filename: pool/main/m/moby-engine/moby-engine_20.10.25+azure-ubuntu22.04u2_arm64.deb + +Package: moby-cli +Version: 20.10.21+azure-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 48306 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 6b4430245e1ce4a0e1a9a5c345b114a39d5b5200f559b5241d598fac26781ce0 +Size: 9702754 +Filename: pool/main/m/moby-cli/moby-cli_20.10.21+azure-ubuntu22.04u2_arm64.deb + +Package: blobfuse2 +Version: 2.2.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 29476 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: e7bb417a8a70e4e40a8dab5a823aa53fede85231b879e88c600db459050d79b1 +Size: 14267414 +Filename: pool/main/b/blobfuse2/blobfuse2_2.2.0_arm64.deb + +Package: moby-cli +Version: 23.0.6+azure-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 33719 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 22fc4ec4fa6cf8f7651afe3007f70db0b257c5ae52612d91675eed0e7fe022d2 +Size: 12697140 +Filename: pool/main/m/moby-cli/moby-cli_23.0.6+azure-ubuntu22.04u2_arm64.deb + +Package: aztfexport +Version: 0.12.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 71104 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfexport +Vendor: none +License: MPL-2.0 +SHA256: 3da5399f18485c0167dce818129a602ab6fc7f87c879005c884bba2edb436999 +Size: 10779408 +Filename: pool/main/a/aztfexport/aztfexport_0.12.0_arm64.deb + +Package: moby-containerd +Version: 1.6.31-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 102463 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: b41eb90eb5c503e5de4508451014c57899f1e5228ad8a003df76aae226c179eb +Size: 34364014 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.31-ubuntu22.04u1_arm64.deb + +Package: moby-tini +Version: 0.19.0-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 574 +Maintainer: Microsoft +Description: tiny but valid init for containers + Tini is the simplest init you could think of. + . + All Tini does is spawn a single child (Tini is meant to be run in a + container), and wait for it to exit all the while reaping zombies and + performing signal forwarding. +Homepage: https://github.com/krallin/tini +SHA256: c5d8d594948cbc43b27617fefdabf92b903f924eb904cb5661bc16be9bd96bd3 +Size: 287338 +Filename: pool/main/m/moby-tini/moby-tini_0.19.0-ubuntu22.04u1_arm64.deb + +Package: virtualclient +Version: 1.11.0 +Architecture: arm64 +Maintainer: Virtual Client Team +Description: VirtualClient, the open sourced workload automation. +SHA256: 3a2ec91602b78c85cccf8d057294ad13a715f0205595f9f1b18a2673ba23e7ae +Size: 42035838 +Filename: pool/main/v/virtualclient/virtualclient_1.11.0_arm64.deb + +Package: moby-engine +Version: 26.1.3-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 76008 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: d643c2dd5f0d20fd710b5d13d211055170be7cefc7782db980173ce6852b154b +Size: 23468868 +Filename: pool/main/m/moby-engine/moby-engine_26.1.3-ubuntu22.04u1_arm64.deb + +Package: aztfexport +Version: 0.11.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 53504 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfexport +Vendor: none +License: MPL-2.0 +SHA256: ebb12265d99414349847e38b30ee651cd1660f6ab5e7cfbec9ef1660e303c011 +Size: 8625428 +Filename: pool/main/a/aztfexport/aztfexport-0.11.0-1-arm64.deb + +Package: azapi2azurerm +Version: 0.0.0 +Architecture: arm64 +Section: default +Priority: extra +Installed-Size: 19584 +Maintainer: henglu +Description: A tool to migrate terraform resources from azapi to azurerm +Homepage: https://github.com/Azure/azapi2azurerm +Vendor: none +License: MPL-2.0 +SHA256: 055c1fbe4225f150471f85916fbb92e0042cf5ca656347faa159c66d09f610a5 +Size: 6056136 +Filename: pool/main/a/azapi2azurerm/azapi2azurerm-0.0.0-1-arm64.deb + +Package: moby-runc +Version: 1.1.8+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 12821 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: 199f62416eff277a3efa4ae621853a5137897cb8f7d3e0f6bd66265583abeb7c +Size: 5647948 +Filename: pool/main/m/moby-runc/moby-runc_1.1.8+azure-ubuntu22.04u1_arm64.deb + +Package: moby-engine +Version: 20.10.23+azure-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 62023 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 7098eebdaf5c6f971e4130593135dbd27d979430bc697f6e8d15b07967be3369 +Size: 14679496 +Filename: pool/main/m/moby-engine/moby-engine_20.10.23+azure-ubuntu22.04u2_arm64.deb + +Package: azapi2azurerm +Version: 1.0.0 +Architecture: arm64 +Section: default +Priority: extra +Installed-Size: 19840 +Maintainer: henglu +Description: A tool to migrate terraform resources from azapi to azurerm +Homepage: https://github.com/Azure/azapi2azurerm +Vendor: none +License: MPL-2.0 +SHA256: a1b6c4968d5cc6233b23b44669779718042382bbf15bcd84ddd2212f184e49ad +Size: 6073162 +Filename: pool/main/a/azapi2azurerm/azapi2azurerm-1.0.0-1-arm64.deb + +Package: moby-engine +Version: 20.10.17+azure-ubuntu22.04u3 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 72658 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: a23b193d01daf37bf337c4bab7784584cbfafe546dceb10f3b50a26ce93ceb41 +Size: 15388880 +Filename: pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu22.04u3_arm64.deb + +Package: moby-cli +Version: 20.10.25+azure-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 48445 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: ab7d9df3d3d63656957e2a1f4132faa5abd8a9bf969120b943f6736c4895e1b8 +Size: 9788882 +Filename: pool/main/m/moby-cli/moby-cli_20.10.25+azure-ubuntu22.04u2_arm64.deb + +Package: aziot-edge +Version: 1.4.16-1 +Architecture: arm64 +Section: admin +Priority: extra +Installed-Size: 15581 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, aziot-identity-service (= 1.4.5-1), sed +SHA256: 070415748f6c29289167683914420f2e0ed41c7b28495938991d94641d83710b +Size: 3667056 +Filename: pool/main/a/aziot-edge/aziot-edge_1.4.16-1_arm64.deb + +Package: moby-compose +Version: 2.28.0-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 59992 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 5f285b35fe8dd30b7966d9b2e1072fae3bc33b45034e076229dedf6b48421ba8 +Size: 16800300 +Filename: pool/main/m/moby-compose/moby-compose_2.28.0-ubuntu22.04u1_arm64.deb + +Package: moby-buildx +Version: 0.11.0+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 73203 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 8f1410c218fb7b811d88836a0f753ad46f321fa446091539fb5812c72c62adb1 +Size: 27472150 +Filename: pool/main/m/moby-buildx/moby-buildx_0.11.0+azure-ubuntu22.04u1_arm64.deb + +Package: msopenjdk-11 +Version: 11.0.20-3 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 318398 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 11 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 44eac45707158097fe53480c2746c24dc7adf75435bc5eb121ee0996c4abd2df +Size: 165326662 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20-3_arm64.deb + +Package: moby-compose +Version: 2.9.0+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 25488 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: f654fd296f9c696426a19c187de271aa21912a467711738c2318c11a328390c5 +Size: 6390112 +Filename: pool/main/m/moby-compose/moby-compose_2.9.0+azure-ubuntu22.04u1_arm64.deb + +Package: moby-engine +Version: 26.1.4-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 76012 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: cb842a96a8eb1e494e9a51a871c1096b2ed776474617ae2bae7e04c8ac763eae +Size: 23468520 +Filename: pool/main/m/moby-engine/moby-engine_26.1.4-ubuntu22.04u1_arm64.deb + +Package: moby-buildx +Version: 0.11.1+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 73195 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 5b6d608486216f31609340a019eab47ba627f37e41b092bb988377b4128b2396 +Size: 27461510 +Filename: pool/main/m/moby-buildx/moby-buildx_0.11.1+azure-ubuntu22.04u1_arm64.deb + +Package: moby-compose +Version: 2.29.5-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 60128 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: ac64f8c761afa46a23cfa4b078423424632275463b79be3c3ee246ae525d0f75 +Size: 16839534 +Filename: pool/main/m/moby-compose/moby-compose_2.29.5-ubuntu22.04u1_arm64.deb + +Package: moby-engine +Version: 20.10.22+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 61855 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 779ad019470bcb9c696feb7f4e180bc6e5504dee2f44074df6c68f51341f38b8 +Size: 14537044 +Filename: pool/main/m/moby-engine/moby-engine_20.10.22+azure-ubuntu22.04u1_arm64.deb + +Package: moby-runc +Version: 1.1.6+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 12810 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: 8c410ba4f4e5794f7d6c376fbc03c7e492f82ccc79e62d0abad6e66a55553b7d +Size: 5628722 +Filename: pool/main/m/moby-runc/moby-runc_1.1.6+azure-ubuntu22.04u1_arm64.deb + +Package: moby-buildx +Version: 0.15.1-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 77289 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 07d3644fa2ea59e1068f477c1bb5caae8ada37ddd40214418be8b540f45dee49 +Size: 33552874 +Filename: pool/main/m/moby-buildx/moby-buildx_0.15.1-ubuntu22.04u1_arm64.deb + +Package: moby-engine +Version: 24.0.9-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 70702 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 6d924dc112402d2b989b5e6c4cbec7e4c1606c2729833d7b83bdba9aff4c8554 +Size: 21363514 +Filename: pool/main/m/moby-engine/moby-engine_24.0.9-ubuntu22.04u1_arm64.deb + +Package: blobfuse2 +Version: 2.3.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 24366 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: 1a01bd3f7a4200093b80578db55ae4c3994797cdf81debd846540a76b2d4b014 +Size: 12501224 +Filename: pool/main/b/blobfuse2/blobfuse2_2.3.0_arm64.deb + +Package: msopenjdk-11 +Version: 11.0.20-2 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 317684 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 11 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 0c75ee1de4d73f3d576ecb087a4889b79ec49882210fabe713a1b713913d4650 +Size: 165070734 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20-2_arm64.deb + +Package: aziot-edge +Version: 1.4.41-1 +Architecture: arm64 +Section: admin +Priority: extra +Installed-Size: 15954 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, psmisc, sed, aziot-identity-service (= 1.4.9-1) +SHA256: 581423d564d4039c10970f6895f8a5b89ec400bbfcde6bcad5dd254a171ddf65 +Size: 3933296 +Filename: pool/main/a/aziot-edge/aziot-edge_1.4.41-1_arm64.deb + +Package: msopenjdk-11 +Version: 11.0.15+10-LTS-1 +Architecture: arm64 +Section: java +Priority: extra +Installed-Size: 315990 +Maintainer: Microsoft +Description: OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, fonts-dejavu, java-common, libasound2, libc6, libfreetype6, libfontconfig1, libx11-6, libxext6, libxi6, libxrender1, libxtst6, zlib1g +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: a5c94805f090e7e97f8e5dab6e26b91c2d1de0b3bf8c59b26ae1d72d3cd023fd +Size: 191781642 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.15+10-LTS-1_arm64.deb + +Package: moby-cli +Version: 24.0.7-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 33742 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: f2851243ef35b31ebda728c19bec9c4ae500619f2c54d5d5d492319c1b9ccc26 +Size: 14467874 +Filename: pool/main/m/moby-cli/moby-cli_24.0.7-ubuntu22.04u1_arm64.deb + +Package: moby-runc +Version: 1.1.5+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 12788 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: dcebdb33e98e3a737fad6c1c64ac02f103a27e574faef094a46785d07080812c +Size: 5623248 +Filename: pool/main/m/moby-runc/moby-runc_1.1.5+azure-ubuntu22.04u1_arm64.deb + +Package: blobfuse2 +Version: 2.1.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 30173 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: a74f3591c5e59df93f41957adfec74b2bc4988d5f600d47c7616b131debb2cf1 +Size: 14437972 +Filename: pool/main/b/blobfuse2/blobfuse2-2.1.0.arm64.deb + +Package: moby-compose +Version: 2.10.1+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 25360 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: d568581e805517cd49eac27f2a7c091f11ae32fe8afd4ac69b4576dfc6ce7b34 +Size: 6377518 +Filename: pool/main/m/moby-compose/moby-compose_2.10.1+azure-ubuntu22.04u1_arm64.deb + +Package: moby-buildx +Version: 0.11.2+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 73245 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 2feae2137e53272e55e8050f16261a5577b417e90baaafb1686187f3f1673001 +Size: 27503940 +Filename: pool/main/m/moby-buildx/moby-buildx_0.11.2+azure-ubuntu22.04u1_arm64.deb + +Package: moby-containerd +Version: 1.6.22+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 99519 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: cb2b68a350d0bdb59e33f0eef1b9cd855f81cf722a4097fdf108056227a848dd +Size: 25202386 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.22+azure-ubuntu22.04u1_arm64.deb + +Package: libmsquic +Version: 2.2.1 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 12945 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 85fc5016259bba69c1f78795f9eae72b16a930dc2d9e6c6ce331f7cd02d169aa +Size: 3888738 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.1_arm64.deb + +Package: aadsshlogin-selinux +Version: 1.0.022090001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.3-1), selinux-utils, selinux-policy-default +SHA256: 3fe0bf0e824ab82f22d69b503a9e752f86f4fe5345da8638bc728b5d35d84a3c +Size: 2220 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.022090001_arm64.deb + +Package: msopenjdk-11 +Version: 11.0.18-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 317386 +Maintainer: Microsoft +Description: OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: fonts-dejavu, libx11-6, libxext6, libxi6, libxrender1, libxtst6, libasound2, libfontconfig1, libfreetype6 +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: f3ba6c148e639206e8dc684ab380830243b54b31f5686619ff984c7666707f5d +Size: 192577852 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.18-1_arm64.deb + +Package: moby-buildx +Version: 0.9.1+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 65406 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 29ab3b53988884fe29b2e7638a50f6fbdf537384bf3b5f589c631834c0d4d197 +Size: 22830976 +Filename: pool/main/m/moby-buildx/moby-buildx_0.9.1+azure-ubuntu22.04u1_arm64.deb + +Package: moby-runc +Version: 1.1.9-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 12796 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: dfdf4137edf7352a58cb2dc522bd09815ecf341814666f86eae25f18f6556cbf +Size: 6246736 +Filename: pool/main/m/moby-runc/moby-runc_1.1.9-ubuntu22.04u1_arm64.deb + +Package: azureauth +Version: 0.8.3-1 +Architecture: arm64 +Section: misc +Priority: optional +Installed-Size: 80911 +Maintainer: ES365 Security Experience Team +Description: A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information. +SHA256: be2f557345a234a3bead55014d609de96bdebfb769f3ad37f4149a1a291602f2 +Size: 21005310 +Filename: pool/main/a/azureauth/azureauth_0.8.3-1_arm64.deb + +Package: moby-compose +Version: 2.19.1+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 56634 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 20d29c6d55a751f4711d198a476372c430a48a2dbf1d9c36f7e42015aea63c56 +Size: 11809230 +Filename: pool/main/m/moby-compose/moby-compose_2.19.1+azure-ubuntu22.04u1_arm64.deb + +Package: msodbcsql18 +Version: 18.2.2.1-1 +Architecture: arm64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: 3c44d6f1f170101f6b3ae51239d1316330852a1dbd25144608192061efab262a +Size: 687406 +Filename: pool/main/m/msodbcsql18/msodbcsql18_18.2.2.1-1_arm64.deb + +Package: libmsquic +Version: 2.2.3 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 12986 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 10db1cabf8922c24fac71ae6deccbc8846438cdfa7c769ed372997e08fcec603 +Size: 3898022 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.3_arm64.deb + +Package: virtualclient +Version: 1.11.5 +Architecture: arm64 +Maintainer: Virtual Client Team +Description: VirtualClient, the open sourced workload automation. +SHA256: 168f48d4f52b2851342cbd94779df84f9a47f6f96733c56195e2a1f12b096e40 +Size: 42033292 +Filename: pool/main/v/virtualclient/virtualclient_1.11.5_arm64.deb + +Package: msodbcsql18 +Version: 18.2.1.1-1 +Architecture: arm64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: 671c272f09123c075737c4a46e30315dbd755f9581fa8d9f9f36217134b01f49 +Size: 687290 +Filename: pool/main/m/msodbcsql18/msodbcsql18_18.2.1.1-1_arm64.deb + +Package: moby-compose +Version: 2.23.1-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 56773 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 64b2f0306913b63e9bf52cfe50ee6565770cd54af5b4b38a23cc34ae4e41ab14 +Size: 15944872 +Filename: pool/main/m/moby-compose/moby-compose_2.23.1-ubuntu22.04u1_arm64.deb + +Package: moby-buildx +Version: 0.12.0-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 72892 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: f2c2da58474c6bcb1a5b86612658fc119cc699b75a88bf235528913219826473 +Size: 31723088 +Filename: pool/main/m/moby-buildx/moby-buildx_0.12.0-ubuntu22.04u1_arm64.deb + +Package: moby-compose +Version: 2.22.0-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 56774 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: cfdc0b2cbc3f741f716a1debd188bb4118c902b5fe2247bdb2b72fe340ad62d7 +Size: 15940404 +Filename: pool/main/m/moby-compose/moby-compose_2.22.0-ubuntu22.04u1_arm64.deb + +Package: azapi2azurerm +Version: 1.1.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 19968 +Maintainer: henglu +Description: A tool to migrate terraform resources from azapi to azurerm +Homepage: https://github.com/Azure/azapi2azurerm +Vendor: none +License: MPL-2.0 +SHA256: bc0b8056363ffc8384ff39c43d04b1f37bc37c8c3606968bd676d9c44386949b +Size: 6084630 +Filename: pool/main/a/azapi2azurerm/azapi2azurerm-1.1.0-1-arm64.deb + +Package: aziot-identity-service +Version: 1.4.3-1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 16014 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 3.3), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1) +SHA256: 6369f399e200c9b8f662636876d07fee3f3082b4c9eb7e34d0e025f12d88905e +Size: 3987708 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.4.3-1_arm64.deb + +Package: aziot-edge +Version: 1.5.8-1 +Architecture: arm64 +Section: admin +Priority: extra +Installed-Size: 14532 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, psmisc, sed, aziot-identity-service (= 1.5.2-1) +SHA256: ecd297dde1e1267be3e4b4f8b344ded1a79715373a6dc2924f14cb0f51c180b9 +Size: 3603332 +Filename: pool/main/a/aziot-edge/aziot-edge_1.5.8-1_arm64.deb + +Package: moby-compose +Version: 2.15.1+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 42512 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: e5b54d821c93f75d5e46324dc349526df0b3441bdf870bfcbc26b779ac63f433 +Size: 9507228 +Filename: pool/main/m/moby-compose/moby-compose_2.15.1+azure-ubuntu22.04u1_arm64.deb + +Package: aadsshlogin-selinux +Version: 1.0.027890001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.3-1), selinux-utils, selinux-policy-default +SHA256: f799c20efa8eb1bbb583f48129d98f8ef05d1e58b9433222e4b58af4888d5b5f +Size: 2220 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.027890001_arm64.deb + +Package: msopenjdk-11 +Version: 11.0.21-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 317522 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 11 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: b6579d7b17397385173d507e5b8f4e8ef1edffcca4e1b982a51c1252afbce676 +Size: 164773538 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.21-1_arm64.deb + +Package: libmsquic +Version: 2.1.1 +Architecture: arm64 +Section: default +Priority: extra +Installed-Size: 23434 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 2c2e33cbb2a1ac8e3acbe1dddbe9e528386cc50fb64b9eca3180730ae0587d58 +Size: 6455384 +Filename: pool/main/libm/libmsquic/libmsquic_2.1.1_arm64.deb + +Package: moby-runc +Version: 1.1.12-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 12763 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: f949f09c29eda7d351a89afa847e2ec817e76e3d78e50a27adc41f560be2809d +Size: 6226654 +Filename: pool/main/m/moby-runc/moby-runc_1.1.12-ubuntu22.04u1_arm64.deb + +Package: moby-compose +Version: 2.11.1+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 42128 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: fce8e4642728e4af1fa6d9858e8c50593d025007d48131317f1305c49ef4eff0 +Size: 9415786 +Filename: pool/main/m/moby-compose/moby-compose_2.11.1+azure-ubuntu22.04u1_arm64.deb + +Package: msopenjdk-17 +Version: 17.0.3+7-LTS-1 +Architecture: arm64 +Section: java +Priority: extra +Installed-Size: 298419 +Maintainer: Microsoft +Description: OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, fonts-dejavu, java-common, libasound2, libc6, libfreetype6, libfontconfig1, libx11-6, libxext6, libxi6, libxrender1, libxtst6, zlib1g +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: 42b51d88361437e52255b9456553b4f7c69cce49f12d8baf8640215d98925a85 +Size: 182008262 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.3+7-LTS-1_arm64.deb + +Package: aziot-identity-service +Version: 1.5.0-1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 14607 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1), psmisc +SHA256: 917486c9353869645e023e10d88a2c4cf42f384c3887a57aa5d036333319b633 +Size: 3636900 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.5.0-1_arm64.deb + +Package: virtualclient +Version: 1.12.0 +Architecture: arm64 +Maintainer: Virtual Client Team +Description: VirtualClient, the open sourced workload automation. +SHA256: 8d509512c87fedde4a0413a153564091abcd767896891f54edf3eab1e880a068 +Size: 41988104 +Filename: pool/main/v/virtualclient/virtualclient_1.12.0_arm64.deb + +Package: moby-engine +Version: 20.10.17+azure-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 72658 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 601239d8e6a1c1a2f92857680017c3366335a75c318940d1a935230393a46b77 +Size: 15388868 +Filename: pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu22.04u2_arm64.deb + +Package: moby-buildx +Version: 0.13.0-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 76968 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: be92aa11ac69bb4ae00f49a2511345e92767694ca530dbdf4961027195e778a9 +Size: 33243968 +Filename: pool/main/m/moby-buildx/moby-buildx_0.13.0-ubuntu22.04u1_arm64.deb + +Package: moby-compose +Version: 2.18.1+azure-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 51118 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 095bc985f3c6b6170c59d40ac1894d0ee84deeb038d0314ffe2e0e1d675a80ec +Size: 10794216 +Filename: pool/main/m/moby-compose/moby-compose_2.18.1+azure-ubuntu22.04u2_arm64.deb + +Package: aadsshlogin-selinux +Version: 1.0.023850001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.3-1), selinux-utils, selinux-policy-default +SHA256: fc60bdb9e35750f0acabc53b733001984e37f0bbbc04fbf4c06d56f25aa5af81 +Size: 2218 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.023850001_arm64.deb + +Package: moby-runc +Version: 1.1.14-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 13076 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: a2eb6a5d5a7070cb18caf134451bede3536eca2cc8b3b7e1c43b789b20dec96b +Size: 6402536 +Filename: pool/main/m/moby-runc/moby-runc_1.1.14-ubuntu22.04u1_arm64.deb + +Package: msopenjdk-17 +Version: 17.0.8-3 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 300073 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 17 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 65208d452c54dbd03a8d27454f484d2ca7a725248d2fb8ddfb8c71b67935a05d +Size: 157210214 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8-3_arm64.deb + +Package: msodbcsql18 +Version: 18.3.3.1-1 +Architecture: arm64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: 37e692b1517f1229042c743d0f2a7191e0dcb956bbc3785a895aaa6dc328467e +Size: 689254 +Filename: pool/main/m/msodbcsql18/msodbcsql18_18.3.3.1-1_arm64.deb + +Package: moby-compose +Version: 2.23.0-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 56774 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 44b4e411cd1253d087a700c4e277470fe416128da7ce9a952b71ae14cc282452 +Size: 15948096 +Filename: pool/main/m/moby-compose/moby-compose_2.23.0-ubuntu22.04u1_arm64.deb + +Package: moby-containerd +Version: 1.5.18+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 86304 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 2d7f12204c2bfff1004dd20c6c612cd0ec54eddb3ae0d88aef1b6904dc83397e +Size: 19893058 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.18+azure-ubuntu22.04u1_arm64.deb + +Package: libmsquic +Version: 2.3.6 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 13475 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 77b39d94a79c0eb783f005111c6b3c69743cac3608bc2a3850bd488d6a6329da +Size: 4046480 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.6_arm64.deb + +Package: moby-compose +Version: 2.24.7-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 58520 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 214a4130f3d1921eae0769be1bc37123739e45adc57fff03ae29c9967862ab03 +Size: 16301288 +Filename: pool/main/m/moby-compose/moby-compose_2.24.7-ubuntu22.04u1_arm64.deb + +Package: moby-engine +Version: 20.10.16+azure-2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 72654 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 7fc20897e30ff5d7d435a353f17100ddd18acb44aff246500356bddf733781bb +Size: 15371118 +Filename: pool/main/m/moby-engine/moby-engine_20.10.16+azure-2_arm64.deb + +Package: moby-containerd +Version: 1.6.30-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 101979 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 6b4a7427e8848bdfb064ed426de5ed29a8c5b0f7a72b89d5c80d4adb35b321e4 +Size: 34207540 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.30-ubuntu22.04u1_arm64.deb + +Package: aadsshlogin +Version: 1.0.021030001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libcurl4, libuuid1, passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: 4ce101f8daad3372375a71bdecb2999010a8731a0c3e1983ff8096ae42370829 +Size: 495826 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.021030001_arm64.deb + +Package: moby-containerd +Version: 1.6.18+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 99013 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 99f3a3243cf3a632ae103990f44ce94b263e5fec6db51f6b1a69bfd1e1e1b4c5 +Size: 25082940 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.18+azure-ubuntu22.04u1_arm64.deb + +Package: msodbcsql18 +Version: 18.4.1.1-1 +Architecture: arm64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: b1a394d00e0629c862257b9b09507ca712cff7cc4d20f486d4e108bfec164255 +Size: 689450 +Filename: pool/main/m/msodbcsql18/msodbcsql18_18.4.1.1-1_arm64.deb + +Package: moby-compose +Version: 2.27.0-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 59998 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 9a7d6af15086a55a4a0b287c703c3b596cf3ebdb9bca40dfec4be1d7191c237f +Size: 16779954 +Filename: pool/main/m/moby-compose/moby-compose_2.27.0-ubuntu22.04u1_arm64.deb + +Package: libmsquic +Version: 2.4.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 13830 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: f986841240f5ad5a6062c410233341ea66f7cdabc18e6aae7a8cda61287d0da9 +Size: 4145412 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.0_arm64.deb + +Package: libdeliveryoptimization-dev +Version: 1.1.0 +Architecture: arm64 +Section: devel +Priority: optional +Installed-Size: 45 +Maintainer: docloss@microsoft.com +Description: The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux + # Delivery Optimization Client + . + This repository contains source code for the following DO components: + . + * Agent + * SDK + * Plug-ins + . + ## Agent + . + Delivery Optimization HTTP downloader with Microsoft Connected Cache support. + . + ## SDK + . + Library for enabling inter-process communication (IPC) with deliveryoptimization clients + through native C++ code. + . + ## Plug-ins + . + Add-on that enables APT downloads to go through Delivery Optimization Agent. + It is a required component only on devices that must download APT packages via a Microsoft Connected Cache instance. + During install, it replaces itself as APT's HTTP(S) transport mechanism, thus receiving all APT downloads requests. + . + ## Getting Started + . + Follow the development machine setup on each desktop you'd like to use. + . + ### Development Machine Setup + . + Clone the repository locally from terminal: + . + ```markdown + > cd (to working directory of your choosing) + > git clone https://github.com/microsoft/do-client + ``` + . + Run the appropriate bootstrapper depending on development machine platform: + . + ```markdown + > cd build/bootstrap + ``` + . + ### Building DO client components + **NOTICE:** + **If you are modifying this project and distributing your own custom build, please modify the DO_BUILDER_IDENTIFIER cmake variable located in https://github.com/microsoft/do-client/blob/main/CMakeLists.txt** + . + After setting up your development machine, navigate back into the project root + . + ```markdown + > cd + ``` + . + We provide an easy-to-use python script for building our client components from the project root, you can inspect build.py for additional build flags + On debian-based systems, run this command to build the client and package it as a .deb file + . + ```markdown + > python3 build/build.py --project agent --package-for deb + ``` + . + Run this command to build the sdk + . + ```markdown + > python3 build/build.py --project sdk --package-for deb + ``` + . + In order to build the plugin, you must build & install the sdk, an easy way to do this is to install the the packages you produced in the previous two steps + . + Navigate to the build output directory for the agent and install the agent package + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + ``` + . + The sdk produces a runtime and development package, in this case you'll want to install both + Navigate to build output directory for the sdk and install both packages + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + ``` + . + With the sdk installed, you can now build the plugin by navigating back to the project root + . + ```markdown + > cd + > python3 build/build.py --project plugin-apt --package-for deb + ``` + . + At this point, you should have built and packaged all components + . + ### Installing DO Client components + . + There are a couple ways for you to install the DO client components + . + 1. If you have built the component into a debian package, you can simply find the debian package and install like detailed above. + This will handle installing to the appropriate paths, and also the necessary setup of DO user/group permissions needed for DO-agent. + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + > cd /tmp/build-deliveryoptimization-plugin-apt/linux-debug/ + > sudo apt-get install ./deliveryoptimization-plugin-apt*.deb + ``` + . + 2. If you build and install using cmake, or through some other custom means, be sure to setup the DO user/groups correctly in your installation. + You can reference this [script](https://github.com/microsoft/do-client/blob/main/client-lite/build/postinst.in.sh) to see how to setup the DO user/group and install DO as a daemon. + . + ### Testing DO Client components + . + As guidance, please ensure proper code coverage for project contributions + Unit tests for the agent and sdk are produced as a part of the above build command, you can find them in the build output directory + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/client-lite/test + ``` + . + Our tests utilize the [GTest](https://github.com/google/googletest) unit testing framework, which supports test filtering via command line + You can run all agent tests by running + . + ```markdown + > ./deliveryoptimization-agent-tests + ``` + . + You can filter for specific tests as well, reference the GTest documentation for filtering rules and syntax + ```markdown + > sudo ./deliveryoptimization-agent-tests --gtest_filter=DownloadManagerTests* + ``` + . + The test executable for the SDK is located in the sdk build output as well + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/sdk-cpp/tests + ``` + . + The sdk tests expect a running do-agent, you can either manually run the agent executable from its build output or install the agent package as you may have done while building the plugin + You can run the sdk tests just like the agent tests + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests + ``` + . + And filter them similarly + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests --gtest_filter=DownloadTests* + ``` + . + ## Support + . + The APT plugin component is currently in a **Public Preview** state. During this phase, it will be + supported for 90 days beyond the release date of a new release. At the end of the 90 day window, + we will not guarantee support for the previous version. Please plan to migrate to a newer release + within that 90-day window to avoid any disruptions. + . + ## Filing a Bug + . + Please file a [GitHub Issue](https://github.com/microsoft/do-client/issues) to ensure all issues are + tracked appropriately. + . + ## Build status + . + #### Ubuntu 18.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=45&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=46&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=47&branchName=develop) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + #### Ubuntu 20.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + #### Debian 10 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + ### Windows 10/11 + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20Windows%2010%20x64?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=59&branchName=develop) | + . + ### MacOS + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20MacOS%20X64?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=60&branchName=develop) | + . + ## Contact + . + Directly contact us: +Homepage: https://github.com/microsoft/do-client +Depends: libdeliveryoptimization +SHA256: 47f82420c1adb6774e570ac8a48fb12368f871fbbe8cdc85ca999250b33bc4c7 +Size: 9358 +Filename: pool/main/libd/libdeliveryoptimization-dev/libdeliveryoptimization-dev_1.1.0_arm64.deb + +Package: moby-engine +Version: 24.0.8-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 70693 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: e89d9b62aff1326f949ceb891a8a4fa09b94af60af690d8c0ac7ac20f96016f0 +Size: 21354614 +Filename: pool/main/m/moby-engine/moby-engine_24.0.8-ubuntu22.04u1_arm64.deb + +Package: moby-engine +Version: 20.10.14+azure-1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 72059 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 416b90cb84fe6f5313b4b5c69cbaeee779d53c2900b84a9d16ef585544e785d9 +Size: 15873646 +Filename: pool/main/m/moby-engine/moby-engine_20.10.14+azure-1_arm64.deb + +Package: msopenjdk-17 +Version: 17.0.8.1-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 300079 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 17 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: ae1a62f291d17d164be918dcc70c975ecb3dffa083cf555d6a456ca978c727e0 +Size: 157230442 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8.1-1_arm64.deb + +Package: moby-cli +Version: 20.10.20+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 48302 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 13442c58e64f515bb223396d60dea1b1e69c473e7af2060e771f9e19b2998f49 +Size: 9682404 +Filename: pool/main/m/moby-cli/moby-cli_20.10.20+azure-ubuntu22.04u1_arm64.deb + +Package: msopenjdk-11 +Version: 11.0.23-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 329419 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 11 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 598c2b0624cd87f3d5a2c53091934d031cb057015bb18163bdff13f1768f6afd +Size: 167473998 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.23-1_arm64.deb + +Package: aadsshlogin +Version: 1.0.027190001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libc6 (>= 2.34), libcurl4 (>= 7.16.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 3.1~), libsemanage2 (>= 2.0.32), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.16), passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: 080141fc55c10a607cfa1442f80684ba8bce9322ca61b5fc02fd0fa28980121f +Size: 334934 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.027190001_arm64.deb + +Package: moby-cli +Version: 26.1.3-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 37531 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 092b93897b0918ea2ea8a21e3a27341e3395ca3c521fc37769a87b87087b6d5e +Size: 15924440 +Filename: pool/main/m/moby-cli/moby-cli_26.1.3-ubuntu22.04u1_arm64.deb + +Package: libmsquic +Version: 2.3.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 13456 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 34f1213649639f618aa3f75fc9a0f03f6a5deac98ea75c0a34e8d5b38931deb9 +Size: 4044550 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.0_arm64.deb + +Package: moby-cli +Version: 26.1.4-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 37531 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 21bd2a54dcd36551625fa7d02c1634c501b45b337eb241e0768759bbe9bc130b +Size: 15922906 +Filename: pool/main/m/moby-cli/moby-cli_26.1.4-ubuntu22.04u1_arm64.deb + +Package: moby-buildx +Version: 0.17.1-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 77537 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 713e36b9f46ae228c36024b331eed1d93602614ec99bb303c73b00117b313690 +Size: 33672720 +Filename: pool/main/m/moby-buildx/moby-buildx_0.17.1-ubuntu22.04u1_arm64.deb + +Package: aziot-edge +Version: 1.5.10-1 +Architecture: arm64 +Section: admin +Priority: extra +Installed-Size: 14532 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, psmisc, sed, aziot-identity-service (= 1.5.3-1) +SHA256: eb12341608daf77220ae9f9d1bb5687defa740b26e6398c5496d34295a5c7624 +Size: 3603336 +Filename: pool/main/a/aziot-edge/aziot-edge_1.5.10-1_arm64.deb + +Package: azapi2azurerm +Version: 1.7.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 36800 +Maintainer: henglu +Description: A tool to migrate terraform resources from azapi to azurerm +Homepage: https://github.com/Azure/azapi2azurerm +Vendor: none +License: MPL-2.0 +SHA256: a77ea0cb7f7c843d27534673e0754617d8936cb0999804c5d8af1af44ae861c3 +Size: 9305706 +Filename: pool/main/a/azapi2azurerm/azapi2azurerm-1.7.0-1-arm64.deb + +Package: aadsshlogin +Version: 1.0.022300001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libcurl4, libuuid1, passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: 8731056790777a7cd4909044025a39ae051c44ab924485e5ee5bae5479317d0d +Size: 334586 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.022300001_arm64.deb + +Package: aztfexport +Version: 0.14.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 72768 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfexport +Vendor: none +License: MPL-2.0 +SHA256: 74c10378b4e82623e49cccb86659a6f9fde1ae600a65b399d4ef3cc13cda37cf +Size: 11099524 +Filename: pool/main/a/aztfexport/aztfexport_0.14.0_arm64.deb + +Package: libmsquic +Version: 2.3.2 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 13457 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 334a1ca31393c2cd32d738f3a2d914dd9fdde8fc0734760f7d31ef6e9033840f +Size: 4045344 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.2_arm64.deb + +Package: aztfy +Version: 0.8.0 +Architecture: arm64 +Section: default +Priority: extra +Installed-Size: 41088 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfy +Vendor: none +License: MPL-2.0 +SHA256: 05e8eb51d52739dc79fb16646bab781e0062f837cad46b109ed5a302464aca2a +Size: 7899564 +Filename: pool/main/a/aztfy/aztfy-0.8.0-1-arm64.deb + +Package: moby-buildx +Version: 0.9.0+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 65389 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 056e783d54b71fab4f0ca38ea32551aa3b16cb13f369a88521b1833d5faacd68 +Size: 22815974 +Filename: pool/main/m/moby-buildx/moby-buildx_0.9.0+azure-ubuntu22.04u1_arm64.deb + +Package: moby-containerd +Version: 1.6.35-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 102821 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: a7b03501a523d0dbd24f64f95c9f8efaab8e15e2d8c59c010421284639fd6565 +Size: 34519946 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.35-ubuntu22.04u1_arm64.deb + +Package: moby-buildx +Version: 0.13.1-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 76958 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: ef57a4182c58ebb2216d246c5678995789a4c85b3af2bcbe410a98e33093f581 +Size: 33237780 +Filename: pool/main/m/moby-buildx/moby-buildx_0.13.1-ubuntu22.04u1_arm64.deb + +Package: moby-engine +Version: 23.0.7+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 69236 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: e0c4889d1cbca4d5d0daa64cea39fe493ca89fe4c748389236be4c693cedff52 +Size: 16318834 +Filename: pool/main/m/moby-engine/moby-engine_23.0.7+azure-ubuntu22.04u1_arm64.deb + +Package: msopenjdk-17 +Version: 17.0.10-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 325678 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 17 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: e106baa6c2e9f97da61860e9160ced835be31a798d5bbe6f6199ab50b2ad0cf1 +Size: 162823262 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.10-1_arm64.deb + +Package: msopenjdk-11 +Version: 11.0.17-1 +Architecture: arm64 +Section: java +Priority: extra +Installed-Size: 317256 +Maintainer: Microsoft +Description: OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: fonts-dejavu, libx11-6, libxext6, libxi6, libxrender1, libxtst6, libasound2, libfontconfig1, libfreetype6 +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: fffea448f8d8d90dea19976d8b4414eea71fbd8b8724a6030fdf85499e9f6d69 +Size: 192520346 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.17-1_arm64.deb + +Package: moby-buildx +Version: 0.14.0-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 77003 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: f382cb08e33ab6f7dbb4d5826828ae042d4c42026c2a17aba3b95db02d05bbd6 +Size: 33382320 +Filename: pool/main/m/moby-buildx/moby-buildx_0.14.0-ubuntu22.04u1_arm64.deb + +Package: azcopy +Version: 10.25.0~preview.2 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 31293 +Maintainer: Azcopy v-Team +Description: A command-line utility that is used to copy data to and from containers and file shares in Azure Storage accounts +Homepage: https://github.com/Azure/azure-storage-azcopy +Vendor: none +License: unknown +SHA256: 6a958fe2fe7937a92d3d9b996e9d4f298b84efda3812625d001e5fba8298a9ed +Size: 15101278 +Filename: pool/main/a/azcopy/azcopy_10.25.0~preview.2_arm64.deb + +Package: msopenjdk-21 +Version: 21.0.4-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 353785 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 21 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: a272c8046e37f3ee959a79ed1618f1e99998dc5ae5612c787600a2f2d3f0708b +Size: 174279090 +Filename: pool/main/m/msopenjdk-21/msopenjdk-21_21.0.4-1_arm64.deb + +Package: aziot-identity-service +Version: 1.4.8-1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 16331 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1), psmisc +SHA256: ffe2e0ebaccc04be8cef1b155d84d24c58413d18f0e3ef9bac531ab98d31e5e8 +Size: 4060712 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.4.8-1_arm64.deb + +Package: libmsquic +Version: 2.3.4 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 13457 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: dee8760ebc28bc523fa6322175c7bb2520d0224e36b08f0f34766172226c4298 +Size: 4044782 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.4_arm64.deb + +Package: moby-compose +Version: 2.4.1+azure-1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 25552 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 11569ed134acbe5b70a7b61ebc80f8cd3684791f30bc4d64466d18bd5d8139db +Size: 6427520 +Filename: pool/main/m/moby-compose/moby-compose_2.4.1+azure-1_arm64.deb + +Package: moby-cli +Version: 24.0.9-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 33749 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 21f48348d32c7bff1ffd5fd992d4a7afc5dc2d976d639901a3999a34347af48f +Size: 14472368 +Filename: pool/main/m/moby-cli/moby-cli_24.0.9-ubuntu22.04u1_arm64.deb + +Package: moby-containerd-shim-systemd +Version: 0.1.0~beta.1+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 21476 +Maintainer: Microsoft +Description: A containerd shim runtime that uses systemd to monitor runc containers +Homepage: https://github.com/cpuguy83/containerd-shim-systemd-v1 +Depends: libc6 (>= 2.34), systemd (>= 239), moby-containerd (>= 1.6) +Recommends: moby-runc +SHA256: 78ae1712d3ec1f24df89ec4fa89a9f3e4d38f5c69eb9a1c9776578382e71ae1d +Size: 9130380 +Filename: pool/main/m/moby-containerd-shim-systemd/moby-containerd-shim-systemd_0.1.0~beta.1+azure-ubuntu22.04u1_arm64.deb + +Package: moby-compose +Version: 2.29.1-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 60063 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 130158fe363e904dc04d469bd3d5db341a3caf0fc8cb5dc54d402e2be0f4b6e0 +Size: 16825810 +Filename: pool/main/m/moby-compose/moby-compose_2.29.1-ubuntu22.04u1_arm64.deb + +Package: moby-containerd +Version: 1.5.11+azure-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 98083 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 567be2a877222da1ac1475dceeca8c767da1ee020c22bb03bd26f13db7f252c6 +Size: 20357474 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.11+azure-ubuntu22.04u2_arm64.deb + +Package: moby-engine +Version: 20.10.21+azure-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 61855 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 70d71d2e93a9b4d571194e3f4df24208bdc8513d1bc11e99b4caf87f4953c78f +Size: 14538942 +Filename: pool/main/m/moby-engine/moby-engine_20.10.21+azure-ubuntu22.04u2_arm64.deb + +Package: moby-containerd +Version: 1.6.24-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 99835 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 9e47670691072bed0b07e326b36606bbb597095cc47219756b59ef84b69bfd13 +Size: 33224910 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.24-ubuntu22.04u1_arm64.deb + +Package: msopenjdk-21 +Version: 21.0.0-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 323932 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 21 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 3e34a69fd8595f581ac5d32a0a05a59332beaa2f873557bad06503119ac7a080 +Size: 167732362 +Filename: pool/main/m/msopenjdk-21/msopenjdk-21_21.0.0-1_arm64.deb + +Package: moby-containerd +Version: 1.6.24-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 99835 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 183f0ec27c48b14ba63f344e530aaace018ce187b7c920706947ac90f0151ecd +Size: 33225054 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.24-ubuntu22.04u2_arm64.deb + +Package: msopenjdk-17 +Version: 17.0.5-1 +Architecture: arm64 +Section: java +Priority: extra +Installed-Size: 298931 +Maintainer: Microsoft +Description: OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: fonts-dejavu, libx11-6, libxext6, libxi6, libxrender1, libxtst6, libasound2, libfontconfig1, libfreetype6 +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: ba2bcacb5b840c9b2820c2ba83fd5dfa292d73e971a0ae9a240444e03ff8f4c0 +Size: 182242574 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.5-1_arm64.deb + +Package: moby-buildx +Version: 0.10.0+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 66660 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: f7ddfd4464080950ab68b5013f9f48ab060d93318df4129753d1c5509f10e0ac +Size: 25013944 +Filename: pool/main/m/moby-buildx/moby-buildx_0.10.0+azure-ubuntu22.04u1_arm64.deb + +Package: msopenjdk-11 +Version: 11.0.22-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 329116 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 11 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 2bedf8906683e4a630c5e39d171dbfeffd45505a4038ee6eff38a142481efeba +Size: 167263750 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.22-1_arm64.deb + +Package: moby-runc +Version: 1.1.11-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 12757 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: 3ad96215d66dd0963c842db38536aef5b3c1bf34d849da3862a73cddc17dbd25 +Size: 6223858 +Filename: pool/main/m/moby-runc/moby-runc_1.1.11-ubuntu22.04u1_arm64.deb + +Package: moby-containerd +Version: 1.5.14+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 84872 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 7d0f8ca6a012d80cba873487cb3f868ade56d128bbde50377b4299adb3d012b4 +Size: 19529172 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.14+azure-ubuntu22.04u1_arm64.deb + +Package: aadsshlogin-selinux +Version: 1.0.027190001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.3-1), selinux-utils, selinux-policy-default +SHA256: c6edfdff3ca3350d16bac6b74cc67c43fde633ff69ec1943979195c1e3927402 +Size: 2218 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.027190001_arm64.deb + +Package: azureauth +Version: 0.8.5-1 +Architecture: arm64 +Section: misc +Priority: optional +Installed-Size: 82454 +Maintainer: ES365 Security Experience Team +Description: A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information. +SHA256: a1bace29eb9cbe2cb7f45c0084bc4dcb066c34feaefa0fa769502eadfe079421 +Size: 21311618 +Filename: pool/main/a/azureauth/azureauth_0.8.5-1_arm64.deb + +Package: libdeliveryoptimization +Version: 1.1.0 +Architecture: arm64 +Section: devel +Priority: optional +Installed-Size: 1476 +Maintainer: docloss@microsoft.com +Description: The DO SDK is a Microsoft project for enabling IPC through native C++ code with the Delivery Optimization Agent for Linux + # Delivery Optimization Client + . + This repository contains source code for the following DO components: + . + * Agent + * SDK + * Plug-ins + . + ## Agent + . + Delivery Optimization HTTP downloader with Microsoft Connected Cache support. + . + ## SDK + . + Library for enabling inter-process communication (IPC) with deliveryoptimization clients + through native C++ code. + . + ## Plug-ins + . + Add-on that enables APT downloads to go through Delivery Optimization Agent. + It is a required component only on devices that must download APT packages via a Microsoft Connected Cache instance. + During install, it replaces itself as APT's HTTP(S) transport mechanism, thus receiving all APT downloads requests. + . + ## Getting Started + . + Follow the development machine setup on each desktop you'd like to use. + . + ### Development Machine Setup + . + Clone the repository locally from terminal: + . + ```markdown + > cd (to working directory of your choosing) + > git clone https://github.com/microsoft/do-client + ``` + . + Run the appropriate bootstrapper depending on development machine platform: + . + ```markdown + > cd build/bootstrap + ``` + . + ### Building DO client components + **NOTICE:** + **If you are modifying this project and distributing your own custom build, please modify the DO_BUILDER_IDENTIFIER cmake variable located in https://github.com/microsoft/do-client/blob/main/CMakeLists.txt** + . + After setting up your development machine, navigate back into the project root + . + ```markdown + > cd + ``` + . + We provide an easy-to-use python script for building our client components from the project root, you can inspect build.py for additional build flags + On debian-based systems, run this command to build the client and package it as a .deb file + . + ```markdown + > python3 build/build.py --project agent --package-for deb + ``` + . + Run this command to build the sdk + . + ```markdown + > python3 build/build.py --project sdk --package-for deb + ``` + . + In order to build the plugin, you must build & install the sdk, an easy way to do this is to install the the packages you produced in the previous two steps + . + Navigate to the build output directory for the agent and install the agent package + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + ``` + . + The sdk produces a runtime and development package, in this case you'll want to install both + Navigate to build output directory for the sdk and install both packages + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + ``` + . + With the sdk installed, you can now build the plugin by navigating back to the project root + . + ```markdown + > cd + > python3 build/build.py --project plugin-apt --package-for deb + ``` + . + At this point, you should have built and packaged all components + . + ### Installing DO Client components + . + There are a couple ways for you to install the DO client components + . + 1. If you have built the component into a debian package, you can simply find the debian package and install like detailed above. + This will handle installing to the appropriate paths, and also the necessary setup of DO user/group permissions needed for DO-agent. + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/ + > sudo apt-get install ./libdeliveryoptimization*.deb + > cd /tmp/build-deliveryoptimization-agent/linux-debug/ + > sudo apt-get install ./deliveryoptimization-agent*.deb + > cd /tmp/build-deliveryoptimization-plugin-apt/linux-debug/ + > sudo apt-get install ./deliveryoptimization-plugin-apt*.deb + ``` + . + 2. If you build and install using cmake, or through some other custom means, be sure to setup the DO user/groups correctly in your installation. + You can reference this [script](https://github.com/microsoft/do-client/blob/main/client-lite/build/postinst.in.sh) to see how to setup the DO user/group and install DO as a daemon. + . + ### Testing DO Client components + . + As guidance, please ensure proper code coverage for project contributions + Unit tests for the agent and sdk are produced as a part of the above build command, you can find them in the build output directory + . + ```markdown + > cd /tmp/build-deliveryoptimization-agent/linux-debug/client-lite/test + ``` + . + Our tests utilize the [GTest](https://github.com/google/googletest) unit testing framework, which supports test filtering via command line + You can run all agent tests by running + . + ```markdown + > ./deliveryoptimization-agent-tests + ``` + . + You can filter for specific tests as well, reference the GTest documentation for filtering rules and syntax + ```markdown + > sudo ./deliveryoptimization-agent-tests --gtest_filter=DownloadManagerTests* + ``` + . + The test executable for the SDK is located in the sdk build output as well + . + ```markdown + > cd /tmp/build-deliveryoptimization-sdk/linux-debug/sdk-cpp/tests + ``` + . + The sdk tests expect a running do-agent, you can either manually run the agent executable from its build output or install the agent package as you may have done while building the plugin + You can run the sdk tests just like the agent tests + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests + ``` + . + And filter them similarly + . + ```markdown + > sudo ./deliveryoptimization-sdk-tests --gtest_filter=DownloadTests* + ``` + . + ## Support + . + The APT plugin component is currently in a **Public Preview** state. During this phase, it will be + supported for 90 days beyond the release date of a new release. At the end of the 90 day window, + we will not guarantee support for the previous version. Please plan to migrate to a newer release + within that 90-day window to avoid any disruptions. + . + ## Filing a Bug + . + Please file a [GitHub Issue](https://github.com/microsoft/do-client/issues) to ensure all issues are + tracked appropriately. + . + ## Build status + . + #### Ubuntu 18.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=45&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=46&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20x86-64%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=47&branchName=develop) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + #### Ubuntu 20.04 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + | arm64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + #### Debian 10 + . + | Architecture | Agent | SDK | Plugin | + |-----|--------|-----|--------| + | arm32 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Simple%20Client%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=25&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=33&branchName=develop) | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20Plugins%20ARM%20Build?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=31&branchName=develop) | + . + ### Windows 10/11 + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20Windows%2010%20x64?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=59&branchName=develop) | + . + ### MacOS + . + | Architecture | SDK | + |-----|--------| + | x86-64 | [![Build Status](https://deliveryoptimization.visualstudio.com/client/_apis/build/status/DO%20CPP-SDK%20MacOS%20X64?branchName=develop)](https://deliveryoptimization.visualstudio.com/client/_build/latest?definitionId=60&branchName=develop) | + . + ## Contact + . + Directly contact us: +Homepage: https://github.com/microsoft/do-client +Depends: deliveryoptimization-agent, libc6 (>= 2.34), libgcc-s1 (>= 3.0), libstdc++6 (>= 11) +SHA256: a1c4362e631f6b6219fd0f405ecf802f507f6a991c84e0c315bd0e2a8c528021 +Size: 150198 +Filename: pool/main/libd/libdeliveryoptimization/libdeliveryoptimization_1.1.0_arm64.deb + +Package: moby-engine +Version: 26.1.5-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 76014 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 92e877a524aea04f5347206ded3fb5ca4411f82d9814d687564cfb93752b4a36 +Size: 23471156 +Filename: pool/main/m/moby-engine/moby-engine_26.1.5-ubuntu22.04u1_arm64.deb + +Package: moby-containerd +Version: 1.6.19+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 99013 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 36e3392b25288ff5c1fdeea9654b8be1ff422cc378b7a703cb10be7408aaaba0 +Size: 25082806 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.19+azure-ubuntu22.04u1_arm64.deb + +Package: aadsshlogin +Version: 1.0.022600002 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libcurl4, libuuid1, passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: 8d91e026be7211b5d47fe183edc32fa4d7abe496c48383447b6beab418bf8cbe +Size: 334754 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.022600002_arm64.deb + +Package: libmsquic +Version: 2.1.2 +Architecture: arm64 +Section: default +Priority: extra +Installed-Size: 16791 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 6cb7c4915ae3688b7981cfa4f6d82daf26a1245c59c1d275789a85b22e61da45 +Size: 4188074 +Filename: pool/main/libm/libmsquic/libmsquic_2.1.2_arm64.deb + +Package: moby-engine +Version: 24.0.7-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 70681 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 336b45e5630012a91b64650f73bf90c18697d20a267b219ec78eb38b68d7df1b +Size: 21353132 +Filename: pool/main/m/moby-engine/moby-engine_24.0.7-ubuntu22.04u1_arm64.deb + +Package: aziot-identity-service +Version: 1.4.4-1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 16025 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 3.3), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1) +SHA256: e3f398578fed8bc489df5ce67dedb1e641b922f9f62eb115b269d44cc54fac5a +Size: 3989710 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.4.4-1_arm64.deb + +Package: aadsshlogin +Version: 1.0.027890001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libc6 (>= 2.34), libcurl4 (>= 7.16.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 3.1~), libsemanage2 (>= 2.0.32), libssl3 (>= 3.0.0~~alpha1), libuuid1 (>= 2.16), passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: f6a46660eee6f8e93432cfea27ac63bd19a7464eedd2353c74a5da18ecd47e35 +Size: 335036 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.027890001_arm64.deb + +Package: moby-compose +Version: 2.24.6-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 58518 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 1d148af0361f420b90e045c056e0bec479174004debf505906b020bcedebcd9d +Size: 16293044 +Filename: pool/main/m/moby-compose/moby-compose_2.24.6-ubuntu22.04u1_arm64.deb + +Package: osconfig +Version: 1.0.5.2024032701 +Architecture: arm64 +Section: devel +Priority: optional +Installed-Size: 4247 +Maintainer: osconfigsupport@microsoft.com +Description: Azure OSConfig + Azure OSConfig is a modular security configuration stack for Linux Edge devices. OSConfig supports multi-authority device management over Azure and Azure Portal/CLI, GitOps, as well as local management. +Homepage: https://github.com/Azure/azure-osconfig/ +Suggests: aziot-identity-service (>= 1.2.0) +SHA256: 4f048b98fea92487c5b552fcd9094734cf453dbe11813bb5ebdfd0fe7195aa3d +Size: 1570954 +Filename: pool/main/o/osconfig/osconfig_1.0.5.2024032701_arm64.deb + +Package: moby-buildx +Version: 0.10.4+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 66863 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 29c458c330bbc4fa5372d868cfd6d8f301ecdf533146b5dd0ca22ca56465f58c +Size: 25243062 +Filename: pool/main/m/moby-buildx/moby-buildx_0.10.4+azure-ubuntu22.04u1_arm64.deb + +Package: libmsquic +Version: 2.2.4 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 12986 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 37d54f2846c64e7bfa05c088ac46105864f0ac7678d0f5cca1c7e84390a727c9 +Size: 3898032 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.4_arm64.deb + +Package: moby-engine +Version: 20.10.25+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 62093 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 20d44590e5e10d5fdbb945f3edc6fcf2291c27f0c561886c98e0a4840a5d6547 +Size: 14678540 +Filename: pool/main/m/moby-engine/moby-engine_20.10.25+azure-ubuntu22.04u1_arm64.deb + +Package: moby-containerd +Version: 1.6.36-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 102825 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 4f73ef2fde31c2af90aa6cd3190132c34d00ca00028826543c67d9de2c184ef7 +Size: 34517968 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.36-ubuntu22.04u1_arm64.deb + +Package: moby-buildx +Version: 0.16.1-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 77512 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 73960b6adfc3481592dc3e31dcd2691a67db6880a6e45a599d21eea3d1c31f01 +Size: 33669970 +Filename: pool/main/m/moby-buildx/moby-buildx_0.16.1-ubuntu22.04u1_arm64.deb + +Package: moby-containerd +Version: 1.5.16+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 86300 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 45a8b3753997fa00781d0d208d7350cd4a24ffe2d75590de5083a8f83aa735a4 +Size: 19892186 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.16+azure-ubuntu22.04u1_arm64.deb + +Package: moby-runc +Version: 1.1.13-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 13001 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: 219140e8f11bf75eb3c069485938e098182d06bd222de94ccfc08d90834d92de +Size: 6360510 +Filename: pool/main/m/moby-runc/moby-runc_1.1.13-ubuntu22.04u1_arm64.deb + +Package: libmsquic +Version: 2.4.4 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 13826 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 704b862b6ba33e8dd41c9179053efcaeca3ac205e8b6b5cb65f09a8085bb0f87 +Size: 4148962 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.4_arm64.deb + +Package: moby-buildx +Version: 0.11.2-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 73096 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: c091a8e4ba4ea3824dec79c55fd080ce3eb8e573e40605b900ce94b7939d62ab +Size: 31736472 +Filename: pool/main/m/moby-buildx/moby-buildx_0.11.2-ubuntu22.04u2_arm64.deb + +Package: moby-cli +Version: 20.10.18+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 48298 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 883b111009690249193ffb80d99f86e301ef1b8d29669cb9ff087293c79d4274 +Size: 9717962 +Filename: pool/main/m/moby-cli/moby-cli_20.10.18+azure-ubuntu22.04u1_arm64.deb + +Package: virtualclient +Version: 1.14.36 +Architecture: arm64 +Maintainer: Virtual Client Team +Description: VirtualClient, the open sourced workload automation. +SHA256: f3fe316224aee20250214c881b76d76901ab61b723bf4cc6c6b981960f8bac37 +Size: 45198084 +Filename: pool/main/v/virtualclient/virtualclient_1.14.36_arm64.deb + +Package: aztfy +Version: 0.10.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 53504 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfy +Vendor: none +License: MPL-2.0 +SHA256: 18f652a85ac5e51ba9181f845dc47225af17ba186cb2910904aedb5593a095fe +Size: 8621742 +Filename: pool/main/a/aztfy/aztfy-0.10.0-1-arm64.deb + +Package: azapi2azurerm +Version: 0.6.0 +Architecture: arm64 +Section: default +Priority: extra +Installed-Size: 19776 +Maintainer: henglu +Description: A tool to migrate terraform resources from azapi to azurerm +Homepage: https://github.com/Azure/azapi2azurerm +Vendor: none +License: MPL-2.0 +SHA256: ed23b1a00c87d0c675a82199bb7ffcbb81e4f31911cd5bb7b33af7365dec283c +Size: 6070804 +Filename: pool/main/a/azapi2azurerm/azapi2azurerm-0.6.0-1-arm64.deb + +Package: moby-engine +Version: 20.10.15+azure-2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 72068 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: f2a3d5810cd6d6ee7f57dab5899dcd7352c359ef058f3455df2cbfd09d6f08ea +Size: 15855388 +Filename: pool/main/m/moby-engine/moby-engine_20.10.15+azure-2_arm64.deb + +Package: msodbcsql18 +Version: 18.1.1.1-1 +Architecture: arm64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: 8ae8ba75427199ca09d9dbf826f42a1019eaefb9c3ec4dcd6673353cf7b2f07e +Size: 685728 +Filename: pool/main/m/msodbcsql18/msodbcsql18_18.1.1.1-1_arm64.deb + +Package: moby-compose +Version: 2.29.0-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 60063 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 7dc1b3b4d0ec9a6670218684098b963c07de24c05dd1e81d524cf7941fc4eff5 +Size: 16823528 +Filename: pool/main/m/moby-compose/moby-compose_2.29.0-ubuntu22.04u1_arm64.deb + +Package: moby-engine +Version: 20.10.17+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 72658 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: a4378d025b5799b5a716874352c6ecf2213f486964156551e85b204e0db066aa +Size: 15386270 +Filename: pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu22.04u1_arm64.deb + +Package: moby-runc +Version: 1.1.4+azure-ubuntu22.04u5 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 12792 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: 6abf2f394de6466b661e36c3b7275a9f3a0b9bdc84963dcefa524a51aaf80581 +Size: 5615436 +Filename: pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu22.04u5_arm64.deb + +Package: moby-compose +Version: 2.6.0+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 25552 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: f234ca9483ff672bf46b923e0527daff020d74155aa88fd55e9d06f9cc4a517f +Size: 6437738 +Filename: pool/main/m/moby-compose/moby-compose_2.6.0+azure-ubuntu22.04u1_arm64.deb + +Package: aadsshlogin-selinux +Version: 1.0.026840001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.3-1), selinux-utils, selinux-policy-default +SHA256: 61894174c98a560856158352c2451361db4feec46078331df6accc68029caa20 +Size: 2218 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.026840001_arm64.deb + +Package: azapi2azurerm +Version: 1.4.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 20288 +Maintainer: henglu +Description: A tool to migrate terraform resources from azapi to azurerm +Homepage: https://github.com/Azure/azapi2azurerm +Vendor: none +License: MPL-2.0 +SHA256: 1f24387a9ca7a1b30129e05c8793b8179b9b034d63b6c3d1b07180f5c13cb57f +Size: 6109412 +Filename: pool/main/a/azapi2azurerm/azapi2azurerm-1.4.0-1-arm64.deb + +Package: moby-engine +Version: 20.10.18+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 61556 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: b175ac7d2ed723725946197f9af7ba1e68e35172238f804176bdfc56179b1555 +Size: 14513238 +Filename: pool/main/m/moby-engine/moby-engine_20.10.18+azure-ubuntu22.04u1_arm64.deb + +Package: moby-buildx +Version: 0.9.1+azure-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 63763 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 783a6db269274a68f62f3a844b08a5fdd466969348d235e60929dabeca57e6a8 +Size: 23951322 +Filename: pool/main/m/moby-buildx/moby-buildx_0.9.1+azure-ubuntu22.04u2_arm64.deb + +Package: aziot-identity-service +Version: 1.4.6-1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 16019 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1) +SHA256: f0f0d104e82940fd05f4856aea04c73d70e1521063b9959bfe56607eeda1e6d9 +Size: 3958690 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.4.6-1_arm64.deb + +Package: aadsshlogin-selinux +Version: 1.0.027980001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.3-1), selinux-utils, selinux-policy-default +SHA256: fb5de8a47a2735fe037be4262eac1460f40f1fe26c93a19d60919d68de8e160d +Size: 2220 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.027980001_arm64.deb + +Package: libmsquic +Version: 2.1.7 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 16831 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 6c9bd7d78a546d24be0b2c3a41f7112a399d10f26e858fe80bdcc94e936518e8 +Size: 4195750 +Filename: pool/main/libm/libmsquic/libmsquic_2.1.7_arm64.deb + +Package: moby-compose +Version: 2.20.2+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 56705 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 172ef6a373ccd87e14c74d8438a7656b1d06435cd25858fc5fa966269e2a680b +Size: 11809092 +Filename: pool/main/m/moby-compose/moby-compose_2.20.2+azure-ubuntu22.04u1_arm64.deb + +Package: aziot-edge +Version: 1.5.7-1 +Architecture: arm64 +Section: admin +Priority: extra +Installed-Size: 14532 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, psmisc, sed, aziot-identity-service (= 1.5.1-1) +SHA256: 4ef96d7cc2898f4a3c8aba71d29903c288f405000ad524613ee0d345307a7207 +Size: 3603328 +Filename: pool/main/a/aziot-edge/aziot-edge_1.5.7-1_arm64.deb + +Package: blobfuse2 +Version: 2.3.0~preview.1 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 24307 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: 24527ed2fd289897178bafcc241d2e95a3c9a97fcf0e1ea39acd1f23f37517be +Size: 12482502 +Filename: pool/main/b/blobfuse2/blobfuse2_2.3.0~preview.1_arm64.deb + +Package: libmsquic +Version: 2.3.5 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 13475 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 8a1c72ae67b3316cadb9a5b2cee5f14f55d8a489cf45a39d058ca15858822551 +Size: 4046576 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.5_arm64.deb + +Package: msopenjdk-21 +Version: 21.0.1-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 323979 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 21 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: d806e2605f5cf0ffce8a99c1f050b6c01661bddd74960c548d29ceb92cbbe33f +Size: 167754706 +Filename: pool/main/m/msopenjdk-21/msopenjdk-21_21.0.1-1_arm64.deb + +Package: msodbcsql18 +Version: 18.3.1.1-1 +Architecture: arm64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: 4b1d750689bc8d31349664edda21973951ea3314e799dea8c605d65cd563df9b +Size: 689790 +Filename: pool/main/m/msodbcsql18/msodbcsql18_18.3.1.1-1_arm64.deb + +Package: moby-buildx +Version: 0.10.1+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 66675 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 394d311bfd658b575f2e57d8e32b389d09a8c935067e3a9c50a6eb5171b602ce +Size: 25020138 +Filename: pool/main/m/moby-buildx/moby-buildx_0.10.1+azure-ubuntu22.04u1_arm64.deb + +Package: moby-runc +Version: 1.0.3+azure-1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 14344 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.4.1) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: ca5637145ff5de03a1fc130d2dfeddedb5eb995e82f864cc35ae46fe1b284d47 +Size: 5337992 +Filename: pool/main/m/moby-runc/moby-runc_1.0.3+azure-1_arm64.deb + +Package: aadsshlogin-selinux +Version: 1.0.022300001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.3-1), selinux-utils, selinux-policy-default +SHA256: ccc5ff76999eb7f64e3b33d67f30f1900268404dedb727697e377119ed42b816 +Size: 2220 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.022300001_arm64.deb + +Package: moby-buildx +Version: 0.17.0-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 77535 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: c45a539c7c825d079f35755822744ec9131a3ef0d4f9eadce1ab5462b2a738c4 +Size: 33666832 +Filename: pool/main/m/moby-buildx/moby-buildx_0.17.0-ubuntu22.04u1_arm64.deb + +Package: msopenjdk-11 +Version: 11.0.20-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 317523 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 11 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: ca64e84ac7086d179880d3a62d1d91743f8d0e5ba9c15235811a20aed196c5a0 +Size: 164964162 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.20-1_arm64.deb + +Package: moby-cli +Version: 26.1.2-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 37519 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: f49e14f55694eed1dc9c913ed4b8834c6a73cfc655929c5f66d235ceb27a6495 +Size: 15917260 +Filename: pool/main/m/moby-cli/moby-cli_26.1.2-ubuntu22.04u1_arm64.deb + +Package: msopenjdk-11 +Version: 11.0.16-1 +Architecture: arm64 +Section: java +Priority: extra +Installed-Size: 316672 +Maintainer: Microsoft +Description: OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: fonts-dejavu, libx11-6, libxext6, libxi6, libxrender1, libxtst6, libasound2, libfontconfig1, libfreetype6 +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: 9b6c37bd955365bf66f435b01acb05a94e2e819f84805065a949a031bf03edc4 +Size: 192188420 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.16-1_arm64.deb + +Package: aziot-identity-service +Version: 1.5.2-1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 14587 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1), psmisc +SHA256: d288072c924b4e16421c793588ee124d8fd9b312244ceb3383d8f3d93860f2e0 +Size: 3637408 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.5.2-1_arm64.deb + +Package: moby-compose +Version: 2.16.0+azure-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 44688 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 46cab567fc2a6a7be17ff9cf0fcbb57ee1de882fe53499c59573cc08ba4c2669 +Size: 10014430 +Filename: pool/main/m/moby-compose/moby-compose_2.16.0+azure-ubuntu22.04u2_arm64.deb + +Package: msopenjdk-17 +Version: 17.0.6-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 299063 +Maintainer: Microsoft +Description: OpenJDK Development Kit 17 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: fonts-dejavu, libx11-6, libxext6, libxi6, libxrender1, libxtst6, libasound2, libfontconfig1, libfreetype6 +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java12-sdk, java13-sdk, java14-sdk, java15-sdk, java16-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java12-sdk-headless, java13-sdk-headless, java14-sdk-headless, java15-sdk-headless, java16-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java12-runtime, java13-runtime, java14-runtime, java15-runtime, java16-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java12-runtime-headless, java13-runtime-headless, java14-runtime-headless, java15-runtime-headless, java16-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: 83ead36c2a8f5b5818d7be651c1722c4a7501c8da397c295f7396af82d7a65eb +Size: 182295610 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.6-1_arm64.deb + +Package: moby-cli +Version: 24.0.9-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 33938 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: e48e0872d556ddbfeceeb01d21a7d5a96bd395bfdbbfc3e7dcd5e793aafe221f +Size: 14588368 +Filename: pool/main/m/moby-cli/moby-cli_24.0.9-ubuntu22.04u2_arm64.deb + +Package: libmsquic +Version: 2.1.8 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 16842 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl1.1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: e0468c3a09ad4b11dd8c01a635c636fa412d4e3b7de9dd07b5a24d94c3b2b2ac +Size: 4195916 +Filename: pool/main/libm/libmsquic/libmsquic_2.1.8_arm64.deb + +Package: moby-cli +Version: 20.10.25+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 48445 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 42a376826f99c61cc0540d10ca10f3f7b095299e2feda4205c120620f4cb4550 +Size: 9748860 +Filename: pool/main/m/moby-cli/moby-cli_20.10.25+azure-ubuntu22.04u1_arm64.deb + +Package: msopenjdk-17 +Version: 17.0.8-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 299912 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 17 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: a93e1d48e9d8f1d96f8a1e60f2e01dc7d211fbf22846fb9e4abf4a18d41f4023 +Size: 157107566 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8-1_arm64.deb + +Package: moby-compose +Version: 2.23.3-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 56911 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: c701a8889b87a65331fe70cb71553e92e0c935ee40e3093b23b069486d9c163b +Size: 15980860 +Filename: pool/main/m/moby-compose/moby-compose_2.23.3-ubuntu22.04u1_arm64.deb + +Package: moby-compose +Version: 2.10.2+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 25360 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: f716fc5da2dab4e38503dfb2267d536f6edf0a7f6112cafe1b653d9615386418 +Size: 6376864 +Filename: pool/main/m/moby-compose/moby-compose_2.10.2+azure-ubuntu22.04u1_arm64.deb + +Package: azapi2azurerm +Version: 1.3.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 20096 +Maintainer: henglu +Description: A tool to migrate terraform resources from azapi to azurerm +Homepage: https://github.com/Azure/azapi2azurerm +Vendor: none +License: MPL-2.0 +SHA256: 471d008646279abf8fede92740cb017a3cc04a28cf5e93937a27239138760c0d +Size: 6094862 +Filename: pool/main/a/azapi2azurerm/azapi2azurerm-1.3.0-1-arm64.deb + +Package: moby-buildx +Version: 0.14.1-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 77070 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: be0dba6185ba88de4a41a7bd7ee98c7f5268272f000fc639258da2ab4cf09b65 +Size: 33391894 +Filename: pool/main/m/moby-buildx/moby-buildx_0.14.1-ubuntu22.04u1_arm64.deb + +Package: moby-compose +Version: 2.29.4-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 60128 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 1fa5c3b9cbf4a6750c0b1fea798c0ed9679ced837168d7cbc123724088f0e556 +Size: 16839468 +Filename: pool/main/m/moby-compose/moby-compose_2.29.4-ubuntu22.04u1_arm64.deb + +Package: msopenjdk-17 +Version: 17.0.8-2 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 300073 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 17 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: b69009742bdfa3d4b95704d98fd13c7ae84623b40d1aa8fedef84941ae631971 +Size: 157218798 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.8-2_arm64.deb + +Package: mssql-tools18 +Version: 18.4.1.1-1 +Architecture: arm64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL Tools Team +Description: Tools for Microsoft(R) SQL Server(R) + This package provides tools for Microsoft(R) SQL Server(R). +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), msodbcsql18 (>= 18.0.0.0) +SHA256: a85d4ee4107b1479a5a54bc45f8bc1a1c90bf2ba1e086b1c6640b22527aa1316 +Size: 207882 +Filename: pool/main/m/mssql-tools18/mssql-tools18_18.4.1.1-1_arm64.deb + +Package: moby-containerd +Version: 1.5.11+azure-2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 98263 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 32d0fe377a762bd5cb77d032259d2ec512309fe7483effb5dbc83e7b7bd051f0 +Size: 21049482 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.11+azure-2_arm64.deb + +Package: moby-compose +Version: 2.20.0+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 56700 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 64816473756cfee79523f45d3f7b8c69ef87c8f0326fedc4e73dca4846f04131 +Size: 11815434 +Filename: pool/main/m/moby-compose/moby-compose_2.20.0+azure-ubuntu22.04u1_arm64.deb + +Package: moby-compose +Version: 2.11.0+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 42128 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 98d280712afded90a206eeb06f1904ba84b242e69048b8da46adb01ad3ae0837 +Size: 9416826 +Filename: pool/main/m/moby-compose/moby-compose_2.11.0+azure-ubuntu22.04u1_arm64.deb + +Package: libmsquic +Version: 2.2.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 17493 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl1.1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 3324823636dcfd893973e51f680e49761c54a456c05787f050e5283cef39b3c9 +Size: 4412908 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.0_arm64.deb + +Package: moby-containerd +Version: 1.6.21+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 99170 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 134b9f0c12bb2187c9d970f74b64048dc162e91230baf98c4c7516959635e8b0 +Size: 25136778 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.21+azure-ubuntu22.04u1_arm64.deb + +Package: moby-engine +Version: 20.10.24+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 62087 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 87adab7d0119308cdd7225dcc118612ac692b02c5cd1e169cb75d9120014c1d4 +Size: 14693024 +Filename: pool/main/m/moby-engine/moby-engine_20.10.24+azure-ubuntu22.04u1_arm64.deb + +Package: aziot-identity-service +Version: 1.4.7-1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 16027 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1) +SHA256: 43ca97ce3f831d70504cd539a30edf6d694df6785bfd138d460e6e1c92222428 +Size: 3951938 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.4.7-1_arm64.deb + +Package: azureauth +Version: 0.8.2-7 +Architecture: arm64 +Section: misc +Priority: optional +Installed-Size: 80912 +Maintainer: ES365 Security Experience Team +Description: A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information. +SHA256: 1ee95f4dabc5df519d6dfde7f28de4f8c27b8652e581adcbf0d3d26f5ca96ed3 +Size: 20993482 +Filename: pool/main/a/azureauth/azureauth_0.8.2-7_arm64.deb + +Package: moby-containerd +Version: 1.6.17+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 98469 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: ecb0ffbf82b61daedb892db506098944201caa691a1bbe7959292945d7bfe319 +Size: 24782094 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.17+azure-ubuntu22.04u1_arm64.deb + +Package: aziot-identity-service +Version: 1.5.1-1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 14595 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1), psmisc +SHA256: 600e1ac342b0bea1e937cd2161f6dd707286cf5f6d5b27fec1023a266e28df7a +Size: 3639890 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.5.1-1_arm64.deb + +Package: libmsquic +Version: 2.4.1 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 13830 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 059233a515259f660cb5d1272beb065f7a45caad3ee83e3c0f7637987da1c51c +Size: 4145466 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.1_arm64.deb + +Package: moby-buildx +Version: 0.10.2+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 66664 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 0265935fbe73c10b9c0104280eb438c61fe47e48bbe58cfb9e8257214b3e7c20 +Size: 25023014 +Filename: pool/main/m/moby-buildx/moby-buildx_0.10.2+azure-ubuntu22.04u1_arm64.deb + +Package: moby-compose +Version: 2.29.2-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 60128 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 0f3b8b0c1c97a9d6025102566456fbb74f5c568d88c10c39d782465e1123be3e +Size: 16828246 +Filename: pool/main/m/moby-compose/moby-compose_2.29.2-ubuntu22.04u1_arm64.deb + +Package: libmsquic +Version: 2.2.7 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 12979 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: adc5ecbbe304fa3cb8ef0b0654cd0fc73123923db124d173ba9a90df253e1f89 +Size: 3900628 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.7_arm64.deb + +Package: moby-runc +Version: 1.1.7+azure-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 12816 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: 584c4da59ea0ec411139d446155ffbfee7f253cc333b245f41529778b89062a4 +Size: 5627762 +Filename: pool/main/m/moby-runc/moby-runc_1.1.7+azure-ubuntu22.04u2_arm64.deb + +Package: moby-cli +Version: 27.0.3-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 37592 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 9f81645c10cc911e907830f55eddb6d3ecc25317c8a8cfcd31619cb3cbf9390b +Size: 15948298 +Filename: pool/main/m/moby-cli/moby-cli_27.0.3-ubuntu22.04u1_arm64.deb + +Package: aztfexport +Version: 0.15.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 76480 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfexport +Vendor: none +License: MPL-2.0 +SHA256: 3221af8101a255f4a637e1d4418595fad919728d8da8f8f10f94648aecdacd32 +Size: 11919298 +Filename: pool/main/a/aztfexport/aztfexport_0.15.0_arm64.deb + +Package: aziot-identity-service +Version: 1.5.3-1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 14587 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1), psmisc +SHA256: fd3b561ca3b1b0234a0596d3f3470d18c546fc6e78d1add76ae5b2ef26eeda9d +Size: 3641020 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.5.3-1_arm64.deb + +Package: moby-containerd +Version: 1.5.13+azure-ubuntu22.04u2 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 84872 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 99c4159aeddcb6bbd46114ab33ed1075f08dfdd3e946bfb51145aee00fa0f719 +Size: 19533848 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.13+azure-ubuntu22.04u2_arm64.deb + +Package: aztfy +Version: 0.7.0 +Architecture: arm64 +Section: default +Priority: extra +Installed-Size: 39680 +Maintainer: magodo +Description: A tool to bring existing Azure resources under Terraform's management +Homepage: https://github.com/Azure/aztfy +Vendor: none +License: MPL-2.0 +SHA256: b8a54655afddc2c05f743f74fa6129a97851eea43586c6f50adacfbe9470d738 +Size: 7651390 +Filename: pool/main/a/aztfy/aztfy-0.7.0-1-arm64.deb + +Package: azureauth +Version: 0.8.6-1 +Architecture: arm64 +Section: misc +Priority: optional +Installed-Size: 80933 +Maintainer: ES365 Security Experience Team +Description: A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information. +SHA256: efd5207172da7a97eaea0250c375fe6c4cc1fbcf462527fbf5b726e5ab71f57a +Size: 20972854 +Filename: pool/main/a/azureauth/azureauth_0.8.6-1_arm64.deb + +Package: blobfuse2 +Version: 2.1.1 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 29314 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: f140c74f3988b2e989e37d8d0a32110c7c0ef7a56a3250b83cfa514d976ec60b +Size: 14193452 +Filename: pool/main/b/blobfuse2/blobfuse2_2.1.1_arm64.deb + +Package: moby-containerd +Version: 1.6.25-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 99967 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 6a2da26f14f1e93ae28876cd87bdb33d6f0f56f046e70d12c35b1d7d83872378 +Size: 33309938 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.25-ubuntu22.04u1_arm64.deb + +Package: libmsquic +Version: 2.3.1 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 13456 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 14c8053c1c5fcda12bd60e7be8b2015141af952598f24c9c27421c7f62d44179 +Size: 4041376 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.1_arm64.deb + +Package: moby-engine +Version: 27.0.3-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 75925 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: b36f600abe3f2ca69ce15165b0c6a353c5d4255e143dc7ecc4f95f5e3002899a +Size: 23502950 +Filename: pool/main/m/moby-engine/moby-engine_27.0.3-ubuntu22.04u1_arm64.deb + +Package: moby-compose +Version: 2.14.2+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 42512 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: ebd588df4d05fd663d6517ef4b48e67c12d4163f0cafc1b62f0852d43dde31f5 +Size: 9493826 +Filename: pool/main/m/moby-compose/moby-compose_2.14.2+azure-ubuntu22.04u1_arm64.deb + +Package: azcopy +Version: 10.26.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 32118 +Maintainer: Azcopy v-Team +Description: A command-line utility that is used to copy data to and from containers and file shares in Azure Storage accounts +Homepage: https://github.com/Azure/azure-storage-azcopy +Vendor: none +License: unknown +SHA256: 9407c54c6bf82a60b6b244bb1e640bcabcad451cfb4a81fd6c34d999d6822408 +Size: 15361080 +Filename: pool/main/a/azcopy/azcopy_10.26.0_arm64.deb + +Package: moby-compose +Version: 2.29.3-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 60128 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 7ae99215a71637f3926b2ae7ae055e7eb648b42415d3dcd5873c0cedfc108e72 +Size: 16840126 +Filename: pool/main/m/moby-compose/moby-compose_2.29.3-ubuntu22.04u1_arm64.deb + +Package: libmsquic +Version: 2.2.6 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 12986 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: f2e360af32f8257f385593f4aa5b5a7ed89f8bf936acfdffc999d3e35ea476e8 +Size: 3897190 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.6_arm64.deb + +Package: moby-compose +Version: 2.17.2+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 51048 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 1152c57bd46883f08bb3d8bce33537ace88eb4cfa8f353025018d5d528811ce0 +Size: 10768552 +Filename: pool/main/m/moby-compose/moby-compose_2.17.2+azure-ubuntu22.04u1_arm64.deb + +Package: msopenjdk-11 +Version: 11.0.16.1-1 +Architecture: arm64 +Section: java +Priority: extra +Installed-Size: 316673 +Maintainer: Microsoft +Description: OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: fonts-dejavu, libx11-6, libxext6, libxi6, libxrender1, libxtst6, libasound2, libfontconfig1, libfreetype6 +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: ff0374885c8a0a9d5fe14fe13a17dbac311eac1253a6a0d37afac1b758faa095 +Size: 192201636 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.16.1-1_arm64.deb + +Package: mssql-tools18 +Version: 18.2.1.1-1 +Architecture: arm64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL Tools Team +Description: Tools for Microsoft(R) SQL Server(R) + This package provides tools for Microsoft(R) SQL Server(R). +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), msodbcsql18 (>= 18.0.0.0) +SHA256: 399a1cd22c983e8e5ae88fff3156689985dcf9d62799718539f6e861448d4ec7 +Size: 207218 +Filename: pool/main/m/mssql-tools18/mssql-tools18_18.2.1.1-1_arm64.deb + +Package: msopenjdk-11 +Version: 11.0.19-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 317503 +Maintainer: Microsoft +Description: OpenJDK Development Kit 11 (JDK) with Hotspot by Microsoft +Homepage: https://www.microsoft.com +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: fonts-dejavu, libx11-6, libxext6, libxi6, libxrender1, libxtst6, libasound2, libfontconfig1, libfreetype6 +Provides: java-compiler, java-sdk, java-sdk-headless, java10-sdk, java11-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk, java8-sdk, java9-sdk, java10-sdk-headless, java11-sdk-headless, java2-sdk-headless, java5-sdk-headless, java6-sdk-headless, java7-sdk-headless, java8-sdk-headless, java9-sdk-headless, java-runtime, java-runtime-headless, java10-runtime, java11-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime, java8-runtime, java9-runtime, java10-runtime-headless, java11-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless, java8-runtime-headless, java9-runtime-headless +Vendor: Microsoft +License: GPL-2.0+CE +SHA256: 47c19f0b0bb059f31c73095396d34cff8f04440fe406ca1dafaccf83c8de658d +Size: 192661418 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.19-1_arm64.deb + +Package: libmsquic +Version: 2.4.3 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 13836 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 68fdc4e7e6381c8ddf14c9d9cfcbf14d1962c977285183c230b59a54c025c108 +Size: 4145412 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.3_arm64.deb + +Package: blobfuse2 +Version: 2.1.2 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 29360 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: 9c203c3ccc07455033a410a7ef6e1b582a859fe3dcaf1cf386f98dc544f53709 +Size: 14207686 +Filename: pool/main/b/blobfuse2/blobfuse2_2.1.2_arm64.deb + +Package: moby-containerd +Version: 1.6.33-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 102821 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: b2fafb40223ef760577544621cdcf7a424935ba959a3b9962639f8c87c86900c +Size: 34515330 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.33-ubuntu22.04u1_arm64.deb + +Package: aziot-edge +Version: 1.4.20-1 +Architecture: arm64 +Section: admin +Priority: extra +Installed-Size: 15590 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, aziot-identity-service (= 1.4.6-1), sed +SHA256: e369539d1bcf288416676e77a993fb04ab85275b1fcedb3402f5b06922a2ccc5 +Size: 3670936 +Filename: pool/main/a/aziot-edge/aziot-edge_1.4.20-1_arm64.deb + +Package: moby-containerd +Version: 1.6.23+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 99519 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 46effdfa8c83ec37fce8794c18e322658a41161dde67686a49cf3abe6336ae22 +Size: 25204314 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.23+azure-ubuntu22.04u1_arm64.deb + +Package: aziot-edge +Version: 1.5.0-1 +Architecture: arm64 +Section: admin +Priority: extra +Installed-Size: 14532 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, psmisc, sed, aziot-identity-service (= 1.5.0-1) +SHA256: 87667060782840f131e28da138a2f15bd8e1c98faa6e29de17d243721516dc04 +Size: 3603316 +Filename: pool/main/a/aziot-edge/aziot-edge_1.5.0-1_arm64.deb + +Package: moby-containerd +Version: 1.6.28-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 102158 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: c1fa0054f6034063f99e4b0e2135da2ec30422c3a8cc3959ab5ca03cbba51e53 +Size: 34224672 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.28-ubuntu22.04u1_arm64.deb + +Package: aziot-identity-service +Version: 1.4.9-1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 16323 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.34), libgcc-s1 (>= 4.2), libssl3 (>= 3.0.0~~alpha1), libtss2-esys-3.0.2-0 (>= 2.3.1), libtss2-mu0 (>= 3.0.1), libtss2-rc0 (>= 3.0.1), libtss2-tctildr0 (>= 3.0.1), psmisc +SHA256: 40fec06671cad71a9003abc0fb91dae0449003e2bb946625abf6fbb999002aac +Size: 4058624 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.4.9-1_arm64.deb + +Package: moby-engine +Version: 20.10.23+azure-ubuntu22.04u3 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 62087 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: d2d12c7859d2ae545ba67946a05a9338d2850f2f8b5d842cfe40d7821cc5cfc8 +Size: 14670564 +Filename: pool/main/m/moby-engine/moby-engine_20.10.23+azure-ubuntu22.04u3_arm64.deb + +Package: moby-buildx +Version: 0.10.3+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 66872 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: a3d8fb5659aad7db544b13a9455462f63594375b92e7b2ce265a3f12a9f7a1f8 +Size: 25247764 +Filename: pool/main/m/moby-buildx/moby-buildx_0.10.3+azure-ubuntu22.04u1_arm64.deb + +Package: moby-cli +Version: 20.10.14+azure-1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 57106 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 9dd8de951504031911f47d28aad033aabcec38b961fb292e1e7218f103b7020d +Size: 10815006 +Filename: pool/main/m/moby-cli/moby-cli_20.10.14+azure-1_arm64.deb + +Package: msopenjdk-17 +Version: 17.0.12-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 326466 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 17 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 22cfddd5688ff3f81c88b39cc474908bb8376b123950b5b9af87b6db3b7387ea +Size: 163047258 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.12-1_arm64.deb + +Package: moby-compose +Version: 2.20.3+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 56709 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 17bae1875c01aaa59cb97d94872ddf339ac3e46260527597886b00a19dcc7c55 +Size: 11827696 +Filename: pool/main/m/moby-compose/moby-compose_2.20.3+azure-ubuntu22.04u1_arm64.deb + +Package: moby-compose +Version: 2.14.0+azure-ubuntu22.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 42512 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 6ecbf1a5105e2fd09a7ee86a5d8490d2235e2c6115dcfe112a2246dd3b9d61f8 +Size: 9492572 +Filename: pool/main/m/moby-compose/moby-compose_2.14.0+azure-ubuntu22.04u1_arm64.deb + +Package: aziot-edge +Version: 1.4.9-1 +Architecture: arm64 +Section: admin +Priority: extra +Installed-Size: 15593 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, aziot-identity-service (= 1.4.3-1), sed +SHA256: d13ce7664e9db319ba70d723069cf22da6fcaed325ece1e425a18566f8d17745 +Size: 3669756 +Filename: pool/main/a/aziot-edge/aziot-edge_1.4.9-1_arm64.deb + +Package: azureauth +Version: 0.8.2-8 +Architecture: arm64 +Section: misc +Priority: optional +Installed-Size: 80912 +Maintainer: ES365 Security Experience Team +Description: A CLI interface to MSAL authentication. Visit https://aka.ms/azureauth for more information. +SHA256: 6debe9afd6a09d2319df5a99b14680e2ab09e8724be5c995857d888c51a23383 +Size: 20996458 +Filename: pool/main/a/azureauth/azureauth_0.8.2-8_arm64.deb + diff --git a/apt_cache/lists/packages.microsoft.com_ubuntu_22.04_prod_dists_jammy_main_binary-armhf_Packages b/apt_cache/lists/packages.microsoft.com_ubuntu_22.04_prod_dists_jammy_main_binary-armhf_Packages new file mode 100644 index 000000000..6bd552b61 --- /dev/null +++ b/apt_cache/lists/packages.microsoft.com_ubuntu_22.04_prod_dists_jammy_main_binary-armhf_Packages @@ -0,0 +1,3851 @@ +Package: moby-containerd +Version: 1.6.26-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 99514 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 3359489e05c132b2237d4391ab1f31fa6e68e10232b9b953e25d26cdfcb99269 +Size: 35578624 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.26-ubuntu22.04u1_armhf.deb + +Package: libmsquic +Version: 2.3.6 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12474 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: c23c83d540a577a41fe49d00c01e0aedfaf1e91afbfd55205abda2486fe1cc25 +Size: 4012134 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.6_armhf.deb + +Package: moby-cli +Version: 24.0.8-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 32664 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 933bfe84ab467d8f9e32a0f8c1e742ad22783fce9d4cb3d7d6813f82ed988a2a +Size: 14784834 +Filename: pool/main/m/moby-cli/moby-cli_24.0.8-ubuntu22.04u1_armhf.deb + +Package: moby-containerd +Version: 1.5.14+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 82365 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 710970bb9953dcb4c5c16166e2ece8aad09d2244e7b624ac1413e9d9ddf7de5b +Size: 20175588 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.14+azure-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.10.1+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 22544 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: cc06a77886a5d53c63f027075728ae98afea2684d4a973e01c88a789be2c6907 +Size: 6383746 +Filename: pool/main/m/moby-compose/moby-compose_2.10.1+azure-ubuntu22.04u1_armhf.deb + +Package: moby-containerd +Version: 1.5.18+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 83730 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 79843ff1cb6a4217d7a410fdff1273d1876320a230ba6a2b50876f3d26164011 +Size: 20536076 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.18+azure-ubuntu22.04u1_armhf.deb + +Package: moby-engine +Version: 20.10.17+azure-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 59684 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 2023294d02968227c64807d18f8f110da90b015ac021b30bb5baca20ffc56732 +Size: 14799380 +Filename: pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu22.04u2_armhf.deb + +Package: libmsquic +Version: 2.2.2 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12005 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 0ca998cafb8a242af3ff8fb8565f5f2e5fafe22781faeb9f3ee58f5ee07e1bcf +Size: 3844456 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.2_armhf.deb + +Package: libmsquic +Version: 2.4.1 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12819 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 17796c439b02b7f77329019632be4d7b1eb79e81d4688bdd5292f30cb276a88a +Size: 4115976 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.1_armhf.deb + +Package: moby-compose +Version: 2.24.6-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 57163 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 2b45b10ea3add34ada0cabeee281506eecfa704cc4fb2ff9c98504a8adf85c9c +Size: 16776244 +Filename: pool/main/m/moby-compose/moby-compose_2.24.6-ubuntu22.04u1_armhf.deb + +Package: moby-cli +Version: 24.0.9-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 32665 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: af1dd9a35f0facfc120aceaf7d57da49437a3d42fb6c43e8a11b070d4c14890d +Size: 14786104 +Filename: pool/main/m/moby-cli/moby-cli_24.0.9-ubuntu22.04u1_armhf.deb + +Package: moby-cli +Version: 20.10.18+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 46796 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 28b62dd17919c5b8cdf539c3001245589ca4a3d8d5478c76ad1844bdf57403ad +Size: 10173736 +Filename: pool/main/m/moby-cli/moby-cli_20.10.18+azure-ubuntu22.04u1_armhf.deb + +Package: moby-containerd +Version: 1.6.18+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 96429 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: c56f6d4cd43c76f32c24d702a97586aa1c4f1134a0f8d5e441d7ed40ca713d77 +Size: 25838998 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.18+azure-ubuntu22.04u1_armhf.deb + +Package: moby-runc +Version: 1.1.5+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 12328 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: 0b99c64737b5292649d392fc746c24a8a445d2d00238e3676e421020c514c57f +Size: 5677324 +Filename: pool/main/m/moby-runc/moby-runc_1.1.5+azure-ubuntu22.04u1_armhf.deb + +Package: libmsquic +Version: 2.3.2 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12472 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: d3e2f66564e5c6e2b053188f03aa1895af122d75ab7b92c775cdd8c78911054b +Size: 4009566 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.2_armhf.deb + +Package: moby-buildx +Version: 0.11.2-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 71452 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 1e20ee9e4d35afdf25503718f2659be0b917476a639edc206f2d9eb0b6fc2a99 +Size: 32012216 +Filename: pool/main/m/moby-buildx/moby-buildx_0.11.2-ubuntu22.04u2_armhf.deb + +Package: moby-engine +Version: 20.10.25+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58870 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: db0e042463af505ecc059c0626e425cc933269e9a07cd0658bddabc4ea8fb55a +Size: 15162900 +Filename: pool/main/m/moby-engine/moby-engine_20.10.25+azure-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.10.2+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 22544 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 77bc52cdcfcde3d73bf5f36fc55aaab2b10332e2dd72739e1dbb01464a776ee2 +Size: 6383396 +Filename: pool/main/m/moby-compose/moby-compose_2.10.2+azure-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.14.1+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 41360 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: f3e6f135eb2dc690e580d4303f5b7e2f80da34362792eee17f7dcde615ea3a6d +Size: 9584636 +Filename: pool/main/m/moby-compose/moby-compose_2.14.1+azure-ubuntu22.04u1_armhf.deb + +Package: libmsquic +Version: 2.1.8 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 14250 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl1.1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 6e7b4c6634efe67e1f27e0599f056e012b9df23e48dbf7625973185a19f22f56 +Size: 4106586 +Filename: pool/main/libm/libmsquic/libmsquic_2.1.8_armhf.deb + +Package: moby-engine +Version: 20.10.23+azure-ubuntu22.04u3 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58861 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: e6ca3533ccc4f90a629983715292285c29bfa28885bbf653d18e0873d57d6fac +Size: 15163608 +Filename: pool/main/m/moby-engine/moby-engine_20.10.23+azure-ubuntu22.04u3_armhf.deb + +Package: moby-containerd +Version: 1.6.21+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 96578 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 23c7f9ec611ac8ab2cba3b63e300ff548d38b183c6f8bb8dad702efb09fa39b8 +Size: 25874806 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.21+azure-ubuntu22.04u1_armhf.deb + +Package: moby-buildx +Version: 0.11.1+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 71428 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 5324b2ed7422ee44ba3769db5b1a6284636df63892b5d7c23e17649ab006357c +Size: 27244526 +Filename: pool/main/m/moby-buildx/moby-buildx_0.11.1+azure-ubuntu22.04u1_armhf.deb + +Package: moby-buildx +Version: 0.8.2+azure-1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 57576 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 4da6f294b6bbae267e94315498b9fd4bf75e8b482a5001e3d1d7571a6f938d48 +Size: 22291198 +Filename: pool/main/m/moby-buildx/moby-buildx_0.8.2+azure-1_armhf.deb + +Package: libmsquic +Version: 2.2.7 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12013 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 00e1c2ab9759d925bb30e91ba90919e0304af38188b5beb7a38dcc69ea0273e6 +Size: 3851040 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.7_armhf.deb + +Package: moby-compose +Version: 2.9.0+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 22672 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: a853f170d94f15ecb0692eeee6f6c2df41f970732715f234c3f6e7d8041926cd +Size: 6392830 +Filename: pool/main/m/moby-compose/moby-compose_2.9.0+azure-ubuntu22.04u1_armhf.deb + +Package: moby-buildx +Version: 0.10.4+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 64495 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: fe48d47e0f338904dd11a1e1ac6cb485e77a018b0e9b51e054f41459cc11b27a +Size: 25049898 +Filename: pool/main/m/moby-buildx/moby-buildx_0.10.4+azure-ubuntu22.04u1_armhf.deb + +Package: moby-cli +Version: 23.0.7+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 32495 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 59012cc7ec25ab65bd72624467c46d98a3c89926427150420679e35b071f930e +Size: 12754778 +Filename: pool/main/m/moby-cli/moby-cli_23.0.7+azure-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.26.0-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58402 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: dccab791692bd00cbc50987fdf94eb12d1eb6fa524c1641be5acf801eabf23b5 +Size: 17194832 +Filename: pool/main/m/moby-compose/moby-compose_2.26.0-ubuntu22.04u1_armhf.deb + +Package: moby-cli +Version: 27.0.3-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 36037 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: f83973d85428ae7bc9cc7e22e5906435e5391376b8e5cc59261147e6e29302b5 +Size: 15972492 +Filename: pool/main/m/moby-cli/moby-cli_27.0.3-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.27.1-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58630 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 330ac22e970d5b6cbe2a10acdb77edd432c120dbb4fdcddb9dd541e825b46547 +Size: 17277542 +Filename: pool/main/m/moby-compose/moby-compose_2.27.1-ubuntu22.04u1_armhf.deb + +Package: libmsquic +Version: 2.2.6 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12012 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 9bafa0e8cf49a6a92697e11cf15dda0d97a9339b573405d65e80daf2d8049611 +Size: 3845058 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.6_armhf.deb + +Package: moby-buildx +Version: 0.15.1-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 74832 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: dd335f88a2ba5b9a03cd7fda7707b83fe0fe730eba3f6140dd30db89ea02eb01 +Size: 32993948 +Filename: pool/main/m/moby-buildx/moby-buildx_0.15.1-ubuntu22.04u1_armhf.deb + +Package: moby-cli +Version: 26.1.1-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 35957 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 4e081bf093ffae442aa7ef4a028c5ae46cf89e4bc5e5773989f9025118b53019 +Size: 15942820 +Filename: pool/main/m/moby-cli/moby-cli_26.1.1-ubuntu22.04u1_armhf.deb + +Package: libmsquic +Version: 2.2.1 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 11986 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 1c448b8f2b2532118f6de9bdace652a930619315d9aa2f2c42b88d2a957ff0cd +Size: 3839870 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.1_armhf.deb + +Package: moby-engine +Version: 26.1.2-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 71915 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 061e56fce539202c5dc3de2affb7de3cad230056dbf786803db9a6cc55c26a4d +Size: 24082576 +Filename: pool/main/m/moby-engine/moby-engine_26.1.2-ubuntu22.04u1_armhf.deb + +Package: moby-cli +Version: 20.10.21+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 46800 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: b26fe8b2d644abe3e9056113947f275c2ef077520b682adde67622d0ed75f0f5 +Size: 10172894 +Filename: pool/main/m/moby-cli/moby-cli_20.10.21+azure-ubuntu22.04u1_armhf.deb + +Package: moby-containerd +Version: 1.6.30-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 99689 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 8f44a3dffc33ac5536ea0bce63e2b0a2ba80e67c62d65c5d82ddef2b9b29552e +Size: 35401648 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.30-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.29.5-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58820 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: c3c2063630fcc10d58261e46c05ed813648ece20f5259a021505d63531ca5063 +Size: 17335366 +Filename: pool/main/m/moby-compose/moby-compose_2.29.5-ubuntu22.04u1_armhf.deb + +Package: moby-buildx +Version: 0.12.0-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 70717 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 9bde637b6b9391fd1e2a5bc5ca2290fb937e8762b41bb174633076cd6e8c81c7 +Size: 31288246 +Filename: pool/main/m/moby-buildx/moby-buildx_0.12.0-ubuntu22.04u1_armhf.deb + +Package: moby-buildx +Version: 0.9.1+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 59325 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 0ea13401f3494a4d88c6a7ed4cfc9a9455e9d66715fd9f1070ec6f79ba37df3b +Size: 22576862 +Filename: pool/main/m/moby-buildx/moby-buildx_0.9.1+azure-ubuntu22.04u1_armhf.deb + +Package: moby-containerd +Version: 1.6.17+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 95374 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 6791149b7d5193837dd0699d0b49b5712e25e2f741cbdb245724c975a4cf2911 +Size: 25445064 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.17+azure-ubuntu22.04u1_armhf.deb + +Package: moby-containerd +Version: 1.5.13+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 82131 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 54973db2e6c45fa42d205ce9afe39e057be19aa80feb85edbfdc86d66ea8154b +Size: 19865254 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.13+azure-ubuntu22.04u1_armhf.deb + +Package: moby-containerd +Version: 1.6.19+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 96429 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 586a60359896e3542d9d9b4990f46b6e5b939e2030ff608477abdde03db5e454 +Size: 25839406 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.19+azure-ubuntu22.04u1_armhf.deb + +Package: moby-buildx +Version: 0.11.2+azure-ubuntu22.04u3 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 71452 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 6510796357f81b5ae5d7425284547e2191b3a7794151543a1e7044e98ebf6111 +Size: 32012146 +Filename: pool/main/m/moby-buildx/moby-buildx_0.11.2+azure-ubuntu22.04u3_armhf.deb + +Package: moby-runc +Version: 1.1.4+azure-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 11569 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: 2a33097a869d85ee1d161e409a72ffce9a1e85de4bd6c9ada14aa4234b32c106 +Size: 5051958 +Filename: pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu22.04u2_armhf.deb + +Package: moby-cli +Version: 20.10.24+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 47072 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 153fe4bc15479cc0bc7f76e09528498894ee0ad133de740074dade8d1d82de68 +Size: 10257320 +Filename: pool/main/m/moby-cli/moby-cli_20.10.24+azure-ubuntu22.04u1_armhf.deb + +Package: libmsquic +Version: 2.1.2 +Architecture: armhf +Section: default +Priority: extra +Installed-Size: 14216 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 039d54ab5f689b700223b65a88f38f7d3ef4b73bc2090e2070b083cf4c92bede +Size: 4094068 +Filename: pool/main/libm/libmsquic/libmsquic_2.1.2_armhf.deb + +Package: moby-cli +Version: 20.10.25+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 47076 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 6143c493f65949e9b0179c67de84ec6a6c6e2a2ea983359f3c999a70bb11acba +Size: 10258110 +Filename: pool/main/m/moby-cli/moby-cli_20.10.25+azure-ubuntu22.04u1_armhf.deb + +Package: moby-cli +Version: 20.10.17+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 48578 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 0255d8bd1b85b481ab80b201e85b060b3835bad1f74d4db85e182c65c9fbb696 +Size: 10175936 +Filename: pool/main/m/moby-cli/moby-cli_20.10.17+azure-ubuntu22.04u1_armhf.deb + +Package: moby-runc +Version: 1.1.4+azure-ubuntu22.04u5 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 12328 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: c28e8cc379bce0c6548a6bdd65c761a337a5dfe0fbcad659eb050d0197575960 +Size: 5675748 +Filename: pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu22.04u5_armhf.deb + +Package: moby-containerd +Version: 1.6.34-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 100648 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 260613ffaabaf3b91ee93f04e241e0aef2a28231761bb451dd0cf1b91815f938 +Size: 35704274 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.34-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.14.2+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 41360 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: e31721cd083a70a73f2add10e1b8a03ecaf1abb95678c102672b02e74e72e661 +Size: 9588618 +Filename: pool/main/m/moby-compose/moby-compose_2.14.2+azure-ubuntu22.04u1_armhf.deb + +Package: moby-buildx +Version: 0.17.1-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 75117 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: c0357415ac8ab8548661767d3556e8368d10a62e778bbae0af84defa50747839 +Size: 33158742 +Filename: pool/main/m/moby-buildx/moby-buildx_0.17.1-ubuntu22.04u1_armhf.deb + +Package: moby-cli +Version: 23.0.6+azure-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 32490 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 5031533dae745709dba91db2439c1ee891aa21f74d0a25986ee6c567c52ee30e +Size: 12758674 +Filename: pool/main/m/moby-cli/moby-cli_23.0.6+azure-ubuntu22.04u2_armhf.deb + +Package: moby-compose +Version: 2.26.1-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58401 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 88b2913f2d1335210dcdd8d5d851c08bb0a86c1f7e0390038ab6deaab9c38b48 +Size: 17193590 +Filename: pool/main/m/moby-compose/moby-compose_2.26.1-ubuntu22.04u1_armhf.deb + +Package: moby-cli +Version: 20.10.20+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 46800 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: e0b929a0e37e7e6560ce26fd1b3128f4fc546eed2302785698255879c661716f +Size: 10172870 +Filename: pool/main/m/moby-cli/moby-cli_20.10.20+azure-ubuntu22.04u1_armhf.deb + +Package: moby-containerd +Version: 1.6.24-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 97903 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 3541752b54912a42980c696d23bb325049d407327ee8b5ee6c080d13fa2553c9 +Size: 34922082 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.24-ubuntu22.04u1_armhf.deb + +Package: moby-tini +Version: 0.19.0-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 397 +Maintainer: Microsoft +Description: tiny but valid init for containers + Tini is the simplest init you could think of. + . + All Tini does is spawn a single child (Tini is meant to be run in a + container), and wait for it to exit all the while reaping zombies and + performing signal forwarding. +Homepage: https://github.com/krallin/tini +SHA256: 4a3fbad6f2f491fb5d0a32da19a957119f0127ee91b037e234aa8e84fd9ac694 +Size: 239582 +Filename: pool/main/m/moby-tini/moby-tini_0.19.0-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.22.0-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 55558 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 4ffee1eedca79e08314a17e7c057415f0bc232402a36472c34abd8ce377aed0f +Size: 16430352 +Filename: pool/main/m/moby-compose/moby-compose_2.22.0-ubuntu22.04u1_armhf.deb + +Package: moby-cli +Version: 26.1.2-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 35962 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: b4baddac5d1ab14c20f5d77bfbec8e488a3ec756255649759f46b0b499e966e5 +Size: 15944688 +Filename: pool/main/m/moby-cli/moby-cli_26.1.2-ubuntu22.04u1_armhf.deb + +Package: moby-runc +Version: 1.0.3+azure-1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 12091 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.4.1) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: 39f8030c95847b97724a5739a1d52a7c6361d1427440094fe6446ffc75dbb479 +Size: 5142826 +Filename: pool/main/m/moby-runc/moby-runc_1.0.3+azure-1_armhf.deb + +Package: moby-compose +Version: 2.21.0-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 55670 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 482dd5314d2bc496a9c2231c7eebaa670ff77166b41dec518c9978dc3923a991 +Size: 16657258 +Filename: pool/main/m/moby-compose/moby-compose_2.21.0-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.11.2+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 40912 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 8aa3e89fad1977b8485bf90589e4538b2dcbbbdc01cad83b448747d8542c3306 +Size: 9496506 +Filename: pool/main/m/moby-compose/moby-compose_2.11.2+azure-ubuntu22.04u1_armhf.deb + +Package: moby-engine +Version: 26.1.3-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 71915 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 73c210823a59ba07842506e9c831ee31a0fb6eb560f87d8f770800d2a795b103 +Size: 24080918 +Filename: pool/main/m/moby-engine/moby-engine_26.1.3-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.16.0+azure-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 43408 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 51b9ca4aa546277e55e581119d6548c325c88c079b9790c481717f01eaf4f3f6 +Size: 10095672 +Filename: pool/main/m/moby-compose/moby-compose_2.16.0+azure-ubuntu22.04u2_armhf.deb + +Package: moby-compose +Version: 2.18.1+azure-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 49232 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 695d9271a3bc905749157f5972487619d01820b94e8a3439a90f5ca64ae59f14 +Size: 10911510 +Filename: pool/main/m/moby-compose/moby-compose_2.18.1+azure-ubuntu22.04u2_armhf.deb + +Package: moby-containerd +Version: 1.6.28-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 99771 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: bbf855dc2f6981425d2d270eb005d37095bce319e4859dcf7bbe31a0eadd3a7d +Size: 35664794 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.28-ubuntu22.04u1_armhf.deb + +Package: moby-containerd +Version: 1.6.22+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 96742 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: ec3251c1c9864092561f59e6dd2b2953b3911cf378fefebf527c22dfef70d769 +Size: 25948334 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.22+azure-ubuntu22.04u1_armhf.deb + +Package: moby-containerd +Version: 1.6.23+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 96746 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: de3ab80749ded15b8828c29a128374c0bfe4fdd04e5801a62d0a43796c2fa987 +Size: 25946234 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.23+azure-ubuntu22.04u1_armhf.deb + +Package: moby-cli +Version: 20.10.22+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 46800 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 7ac3a2bf1518016492bead5f744eb806fce01fb2db65c6ed8d3b2a4957068db0 +Size: 10165188 +Filename: pool/main/m/moby-cli/moby-cli_20.10.22+azure-ubuntu22.04u1_armhf.deb + +Package: moby-engine +Version: 27.0.3-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 71936 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 60706920357547545d0e4d807730cf7c7bb9d64ab9cee57bcd20c047ffce2691 +Size: 24126128 +Filename: pool/main/m/moby-engine/moby-engine_27.0.3-ubuntu22.04u1_armhf.deb + +Package: moby-buildx +Version: 0.10.0+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 63983 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: bd5985b56f63fd0cd4c5b14b084e3e9439636955ed63c0a4f76d8d412e9d4923 +Size: 24784486 +Filename: pool/main/m/moby-buildx/moby-buildx_0.10.0+azure-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.4.1+azure-1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 22736 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 2216d9893367018387bc8d4864260416624b7f8eae0eb700f17f4cc4b80b639d +Size: 6445060 +Filename: pool/main/m/moby-compose/moby-compose_2.4.1+azure-1_armhf.deb + +Package: moby-containerd +Version: 1.6.24-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 97903 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 6a85521c1db2781e6c5a7af8d897cdd4ff6061610bc3db4327a6c84007146d99 +Size: 34921978 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.24-ubuntu22.04u2_armhf.deb + +Package: libmsquic +Version: 2.3.0 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12471 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: fcea3afb3c27dc8cc05a46766e0eac656cf62265dcd4f4b544a97bc1275a36f2 +Size: 4009754 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.0_armhf.deb + +Package: moby-compose +Version: 2.16.0+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 43344 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: e6a0f27ecf05cfaadb4b8950d58b9dd1ac427b39b35444c7e15b13a310cc4514 +Size: 10096380 +Filename: pool/main/m/moby-compose/moby-compose_2.16.0+azure-ubuntu22.04u1_armhf.deb + +Package: moby-engine +Version: 26.1.4-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 71923 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: b15138d62ce47171b2d246c4f3dd9b1a6dfc0f541f896845e022301c4891da67 +Size: 24084816 +Filename: pool/main/m/moby-engine/moby-engine_26.1.4-ubuntu22.04u1_armhf.deb + +Package: moby-engine +Version: 26.1.1-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 71914 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: b5fe9f3dd1b79b7c70ef87986e1d743fae3515ae0b9248e72537c00945bade58 +Size: 24082188 +Filename: pool/main/m/moby-engine/moby-engine_26.1.1-ubuntu22.04u1_armhf.deb + +Package: libmsquic +Version: 2.3.3 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12472 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 9846ac61f294148c604ff0efc4c70783cb8fe7b300eda4d9443e5d958ce2d9cb +Size: 4009558 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.3_armhf.deb + +Package: moby-runc +Version: 1.1.13-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 12191 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: 83ccf5775d1a4731164a8faf7828ad33d674856d1274d9c2968bc523cb158b6a +Size: 6220360 +Filename: pool/main/m/moby-runc/moby-runc_1.1.13-ubuntu22.04u1_armhf.deb + +Package: moby-buildx +Version: 0.10.1+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 63986 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: d087de8e72d273950fc05ed95d5020c1a83282ea57c2423cc619f622a102cb60 +Size: 24783760 +Filename: pool/main/m/moby-buildx/moby-buildx_0.10.1+azure-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.6.1+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 22608 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 6bf1896943df0eb1fb37eaf1f895900331178632fe4177a61c283ad3ab3da116 +Size: 6378446 +Filename: pool/main/m/moby-compose/moby-compose_2.6.1+azure-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.23.2-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 55558 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: f5bee805f1b3c6ef17ce761c94f05cc459c265d84c422d41b786a470e677b5ba +Size: 16438422 +Filename: pool/main/m/moby-compose/moby-compose_2.23.2-ubuntu22.04u1_armhf.deb + +Package: moby-runc +Version: 1.1.14-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 12267 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: 6ed2a5b319cce342a229badccb18e7e34da66021fe3a98568fd91183aa593258 +Size: 6261228 +Filename: pool/main/m/moby-runc/moby-runc_1.1.14-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.14.0+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 41360 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: d53f0a1f081a3237e21720f2f83b22396c538adc1d0fb63082b91542f965a9c2 +Size: 9586500 +Filename: pool/main/m/moby-compose/moby-compose_2.14.0+azure-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.18.0+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 49232 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 253c0d1065b1d48bf7928b76e755138d21b9b86473d8477918b1826e18579c04 +Size: 10904890 +Filename: pool/main/m/moby-compose/moby-compose_2.18.0+azure-ubuntu22.04u1_armhf.deb + +Package: moby-cli +Version: 26.1.4-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 35970 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 95d1dd7a662abc525f41b2ead1581307daecbc7a8888923764c70b1c6cdcfc32 +Size: 15941758 +Filename: pool/main/m/moby-cli/moby-cli_26.1.4-ubuntu22.04u1_armhf.deb + +Package: libmsquic +Version: 2.1.3 +Architecture: armhf +Section: default +Priority: extra +Installed-Size: 14216 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 4c4ce955640c9462eeeb22cc762957c9af81dbd3317a0c5f75d734a95f8ec31b +Size: 4097480 +Filename: pool/main/libm/libmsquic/libmsquic_2.1.3_armhf.deb + +Package: moby-cli +Version: 20.10.18+azure-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 46800 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 46b03167badab347b1beb06189a891cd066169851db5ae5a34b2a6acca54b1c1 +Size: 10173974 +Filename: pool/main/m/moby-cli/moby-cli_20.10.18+azure-ubuntu22.04u2_armhf.deb + +Package: moby-containerd +Version: 1.6.36-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 100652 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 22d21d8a4b80058314a21c8aa0f1121450d36bc57e542a5bbba0387d58f8d77b +Size: 35708728 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.36-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.27.0-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58626 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 7e837c95f39591480fba670a1ac41240313ab5eaabe0affb20a9e066c7757a2f +Size: 17268414 +Filename: pool/main/m/moby-compose/moby-compose_2.27.0-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.17.2+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 49162 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 2ba1edd9dc0199c43ef2b107b0cefd859482e2f19415d8c26aebf974330efee8 +Size: 10888950 +Filename: pool/main/m/moby-compose/moby-compose_2.17.2+azure-ubuntu22.04u1_armhf.deb + +Package: libmsquic +Version: 2.2.0 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 14935 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl1.1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 72c8d0da8b2caa4b430ef5bc6ea192613f5f914818776fe76d3f86419c32acb3 +Size: 4345396 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.0_armhf.deb + +Package: moby-cli +Version: 20.10.21+azure-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 46804 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: f4330435716638dc6e2f958d7e928707e3515363b80c5d1b7affaa7d8b8056f6 +Size: 10172104 +Filename: pool/main/m/moby-cli/moby-cli_20.10.21+azure-ubuntu22.04u2_armhf.deb + +Package: moby-runc +Version: 1.1.7+azure-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 12355 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: 032491e5f3f6be2cda233dbaddd59187090646b721fb3f144313e13b4e42269d +Size: 5695030 +Filename: pool/main/m/moby-runc/moby-runc_1.1.7+azure-ubuntu22.04u2_armhf.deb + +Package: moby-buildx +Version: 0.10.3+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 64494 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: a919a2da5df3bf895ccd2a0cef51497a525a8df0ca7e42eaba832be0ec2fc696 +Size: 25046946 +Filename: pool/main/m/moby-buildx/moby-buildx_0.10.3+azure-ubuntu22.04u1_armhf.deb + +Package: libmsquic +Version: 2.1.7 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 14247 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 8634cf4aef54d080746920119e51dde35159dc1fae7fcc3a3bd41998132bde1e +Size: 4106652 +Filename: pool/main/libm/libmsquic/libmsquic_2.1.7_armhf.deb + +Package: moby-buildx +Version: 0.16.2-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 75086 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: ece938dbfaf2f06a7b1214dd7fad691247f36f965c6b2588180c2e5fd553eab1 +Size: 33097006 +Filename: pool/main/m/moby-buildx/moby-buildx_0.16.2-ubuntu22.04u1_armhf.deb + +Package: moby-containerd +Version: 1.6.32-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 100643 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 3ab317b5c9a4337bed287a7209d9bd4890e90fd9158996a128051c0d239a9b53 +Size: 35700748 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.32-ubuntu22.04u1_armhf.deb + +Package: moby-buildx +Version: 0.9.1+azure-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 61396 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: be6d5f1f81ddc1e185f33c618675580c87b59b065756811a5d3cbf2955b72050 +Size: 23753414 +Filename: pool/main/m/moby-buildx/moby-buildx_0.9.1+azure-ubuntu22.04u2_armhf.deb + +Package: moby-engine +Version: 20.10.16+azure-2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 59684 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 046f3641722a9512e8daf6a4e8986ac892ea0945c3dcc00d46fc7139355232d2 +Size: 14798820 +Filename: pool/main/m/moby-engine/moby-engine_20.10.16+azure-2_armhf.deb + +Package: moby-cli +Version: 20.10.25+azure-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 47080 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 4a7878a8757e36511dc0dfab33eef760334c6c1f548b782caae810ac123b2c02 +Size: 10257942 +Filename: pool/main/m/moby-cli/moby-cli_20.10.25+azure-ubuntu22.04u2_armhf.deb + +Package: moby-containerd +Version: 1.6.25-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 98049 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: e693311c7344a944a20f2c6f08940d7cf30db54dd6af165057768f0946979c99 +Size: 35000060 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.25-ubuntu22.04u1_armhf.deb + +Package: libmsquic +Version: 2.3.5 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12474 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: a6c08b87c4119f33499268fee7d6cc62613cc5c0451754250eb5b4ac7a4d50b5 +Size: 4012080 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.5_armhf.deb + +Package: moby-compose +Version: 2.6.0+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 22736 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 7ed7cf93f183764f85844808090a8ad0683a830bec79f869e39c2bb546c43585 +Size: 6453738 +Filename: pool/main/m/moby-compose/moby-compose_2.6.0+azure-ubuntu22.04u1_armhf.deb + +Package: moby-buildx +Version: 0.16.1-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 75086 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 578c8c5f4c59cee3bd04889b5fb87dbc5555f3bc1eadc9acdc740c5c323d7871 +Size: 33096844 +Filename: pool/main/m/moby-buildx/moby-buildx_0.16.1-ubuntu22.04u1_armhf.deb + +Package: moby-engine +Version: 24.0.9-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 63725 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: c6b1acad010078b3967039f24a61568484e311a29709d7d0b73135573b0535a5 +Size: 21832896 +Filename: pool/main/m/moby-engine/moby-engine_24.0.9-ubuntu22.04u2_armhf.deb + +Package: moby-containerd +Version: 1.5.13+azure-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 82361 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 56d7001b57851ec12f43b021a58c0b266c46ba5708289d061bdea6cdc0acb664 +Size: 20166778 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.13+azure-ubuntu22.04u2_armhf.deb + +Package: moby-buildx +Version: 0.11.2+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 71455 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: e2fdc29ba3bed0719791d9af662272cb9c0336df0b94e4fb3338eb2e04c17d1e +Size: 27260356 +Filename: pool/main/m/moby-buildx/moby-buildx_0.11.2+azure-ubuntu22.04u1_armhf.deb + +Package: moby-engine +Version: 24.0.9-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 67378 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: eb7b5b100bd32301efc7cec6d1ab43fe88dec484bb14150cba6a474ee47c9861 +Size: 22108868 +Filename: pool/main/m/moby-engine/moby-engine_24.0.9-ubuntu22.04u1_armhf.deb + +Package: moby-containerd +Version: 1.6.31-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 100332 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: ee47344daecca93a8d616970bf2d70924f75393c062fc024bf3d3aaea21c9626 +Size: 35569200 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.31-ubuntu22.04u1_armhf.deb + +Package: moby-containerd-shim-systemd +Version: 0.1.0~beta.1+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 21100 +Maintainer: Microsoft +Description: A containerd shim runtime that uses systemd to monitor runc containers +Homepage: https://github.com/cpuguy83/containerd-shim-systemd-v1 +Depends: libc6 (>= 2.34), systemd (>= 239), moby-containerd (>= 1.6) +Recommends: moby-runc +SHA256: 4b0aa43be53846797b010e628d7c117930b94aa46cb0e1e8ef425878e30db187 +Size: 9186226 +Filename: pool/main/m/moby-containerd-shim-systemd/moby-containerd-shim-systemd_0.1.0~beta.1+azure-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.29.2-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58820 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: cc79b6f2e4c8199f954dcaf1abe3758ecfa97b55d061d420516f4e93572dc692 +Size: 17325312 +Filename: pool/main/m/moby-compose/moby-compose_2.29.2-ubuntu22.04u1_armhf.deb + +Package: libmsquic +Version: 2.4.0 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12816 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 23143f6e338d1812a45d886c240cc7454304530dde0856c8b57bd55dcc3bb4d9 +Size: 4108482 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.0_armhf.deb + +Package: moby-containerd +Version: 1.6.33-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 100647 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 3d963aa57e3f0b88bc23a559f350101d0443beb2f38678748d0d2be8ac8e9bb7 +Size: 35699808 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.33-ubuntu22.04u1_armhf.deb + +Package: moby-cli +Version: 20.10.14+azure-1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 48158 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 48d9cdd089bdee9c020c0739a02c53f29b657dd6eec055278ebbc6d68c8a6975 +Size: 10543502 +Filename: pool/main/m/moby-cli/moby-cli_20.10.14+azure-1_armhf.deb + +Package: moby-compose +Version: 2.17.3+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 49163 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: bd3c637d1119eaba9d6edfca7ab14a8453498d9cf49e7a34c0f3e30f74c52197 +Size: 10889074 +Filename: pool/main/m/moby-compose/moby-compose_2.17.3+azure-ubuntu22.04u1_armhf.deb + +Package: moby-engine +Version: 26.1.5-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 71923 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: c2d476543d133c610ab741e97d095c0c791a3fe7e1e344bd1a7e29666969f676 +Size: 24087796 +Filename: pool/main/m/moby-engine/moby-engine_26.1.5-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.23.1-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 55557 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 93c252b07d45c033a576e477a4d1d84c942423af71f3a45484dec7c199317367 +Size: 16435848 +Filename: pool/main/m/moby-compose/moby-compose_2.23.1-ubuntu22.04u1_armhf.deb + +Package: moby-engine +Version: 20.10.20+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58394 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 6f662d4cada020b9a3cc7bfc62c6d2068a9c1a1e17e5058ce82b1409b8c9cb38 +Size: 15003316 +Filename: pool/main/m/moby-engine/moby-engine_20.10.20+azure-ubuntu22.04u1_armhf.deb + +Package: moby-cli +Version: 20.10.15+azure-1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 48158 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 937d24f70686953a680bba440d1783620a58b6df933f41cae3a13c118aebf760 +Size: 10544942 +Filename: pool/main/m/moby-cli/moby-cli_20.10.15+azure-1_armhf.deb + +Package: moby-containerd +Version: 1.6.30-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 99701 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: b234188bfc550fb44112f723c5fad57f1198f54204e1f3558c36a59bf9945f12 +Size: 35402058 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.30-ubuntu22.04u2_armhf.deb + +Package: moby-compose +Version: 2.15.1+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 41360 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: d6c8741a0fe4dc6efb2937d92671170cdf48021b994bfe6c780038bb18c08575 +Size: 9600190 +Filename: pool/main/m/moby-compose/moby-compose_2.15.1+azure-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.11.1+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 40912 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: ece58002b950b7b5a99cda00edb1cd9c64d38b6004eac1823b8fdf8339c8fb88 +Size: 9497394 +Filename: pool/main/m/moby-compose/moby-compose_2.11.1+azure-ubuntu22.04u1_armhf.deb + +Package: moby-containerd +Version: 1.5.11+azure-2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 83116 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 71fb58a5befaf125eca82604095b52e063de63553c792b536434d451f4a28dda +Size: 20340042 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.11+azure-2_armhf.deb + +Package: moby-containerd +Version: 1.6.35-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 100648 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 7abb3cfd48ffec1a60632d2f2dd938aa9f431aacddbefcefea9bf7d99585d157 +Size: 35706276 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.35-ubuntu22.04u1_armhf.deb + +Package: moby-runc +Version: 1.1.6+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 12350 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: 87b51583a91a54025d8d700ad0db55d811a1540bd05f8258aaabcf9ef3f7a656 +Size: 5703948 +Filename: pool/main/m/moby-runc/moby-runc_1.1.6+azure-ubuntu22.04u1_armhf.deb + +Package: moby-engine +Version: 20.10.17+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 59684 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: de5742ea95d917d2280e1d65a786ad58e0f22237821aef98be6024d22df07d39 +Size: 14801492 +Filename: pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu22.04u1_armhf.deb + +Package: moby-engine +Version: 20.10.15+azure-2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 59499 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 92d60e4057360bc6430a8a5970992b9ff9558af668e89632c95be06aed31d2d6 +Size: 15234294 +Filename: pool/main/m/moby-engine/moby-engine_20.10.15+azure-2_armhf.deb + +Package: moby-containerd +Version: 1.5.16+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 83722 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 2f3835d5e54e4685eb8783a56007c2b28cb65a51de8e4224c1fb1913e4395b67 +Size: 20533408 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.16+azure-ubuntu22.04u1_armhf.deb + +Package: moby-buildx +Version: 0.11.0+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 71426 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 8edbbae67713c6a3d493e5a207c6fb1cf6e32e0c9821999be1ad88a7b683b892 +Size: 27243728 +Filename: pool/main/m/moby-buildx/moby-buildx_0.11.0+azure-ubuntu22.04u1_armhf.deb + +Package: libmsquic +Version: 2.2.3 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12012 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 82c4d6c45dc32b730bcd1256ffb5b9373e2c54368978d10333c86b075177e473 +Size: 3846286 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.3_armhf.deb + +Package: moby-compose +Version: 2.20.2+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 55392 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 58d39afbb600d1e5c7aa469259b53b64d4812f87480b2dc40ccafe7a6d633156 +Size: 11949180 +Filename: pool/main/m/moby-compose/moby-compose_2.20.2+azure-ubuntu22.04u1_armhf.deb + +Package: moby-engine +Version: 24.0.8-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 67369 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 1db003a1c6873512774fffab7e280f112f16309aed8a63598f9b7de5c6e43042 +Size: 22107418 +Filename: pool/main/m/moby-engine/moby-engine_24.0.8-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.29.4-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58820 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 68aadb6ba074b316399fdd76532076149f2484a81946b3fa95775dd4642fae89 +Size: 17335352 +Filename: pool/main/m/moby-compose/moby-compose_2.29.4-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.10.0+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 22544 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 4c2a54baf35823dfe0fe2ba98347f3cbedf297a68ac3615c8a1553c48ccca3c5 +Size: 6384872 +Filename: pool/main/m/moby-compose/moby-compose_2.10.0+azure-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.23.0-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 55558 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 1d288f3082aac541c57cc03cadd5329c983bf6bc000b33a435a044d2767be7b6 +Size: 16437542 +Filename: pool/main/m/moby-compose/moby-compose_2.23.0-ubuntu22.04u1_armhf.deb + +Package: libmsquic +Version: 2.1.4 +Architecture: armhf +Section: default +Priority: extra +Installed-Size: 14216 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 34944c862984455277e1466ff13c35ec5d95535346153cc5295ac5b6032906e0 +Size: 4097394 +Filename: pool/main/libm/libmsquic/libmsquic_2.1.4_armhf.deb + +Package: moby-compose +Version: 2.24.5-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 57162 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 60060c908a0c8df03f309a283b46b049d742a6be74798fc84dd41bf4899042a4 +Size: 16764856 +Filename: pool/main/m/moby-compose/moby-compose_2.24.5-ubuntu22.04u1_armhf.deb + +Package: moby-buildx +Version: 0.10.4+azure-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 64498 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 0b2ca3d9c0819fa2498f03630a045e2df8c4c7ee09aec5d5fdb4602b4ed60d60 +Size: 25063440 +Filename: pool/main/m/moby-buildx/moby-buildx_0.10.4+azure-ubuntu22.04u2_armhf.deb + +Package: moby-engine +Version: 20.10.21+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58406 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 06164b1716e7483a7e630336235c8ae22e6a0e9550f8183cdf2dded69844d532 +Size: 15009030 +Filename: pool/main/m/moby-engine/moby-engine_20.10.21+azure-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.19.0+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 55385 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 001133f34dae6cbcdfbc25a0980cd57677550a22a46903b697777f45ca2eff2d +Size: 11959362 +Filename: pool/main/m/moby-compose/moby-compose_2.19.0+azure-ubuntu22.04u1_armhf.deb + +Package: moby-cli +Version: 24.0.7-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 32664 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 36105abcca4976c1787dba7cf3bcc2839e58b735a3a12736540e3546c860e1eb +Size: 14785466 +Filename: pool/main/m/moby-cli/moby-cli_24.0.7-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.20.0+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 55387 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: ceee785318da966814bb6760bf8f53b5f09023aee4e571f5ac02cd97ea682864 +Size: 11966044 +Filename: pool/main/m/moby-compose/moby-compose_2.20.0+azure-ubuntu22.04u1_armhf.deb + +Package: libmsquic +Version: 2.2.5 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12012 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 87f2f5c58dc9ef72703009c2289472b5d78bdb53c518d9c6019cd8a9a4e3e389 +Size: 3849860 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.5_armhf.deb + +Package: moby-cli +Version: 26.1.5-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 35970 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: ac09f0891e6ac8e689cc70e775cbd08bb56ff718b8439b2ee70d401ecd419ad2 +Size: 15944194 +Filename: pool/main/m/moby-cli/moby-cli_26.1.5-ubuntu22.04u1_armhf.deb + +Package: moby-runc +Version: 1.1.9-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 12340 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: 3ef48a9e08edd82099f48e2ce6c3ffedb78f2473ef974eb0fd91104e9ba92e0d +Size: 6385326 +Filename: pool/main/m/moby-runc/moby-runc_1.1.9-ubuntu22.04u1_armhf.deb + +Package: moby-engine +Version: 20.10.14+azure-1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 59490 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: a991c31284a8ed7a46636bdeb80614c183442a47e3291e8106bf20a720aec4bc +Size: 15229410 +Filename: pool/main/m/moby-engine/moby-engine_20.10.14+azure-1_armhf.deb + +Package: moby-compose +Version: 2.20.3+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 55460 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 32dadf3c97a22186bdae49e29e940dbcac604cb0bdf202e03c9abe619dd82f04 +Size: 11949388 +Filename: pool/main/m/moby-compose/moby-compose_2.20.3+azure-ubuntu22.04u1_armhf.deb + +Package: moby-buildx +Version: 0.17.0-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 75112 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 43bcc5dcda533c57e5988f1d388c2808a9d552083b60c3685ae05c0b3627d382 +Size: 33152922 +Filename: pool/main/m/moby-buildx/moby-buildx_0.17.0-ubuntu22.04u1_armhf.deb + +Package: libmsquic +Version: 2.4.4 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12835 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: a416ff0130058f17d583de5dc76ea7e28b95905f032b1b990322774e071fa18b +Size: 4119472 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.4_armhf.deb + +Package: moby-buildx +Version: 0.12.1-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 70689 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 6cf0e372d32dea3be5f2598fa64ef1047ee7ed7e01090b8f3459a130f4a0fc9c +Size: 31247056 +Filename: pool/main/m/moby-buildx/moby-buildx_0.12.1-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.18.1+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 49232 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 2f7a3a6fcd34a36cac0c52b4cadd7b8e9856f4869c5a583d216aa2267870508d +Size: 10904866 +Filename: pool/main/m/moby-compose/moby-compose_2.18.1+azure-ubuntu22.04u1_armhf.deb + +Package: moby-engine +Version: 24.0.7-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 67362 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 3a055a66b3c889a29f78c45a6bcf9eba20dd5a8fe313b082ae3f2b5b5c625740 +Size: 22102802 +Filename: pool/main/m/moby-engine/moby-engine_24.0.7-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.24.7-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 57229 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 15ecdf664f520f1b9dcd508169a69331ebe54559956a5b652ada55667cd81d3f +Size: 16784216 +Filename: pool/main/m/moby-compose/moby-compose_2.24.7-ubuntu22.04u1_armhf.deb + +Package: moby-buildx +Version: 0.15.0-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 74844 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: c9fac303b1b5bc0f4dba4f048c1e87474235262ed54710486e879fc24a31c212 +Size: 33005596 +Filename: pool/main/m/moby-buildx/moby-buildx_0.15.0-ubuntu22.04u1_armhf.deb + +Package: moby-buildx +Version: 0.9.0+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 59324 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: 842b5054f093f0a338fbd5537e8e06b7d47c65d8d8b3b47a5dd4df71bcaa9959 +Size: 22576670 +Filename: pool/main/m/moby-buildx/moby-buildx_0.9.0+azure-ubuntu22.04u1_armhf.deb + +Package: moby-runc +Version: 1.1.12-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 12003 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: 7fff7f615069a475ff9c823234cdb0a44ce75cd603590e6f30d233fe85366595 +Size: 6183868 +Filename: pool/main/m/moby-runc/moby-runc_1.1.12-ubuntu22.04u1_armhf.deb + +Package: moby-runc +Version: 1.1.8+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 12356 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: bedd0490b4e4808b132542388f30f821d103a52f3463328b0e6d4af869953595 +Size: 5697692 +Filename: pool/main/m/moby-runc/moby-runc_1.1.8+azure-ubuntu22.04u1_armhf.deb + +Package: moby-engine +Version: 20.10.17+azure-ubuntu22.04u3 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 59684 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 54a7f8f523c017c34c05c712301c02148909dab0d7fb9e5ecf81c032486e7882 +Size: 14799382 +Filename: pool/main/m/moby-engine/moby-engine_20.10.17+azure-ubuntu22.04u3_armhf.deb + +Package: libmsquic +Version: 2.3.1 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12471 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: ca79eca9d7a7428369712e860cc85093670cdea0c449a15ed7820c3ec5855008 +Size: 4009380 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.1_armhf.deb + +Package: moby-engine +Version: 20.10.25+azure-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58871 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: b296e77d90d7417b13dbb5645528d3c81489da52b88e926b44506abf34003dea +Size: 15164728 +Filename: pool/main/m/moby-engine/moby-engine_20.10.25+azure-ubuntu22.04u2_armhf.deb + +Package: moby-engine +Version: 20.10.21+azure-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58411 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 57433861cd543b654c06ea9c816da452d0c78035fb0da88a88dbf755ebdc2b9e +Size: 15007642 +Filename: pool/main/m/moby-engine/moby-engine_20.10.21+azure-ubuntu22.04u2_armhf.deb + +Package: moby-containerd +Version: 1.6.20+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 96574 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 4d40278529a41e199a5c959c9abe63a858c67ada8f536f950b8dfc8ba934956e +Size: 25867568 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.20+azure-ubuntu22.04u1_armhf.deb + +Package: libmsquic +Version: 2.4.3 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12834 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 7985a4f29de64c1a359a5f986d3531c0d5e94484927969cb63d9bb981717e281 +Size: 4114824 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.3_armhf.deb + +Package: moby-cli +Version: 20.10.23+azure-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 47072 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Suggests: moby-engine +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 8b2b81ec9d9e88615526d49dd495947309fb9e0e92a36442373bdb3c04ddea03 +Size: 10258106 +Filename: pool/main/m/moby-cli/moby-cli_20.10.23+azure-ubuntu22.04u2_armhf.deb + +Package: moby-buildx +Version: 0.13.1-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 74534 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 6c8a795c3584df068432ec30b6e28afc455b84381320da6cd2ae53f441e9881e +Size: 32712744 +Filename: pool/main/m/moby-buildx/moby-buildx_0.13.1-ubuntu22.04u1_armhf.deb + +Package: moby-containerd +Version: 1.6.27-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 99522 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 62fd82ee4c5e4b1c9e6e70252400bbbb8a37b27077bcf28325ef3417cb970a6e +Size: 35582236 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.27-ubuntu22.04u1_armhf.deb + +Package: moby-cli +Version: 26.1.3-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 35970 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 031671c12b77fcb5fcd09bef2bfceafde6efceaafba1018560a359d6887a17fa +Size: 15948286 +Filename: pool/main/m/moby-cli/moby-cli_26.1.3-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.11.0+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 40912 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: ae605cbb2f9466c8664450660f1305a83978dfaa9354140c21d044f4c8bf1642 +Size: 9496650 +Filename: pool/main/m/moby-compose/moby-compose_2.11.0+azure-ubuntu22.04u1_armhf.deb + +Package: moby-engine +Version: 20.10.18+azure-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58198 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 804b040630307fe85794933491a782cc0d38a0acd651756e6b20b9c79d43793c +Size: 14945548 +Filename: pool/main/m/moby-engine/moby-engine_20.10.18+azure-ubuntu22.04u2_armhf.deb + +Package: moby-cli +Version: 24.0.9-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 32687 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 0c38c1413fc8350b25e6b8c53600be054712509733205fc0766ced8b24460378 +Size: 14655836 +Filename: pool/main/m/moby-cli/moby-cli_24.0.9-ubuntu22.04u2_armhf.deb + +Package: libmsquic +Version: 2.2.4 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12012 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 821e2fc8b9b71e7bd53b5c86113660475f7697137e1b698d0bb5c7ae6abaab21 +Size: 3846100 +Filename: pool/main/libm/libmsquic/libmsquic_2.2.4_armhf.deb + +Package: moby-runc +Version: 1.1.11-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 11997 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: 79a20bf0f22af0e0b9802a2ebefd67cbd8af432b55d2e0504af4381c8402606c +Size: 6180704 +Filename: pool/main/m/moby-runc/moby-runc_1.1.11-ubuntu22.04u1_armhf.deb + +Package: moby-runc +Version: 1.1.4+azure-ubuntu22.04u3 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 11569 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: a544b55481b8aa7e9056531b2fa773568237c535267ee6be6f960a1ffb469dd5 +Size: 5052382 +Filename: pool/main/m/moby-runc/moby-runc_1.1.4+azure-ubuntu22.04u3_armhf.deb + +Package: moby-compose +Version: 2.29.3-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58820 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 7c205d78fe13596bf39e1121d890b3deaaae9d785c98cc930bd69d67dad11c36 +Size: 17336038 +Filename: pool/main/m/moby-compose/moby-compose_2.29.3-ubuntu22.04u1_armhf.deb + +Package: moby-runc +Version: 1.1.7+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 12351 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.34), libseccomp2 (>= 2.5.0) +Suggests: moby-containerd +Provides: runc +Replaces: runc +SHA256: 0a9872663363f780f416dd79c0b19a0fbf4b491b063f1607de10d24157b4ddfc +Size: 5694750 +Filename: pool/main/m/moby-runc/moby-runc_1.1.7+azure-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.29.1-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58819 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 2202a1f524f07bc9d14d3d8fd92d00c107669d1dc0f6a1b5b0ea0649dc00838f +Size: 17318954 +Filename: pool/main/m/moby-compose/moby-compose_2.29.1-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.28.1-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58685 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: e3a1c2f9d217ece95ef703b6eea0a8b8bae8e367b87f5cdb56d3e41eb71299ba +Size: 17290624 +Filename: pool/main/m/moby-compose/moby-compose_2.28.1-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.29.0-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58819 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 1d8996fa025ccf601105d1265ec5fe88e6b72d3e01d4ce1a59261abbce09213e +Size: 17314712 +Filename: pool/main/m/moby-compose/moby-compose_2.29.0-ubuntu22.04u1_armhf.deb + +Package: moby-buildx +Version: 0.14.1-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 74575 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 42a5700d436ecede83d6ee86eacf79ff6923ebea7b8a3a62378161d5e9f1f549 +Size: 32850668 +Filename: pool/main/m/moby-buildx/moby-buildx_0.14.1-ubuntu22.04u1_armhf.deb + +Package: moby-containerd +Version: 1.6.16+azure-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 95366 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 3b81c44a278b1e61ffa192f176a8dee70a9217b295f965f4dbc9e94fe56fef81 +Size: 25442234 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.16+azure-ubuntu22.04u2_armhf.deb + +Package: moby-engine +Version: 20.10.23+azure-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58810 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: b82bf3cd771a2341a05e5f1f9ad6e7cde6c6ecf182efc560102edd5f9149cc43 +Size: 15153912 +Filename: pool/main/m/moby-engine/moby-engine_20.10.23+azure-ubuntu22.04u2_armhf.deb + +Package: moby-compose +Version: 2.19.1+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 55385 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 043b1400c2f3a296f4e4808b5e0e14e0329521f816cb990f1d0345f15defdaf7 +Size: 11957258 +Filename: pool/main/m/moby-compose/moby-compose_2.19.1+azure-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.25.0-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 57294 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 160309e0353ffb544d04ff30f550b17bd541c3e03217ef7f6e8e0fb69d7d048a +Size: 16795204 +Filename: pool/main/m/moby-compose/moby-compose_2.25.0-ubuntu22.04u1_armhf.deb + +Package: moby-buildx +Version: 0.16.0-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 75086 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: f2ebbe0215c3bc739f8d0c17390fafd5a9d21697b83899efbd0fd81dd55ece0f +Size: 33097190 +Filename: pool/main/m/moby-buildx/moby-buildx_0.16.0-ubuntu22.04u1_armhf.deb + +Package: moby-containerd +Version: 1.5.11+azure-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 81879 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 4d6018958256be0ea1279114cd4dd294d4752ff69839028c090a11bea2584b4c +Size: 19773442 +Filename: pool/main/m/moby-containerd/moby-containerd_1.5.11+azure-ubuntu22.04u2_armhf.deb + +Package: moby-engine +Version: 20.10.18+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58194 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: bdbd7ff9119b0054a2407527ab93017deacd22b4ee86f86368fb51e58b368a34 +Size: 14946828 +Filename: pool/main/m/moby-engine/moby-engine_20.10.18+azure-ubuntu22.04u1_armhf.deb + +Package: moby-engine +Version: 23.0.6+azure-ubuntu22.04u2 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 65467 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: a80e11c8f3e7c6732acdd539ce27016fae416d946003f15a0a5ffa0c209f591a +Size: 16745138 +Filename: pool/main/m/moby-engine/moby-engine_23.0.6+azure-ubuntu22.04u2_armhf.deb + +Package: moby-buildx +Version: 0.13.0-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 74531 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 91aeb2f7fc6f1adc317b764a018ffe90d9e1787f8f97d042ff3a23287bbee38b +Size: 32708564 +Filename: pool/main/m/moby-buildx/moby-buildx_0.13.0-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.23.3-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 55694 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 0ee35c6b8d2bc6b795a239967f39f35fbe9d5f8c3ccb487867088eda212ee554 +Size: 16466698 +Filename: pool/main/m/moby-compose/moby-compose_2.23.3-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.28.0-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58685 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: a43b6d5d83ab26e20215d1e396b8eec1e17c30fab4b099ebded6dd9579789a32 +Size: 17290498 +Filename: pool/main/m/moby-compose/moby-compose_2.28.0-ubuntu22.04u1_armhf.deb + +Package: moby-engine +Version: 20.10.22+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58411 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: c940b7770620c3fe9f198e33a68e47df16b7ebd9d2482ce19fc1525fe1bf9de2 +Size: 15011466 +Filename: pool/main/m/moby-engine/moby-engine_20.10.22+azure-ubuntu22.04u1_armhf.deb + +Package: moby-engine +Version: 20.10.15+azure-1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 59499 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: f33bd5ad293f78c69f86e62547de861b7970bcf2b8ad1cf600bd3493df788984 +Size: 15234296 +Filename: pool/main/m/moby-engine/moby-engine_20.10.15+azure-1_armhf.deb + +Package: moby-buildx +Version: 0.14.0-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 74569 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 512375f8c5ace18c839696ed72a3eed0bf5eb4b3be9b4a21a9f8b51807518bb0 +Size: 32843550 +Filename: pool/main/m/moby-buildx/moby-buildx_0.14.0-ubuntu22.04u1_armhf.deb + +Package: libmsquic +Version: 2.3.4 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12472 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 7577d71d26079360d52d10b0f764d27760d25a36f74bcd0a0118f73f951604a2 +Size: 4009620 +Filename: pool/main/libm/libmsquic/libmsquic_2.3.4_armhf.deb + +Package: moby-engine +Version: 20.10.24+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58861 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 34829addda22011c666a7273bd347d5823b02873dea7a5f8ecec97e7463e7c09 +Size: 15163606 +Filename: pool/main/m/moby-engine/moby-engine_20.10.24+azure-ubuntu22.04u1_armhf.deb + +Package: moby-engine +Version: 23.0.7+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 65501 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Suggests: aufs-tools, cgroupfs-mount | cgroup-lite, git +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 67d95fb647d4e556f9608ef55e9b19b367b53d2e49d42a94877854d1991742b3 +Size: 16740972 +Filename: pool/main/m/moby-engine/moby-engine_23.0.7+azure-ubuntu22.04u1_armhf.deb + +Package: moby-containerd +Version: 1.6.21+azure-ubuntu22.04u3 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 96602 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 53b2610d8f0a1e8751686a1204e74ec7ed8f75c3faa00d5e2fc03bce2736f3e0 +Size: 25885902 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.21+azure-ubuntu22.04u3_armhf.deb + +Package: moby-buildx +Version: 0.10.2+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 63987 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-ce, docker-ee +Recommends: moby-cli +SHA256: ea9dd7004ed250840d264bb02f8e9990d3901d25c9f7b905e95966d23d736b87 +Size: 24785088 +Filename: pool/main/m/moby-buildx/moby-buildx_0.10.2+azure-ubuntu22.04u1_armhf.deb + +Package: moby-compose +Version: 2.12.2+azure-ubuntu22.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 41360 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: moby-cli +SHA256: 1eafd757cf0163529d8cc9da5cbe90f537ac401be9143ebbafac0825f848e2a9 +Size: 9596432 +Filename: pool/main/m/moby-compose/moby-compose_2.12.2+azure-ubuntu22.04u1_armhf.deb + diff --git a/assessment/index.html b/assessment/index.html new file mode 100644 index 000000000..60e6105b5 --- /dev/null +++ b/assessment/index.html @@ -0,0 +1 @@ +Assessment and Impact

Assessment and Impact

As scientists, engineers, and teachers, the HPC Carpentry community embraces feedback and the opportunity to learn and improve delivery of our lesson content. We lean on The Carpentries’ robust survey infrastructure to assess our learners backgrounds before, and outcomes following, each HPC Carpentry workshop.

Please visit the official website for more information about The Carpentries’ Assessment efforts.

diff --git a/assets/css/academicons.min.css b/assets/css/academicons.min.css new file mode 100755 index 000000000..09aada772 --- /dev/null +++ b/assets/css/academicons.min.css @@ -0,0 +1 @@ +.ai-ul,.fa-ul{list-style-type:none}.ai-li,.fa-li{top:.14285714em;text-align:center}.ai-fw,.ai-li,.fa-fw,.fa-li{text-align:center}.ai.fa-pull-left,.fa.fa-pull-left{margin-right:.3em}@font-face{font-family:Academicons;src:url(../fonts/academicons.eot?v=1.8.6);src:url(../fonts/academicons.eot?v=1.8.6) format('embedded-opentype'),url(../fonts/academicons.ttf?v=1.8.6) format('truetype'),url(../fonts/academicons.woff?v=1.8.6) format('woff'),url(../fonts/academicons.svg?v=1.8.6#academicons) format('svg');font-weight:400;font-style:normal}.ai{display:inline-block;font:normal normal normal 14px/1 Academicons;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ai-lg,.fa-lg{line-height:.75em;vertical-align:-15%}.ai-academia:before{content:"\e9af"}.ai-academia-square:before{content:"\e93d"}.ai-acclaim:before{content:"\e92e"}.ai-acclaim-square:before{content:"\e93a"}.ai-acm:before{content:"\e93c"}.ai-acm-square:before{content:"\e95d"}.ai-acmdl:before{content:"\e96a"}.ai-acmdl-square:before{content:"\e9d3"}.ai-ads:before{content:"\e9cb"}.ai-ads-square:before{content:"\e94a"}.ai-arxiv:before{content:"\e974"}.ai-arxiv-square:before{content:"\e9a6"}.ai-biorxiv:before{content:"\e9a2"}.ai-biorxiv-square:before{content:"\e98b"}.ai-ceur:before{content:"\e96d"}.ai-ceur-square:before{content:"\e92f"}.ai-coursera:before{content:"\e95f"}.ai-coursera-square:before{content:"\e97f"}.ai-cv:before{content:"\e9a5"}.ai-cv-square:before{content:"\e90a"}.ai-dataverse:before{content:"\e9f7"}.ai-dataverse-square:before{content:"\e9e4"}.ai-dblp:before{content:"\e94f"}.ai-dblp-square:before{content:"\e93f"}.ai-depsy:before{content:"\e97a"}.ai-depsy-square:before{content:"\e94b"}.ai-doi:before{content:"\e97e"}.ai-doi-square:before{content:"\e98f"}.ai-dryad:before{content:"\e97c"}.ai-dryad-square:before{content:"\e98c"}.ai-figshare:before{content:"\e981"}.ai-figshare-square:before{content:"\e9e7"}.ai-google-scholar:before{content:"\e9d4"}.ai-google-scholar-square:before{content:"\e9f9"}.ai-ideas-repec:before{content:"\e9ed"}.ai-ideas-repec-square:before{content:"\e9f8"}.ai-ieee:before{content:"\e929"}.ai-ieee-square:before{content:"\e9b9"}.ai-impactstory:before{content:"\e9cf"}.ai-impactstory-square:before{content:"\e9aa"}.ai-inspire:before{content:"\e9e9"}.ai-inspire-square:before{content:"\e9fe"}.ai-lattes:before{content:"\e9b3"}.ai-lattes-square:before{content:"\e99c"}.ai-mathoverflow:before{content:"\e9f6"}.ai-mathoverflow-square:before{content:"\e97b"}.ai-mendeley:before{content:"\e9f0"}.ai-mendeley-square:before{content:"\e9f3"}.ai-open-access:before{content:"\e939"}.ai-open-access-square:before{content:"\e9f4"}.ai-orcid:before{content:"\e9d9"}.ai-orcid-square:before{content:"\e9c3"}.ai-osf:before{content:"\e9ef"}.ai-osf-square:before{content:"\e931"}.ai-overleaf:before{content:"\e914"}.ai-overleaf-square:before{content:"\e98d"}.ai-philpapers:before{content:"\e98a"}.ai-philpapers-square:before{content:"\e96f"}.ai-piazza:before{content:"\e99a"}.ai-piazza-square:before{content:"\e90c"}.ai-publons:before{content:"\e937"}.ai-publons-square:before{content:"\e94e"}.ai-pubmed:before{content:"\e99f"}.ai-pubmed-square:before{content:"\e97d"}.ai-researcherid:before{content:"\e91a"}.ai-researcherid-square:before{content:"\e95c"}.ai-researchgate:before{content:"\e95e"}.ai-researchgate-square:before{content:"\e99e"}.ai-scirate:before{content:"\e98e"}.ai-scirate-square:before{content:"\e99d"}.ai-semantic-scholar:before{content:"\e96e"}.ai-semantic-scholar-square:before{content:"\e96c"}.ai-springer:before{content:"\e928"}.ai-springer-square:before{content:"\e99b"}.ai-zotero:before{content:"\e962"}.ai-zotero-square:before{content:"\e932"}.ai-lg{font-size:1.33333333em}.ai-2x{font-size:2em}.ai-3x{font-size:3em}.ai-4x{font-size:4em}.ai-5x{font-size:5em}.ai-fw{width:1.28571429em}.ai-ul{padding-left:0;margin-left:2.14285714em}.ai-ul>li{position:relative}.ai-li{position:absolute;left:-2.14285714em;width:2.14285714em}.ai-li.fa-lg{left:-1.85714286em}.ai-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.ai-pull-left{float:left}.ai-pull-right{float:right}.ai.fa-pull-right{margin-left:.3em}.fa-lg{font-size:1.33333333em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em}.fa-ul{padding-left:0;margin-left:2.14285714em}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-right{margin-left:.3em} \ No newline at end of file diff --git a/assets/css/atom.css b/assets/css/atom.css new file mode 100644 index 000000000..e45a501e2 --- /dev/null +++ b/assets/css/atom.css @@ -0,0 +1 @@ +.font-size-h1{font-size:2.441em}.font-size-h2{font-size:1.953em}.font-size-h3{font-size:1.563em}.font-size-h4{font-size:1.25em}.font-size-h5{font-size:1.152em}meta.foundation-version{font-family:"/5.5.0/"}meta.foundation-mq-small{font-family:"/only screen/";width:0em}meta.foundation-mq-small-only{font-family:"/only screen and (max-width: 40em)/";width:0em}meta.foundation-mq-medium{font-family:"/only screen and (min-width:40.063em)/";width:40.063em}meta.foundation-mq-medium-only{font-family:"/only screen and (min-width:40.063em) and (max-width:64em)/";width:40.063em}meta.foundation-mq-large{font-family:"/only screen and (min-width:64.063em)/";width:64.063em}meta.foundation-mq-large-only{font-family:"/only screen and (min-width:64.063em) and (max-width:90em)/";width:64.063em}meta.foundation-mq-xlarge{font-family:"/only screen and (min-width:90.063em)/";width:90.063em}meta.foundation-mq-xlarge-only{font-family:"/only screen and (min-width:90.063em) and (max-width:120em)/";width:90.063em}meta.foundation-mq-xxlarge{font-family:"/only screen and (min-width:120.063em)/";width:120.063em}meta.foundation-data-attribute-namespace{font-family:false}*{display:block}:root{margin:3em;background:#fdfdfd;color:#111;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}feed>title{text-align:center;color:#ff893b;font-family:"Lato","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:3.6615em;font-weight:bolder}feed>title::before{content:'Atom Feed for ';font-weight:initial}feed>title::after{content:"This Atom feed is meant to be used by RSS reader applications and websites.";display:block;padding:1em;background-color:#DF4949;color:#fff;font-family:initial;font-size:initial;letter-spacing:initial}feed>id,feed>updated,feed>subtitle,feed>author,feed>link,feed>generator{display:none}entry{padding:1em 0;border-bottom:1px solid #020202}entry:last-child{border-bottom:none}entry>title{color:#FDEBD0;font-family:"Lato","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:2.441em;margin-bottom:0.5em}entry>link::after{content:attr(href);color:#BA4A00}entry>updated{color:#A4A4A4;font-size:small}entry>summary{margin-top:1em}entry>id,entry>author,entry>category,entry>published,entry>content{display:none} diff --git a/assets/css/extras.css b/assets/css/extras.css new file mode 100644 index 000000000..b85706cf4 --- /dev/null +++ b/assets/css/extras.css @@ -0,0 +1,194 @@ +.list-inline { + padding-left: 0; + list-style: none; + margin-left: -5px; +} + + +.img-circle { + border-radius: 50%; +} + +.list-inline>li { + display: inline-block; + padding-left: 5px; + padding-right: 5px; +} + +ul.social-buttons { + margin-bottom: 0; + +} + +ul.social-buttons li a { + display: block; + width: 25px; + height: 25px; + border-radius: 100%; + font-size: 15px; + line-height: 25px; + outline: 0; + color: #fff; + background-color: #999; + -webkit-transition: all .3s; + -moz-transition: all .3s; + transition: all .3s; + font-weight: normal; +} + +ul, menu, dir { + display: block; + list-style-type: disc; + -webkit-margin-start: 0px; + -webkit-margin-end: 0px; + -webkit-padding-start: 40px; +} + +.text-muted { + color: #777; +} + + +.anchor-offset { + padding-top: 50px; + margin-top: -50px; +} + +.team-member { + margin-bottom: 50px; + text-align: center; +} + +.team-member img { + margin: 0 auto; + border: 7px solid #fff; +} + +.team-member h4 { + margin-top: 25px; + margin-bottom: 0; + text-transform: none; +} + +.team-member p { + margin-top: 0; +} + +.callout-wrap-large .callout-circle { + box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.17), 2px 3px 3px rgba(0, 0, 0, 0.22); + width: 190px; + height: 190px; + border-radius: 95px; + -webkit-border-radius: 95px; + -moz-border-radius: 95px; + line-height: 190px; +} + + +.callout-circle { + background: #071159; + background-size: cover; + width: 110px; + border-radius: 55px; + -webkit-border-radius: 55px; + -moz-border-radius: 55px; + height: 110px; + line-height: 110px; + text-align: center; + margin: 0.25em auto; + color: #FFFFFF; + font-family: 'Open Sans', Arial, Helvetica, sans-serif; + font-size: 2.6em; + font-weight: 600; +} + + +.card_link { + text-decoration: none; + cursor: pointer; +} +h1[id]:before, +h2[id]:before, +h3[id]:before, +h4[id]:before { + display: block; + content: " "; + margin-top: -50px; + height: 50px; + visibility: hidden; + position: relative; + z-index: -1; +} + +.card { +border-radius: 9px; +background: #e3e6fd; +margin: 10px; +padding: 20px; +} + +.values { + padding-bottom:20%; +} +.values img { + float: right; + width:30%; +} + +.flags { + max-width: inherit; + height: auto; +} + +.pre-alpha { + background: #f04124; +} + +.alpha { + background: #f08a24; +} + +.beta { + background: #a0d3e8; +} + +.stable { + background: #43ac6a; +} + +.carpentries-incubator { + background: #5B2A86; +} + +.carpentrieslab { + background: #9AC6C5; +} + +.edit-on-github { + color: #7E7E7E; +} + +.icon::before { + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + -webkit-font-smoothing: antialiased; +} + +div.checklist { + margin-left: -1em; +} + +.checklist li::before { + font-family: "Font Awesome 5 Free"; font-weight: 400; content: "\f0c8"; + padding-right: .5em; +} + +.checklist ul { + list-style-type: none; +} + +.checklist li { + +} diff --git a/assets/css/rss.css b/assets/css/rss.css new file mode 100644 index 000000000..6e72af9d4 --- /dev/null +++ b/assets/css/rss.css @@ -0,0 +1 @@ +.font-size-h1{font-size:2.441em}.font-size-h2{font-size:1.953em}.font-size-h3{font-size:1.563em}.font-size-h4{font-size:1.25em}.font-size-h5{font-size:1.152em}meta.foundation-version{font-family:"/5.5.0/"}meta.foundation-mq-small{font-family:"/only screen/";width:0em}meta.foundation-mq-small-only{font-family:"/only screen and (max-width: 40em)/";width:0em}meta.foundation-mq-medium{font-family:"/only screen and (min-width:40.063em)/";width:40.063em}meta.foundation-mq-medium-only{font-family:"/only screen and (min-width:40.063em) and (max-width:64em)/";width:40.063em}meta.foundation-mq-large{font-family:"/only screen and (min-width:64.063em)/";width:64.063em}meta.foundation-mq-large-only{font-family:"/only screen and (min-width:64.063em) and (max-width:90em)/";width:64.063em}meta.foundation-mq-xlarge{font-family:"/only screen and (min-width:90.063em)/";width:90.063em}meta.foundation-mq-xlarge-only{font-family:"/only screen and (min-width:90.063em) and (max-width:120em)/";width:90.063em}meta.foundation-mq-xxlarge{font-family:"/only screen and (min-width:120.063em)/";width:120.063em}meta.foundation-data-attribute-namespace{font-family:false}*{display:block}:root{margin:3em;background:#fdfdfd;color:#111;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}channel>title{text-align:center;color:#ff893b;font-family:"Lato","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:3.6615em;font-weight:bolder}channel>title::before{content:'RSS Feed for ';font-weight:initial}channel>title::after{content:"This RSS feed is meant to be used by RSS reader applications and websites.";display:block;padding:1em;background-color:#DF4949;color:#fff;font-family:initial;font-size:initial;letter-spacing:initial}channel>description,channel>link{display:none}item{padding:1em 0;border-bottom:1px solid #020202}item:last-child{border-bottom:none}item>title{color:#FDEBD0;font-family:"Lato","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:2.441em;margin-bottom:0.5em}item>link{color:#BA4A00}item>pubDate{color:#A4A4A4;font-size:small}item>description{margin-top:1em;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}item>guid,item>category{display:none} diff --git a/assets/css/style.css b/assets/css/style.css new file mode 100644 index 000000000..2440b2ef9 --- /dev/null +++ b/assets/css/style.css @@ -0,0 +1 @@ +/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section{display:block}summary{display:list-item}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}progress{vertical-align:baseline}template,[hidden]{display:none !important}a{background-color:transparent}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}button,input,select,textarea{font:inherit;margin:0}optgroup{font-weight:bold}button,input{overflow:visible}button,select{text-transform:none}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-input-placeholder{color:inherit;opacity:0.54}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}*{box-sizing:border-box}input,select,textarea,button{font-family:inherit;font-size:inherit;line-height:inherit}body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:14px;line-height:1.5;color:#24292e;background-color:#fff}a{color:#0366d6;text-decoration:none}a:hover{text-decoration:underline}b,strong{font-weight:600}hr,.rule{height:0;margin:15px 0;overflow:hidden;background:transparent;border:0;border-bottom:1px solid #dfe2e5}hr::before,.rule::before{display:table;content:""}hr::after,.rule::after{display:table;clear:both;content:""}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}button{cursor:pointer;border-radius:0}[hidden][hidden]{display:none !important}details summary{cursor:pointer}details:not([open])>*:not(summary){display:none !important}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:0}h1{font-size:32px;font-weight:600}h2{font-size:24px;font-weight:600}h3{font-size:20px;font-weight:600}h4{font-size:16px;font-weight:600}h5{font-size:14px;font-weight:600}h6{font-size:12px;font-weight:600}p{margin-top:0;margin-bottom:10px}small{font-size:90%}blockquote{margin:0}ul,ol{padding-left:0;margin-top:0;margin-bottom:0}ol ol,ul ol{list-style-type:lower-roman}ul ul ol,ul ol ol,ol ul ol,ol ol ol{list-style-type:lower-alpha}dd{margin-left:0}tt,code{font-family:"SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace;font-size:12px}pre{margin-top:0;margin-bottom:0;font-family:"SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace;font-size:12px}.octicon{vertical-align:text-bottom}.anim-fade-in{animation-name:fade-in;animation-duration:1s;animation-timing-function:ease-in-out}.anim-fade-in.fast{animation-duration:300ms}@keyframes fade-in{0%{opacity:0}100%{opacity:1}}.anim-fade-out{animation-name:fade-out;animation-duration:1s;animation-timing-function:ease-out}.anim-fade-out.fast{animation-duration:0.3s}@keyframes fade-out{0%{opacity:1}100%{opacity:0}}.anim-fade-up{opacity:0;animation-name:fade-up;animation-duration:0.3s;animation-fill-mode:forwards;animation-timing-function:ease-out;animation-delay:1s}@keyframes fade-up{0%{opacity:0.8;transform:translateY(100%)}100%{opacity:1;transform:translateY(0)}}.anim-fade-down{animation-name:fade-down;animation-duration:0.3s;animation-fill-mode:forwards;animation-timing-function:ease-in}@keyframes fade-down{0%{opacity:1;transform:translateY(0)}100%{opacity:0.5;transform:translateY(100%)}}.anim-grow-x{width:0%;animation-name:grow-x;animation-duration:0.3s;animation-fill-mode:forwards;animation-timing-function:ease;animation-delay:0.5s}@keyframes grow-x{to{width:100%}}.anim-shrink-x{animation-name:shrink-x;animation-duration:0.3s;animation-fill-mode:forwards;animation-timing-function:ease-in-out;animation-delay:0.5s}@keyframes shrink-x{to{width:0%}}.anim-scale-in{animation-name:scale-in;animation-duration:0.15s;animation-timing-function:cubic-bezier(0.2, 0, 0.13, 1.5)}@keyframes scale-in{0%{opacity:0;transform:scale(0.5)}100%{opacity:1;transform:scale(1)}}.anim-pulse{animation-name:pulse;animation-duration:2s;animation-timing-function:linear;animation-iteration-count:infinite}@keyframes pulse{0%{opacity:0.3}10%{opacity:1}100%{opacity:0.3}}.anim-pulse-in{animation-name:pulse-in;animation-duration:0.5s}@keyframes pulse-in{0%{transform:scale3d(1, 1, 1)}50%{transform:scale3d(1.1, 1.1, 1.1)}100%{transform:scale3d(1, 1, 1)}}.hover-grow{transition:transform 0.3s;backface-visibility:hidden}.hover-grow:hover{transform:scale(1.025)}.border{border:1px #e1e4e8 solid !important}.border-y{border-top:1px #e1e4e8 solid !important;border-bottom:1px #e1e4e8 solid !important}.border-0{border:0 !important}.border-dashed{border-style:dashed !important}.border-blue{border-color:#0366d6 !important}.border-blue-light{border-color:#c8e1ff !important}.border-green{border-color:#34d058 !important}.border-green-light{border-color:#a2cbac !important}.border-red{border-color:#d73a49 !important}.border-red-light{border-color:#cea0a5 !important}.border-purple{border-color:#6f42c1 !important}.border-yellow{border-color:#d9d0a5 !important}.border-gray-light{border-color:#eaecef !important}.border-gray-dark{border-color:#d1d5da !important}.border-black-fade{border-color:rgba(27,31,35,0.15) !important}.border-top{border-top:1px #e1e4e8 solid !important}.border-right{border-right:1px #e1e4e8 solid !important}.border-bottom{border-bottom:1px #e1e4e8 solid !important}.border-left{border-left:1px #e1e4e8 solid !important}.border-top-0{border-top:0 !important}.border-right-0{border-right:0 !important}.border-bottom-0{border-bottom:0 !important}.border-left-0{border-left:0 !important}.rounded-0{border-radius:0 !important}.rounded-1{border-radius:3px !important}.rounded-2{border-radius:6px !important}.rounded-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-top-1{border-top-left-radius:3px !important;border-top-right-radius:3px !important}.rounded-top-2{border-top-left-radius:6px !important;border-top-right-radius:6px !important}.rounded-right-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-right-1{border-top-right-radius:3px !important;border-bottom-right-radius:3px !important}.rounded-right-2{border-top-right-radius:6px !important;border-bottom-right-radius:6px !important}.rounded-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-bottom-1{border-bottom-right-radius:3px !important;border-bottom-left-radius:3px !important}.rounded-bottom-2{border-bottom-right-radius:6px !important;border-bottom-left-radius:6px !important}.rounded-left-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.rounded-left-1{border-bottom-left-radius:3px !important;border-top-left-radius:3px !important}.rounded-left-2{border-bottom-left-radius:6px !important;border-top-left-radius:6px !important}@media (min-width: 544px){.border-sm-top{border-top:1px #e1e4e8 solid !important}.border-sm-right{border-right:1px #e1e4e8 solid !important}.border-sm-bottom{border-bottom:1px #e1e4e8 solid !important}.border-sm-left{border-left:1px #e1e4e8 solid !important}.border-sm-top-0{border-top:0 !important}.border-sm-right-0{border-right:0 !important}.border-sm-bottom-0{border-bottom:0 !important}.border-sm-left-0{border-left:0 !important}.rounded-sm-0{border-radius:0 !important}.rounded-sm-1{border-radius:3px !important}.rounded-sm-2{border-radius:6px !important}.rounded-sm-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-sm-top-1{border-top-left-radius:3px !important;border-top-right-radius:3px !important}.rounded-sm-top-2{border-top-left-radius:6px !important;border-top-right-radius:6px !important}.rounded-sm-right-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-sm-right-1{border-top-right-radius:3px !important;border-bottom-right-radius:3px !important}.rounded-sm-right-2{border-top-right-radius:6px !important;border-bottom-right-radius:6px !important}.rounded-sm-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-sm-bottom-1{border-bottom-right-radius:3px !important;border-bottom-left-radius:3px !important}.rounded-sm-bottom-2{border-bottom-right-radius:6px !important;border-bottom-left-radius:6px !important}.rounded-sm-left-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.rounded-sm-left-1{border-bottom-left-radius:3px !important;border-top-left-radius:3px !important}.rounded-sm-left-2{border-bottom-left-radius:6px !important;border-top-left-radius:6px !important}}@media (min-width: 768px){.border-md-top{border-top:1px #e1e4e8 solid !important}.border-md-right{border-right:1px #e1e4e8 solid !important}.border-md-bottom{border-bottom:1px #e1e4e8 solid !important}.border-md-left{border-left:1px #e1e4e8 solid !important}.border-md-top-0{border-top:0 !important}.border-md-right-0{border-right:0 !important}.border-md-bottom-0{border-bottom:0 !important}.border-md-left-0{border-left:0 !important}.rounded-md-0{border-radius:0 !important}.rounded-md-1{border-radius:3px !important}.rounded-md-2{border-radius:6px !important}.rounded-md-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-md-top-1{border-top-left-radius:3px !important;border-top-right-radius:3px !important}.rounded-md-top-2{border-top-left-radius:6px !important;border-top-right-radius:6px !important}.rounded-md-right-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-md-right-1{border-top-right-radius:3px !important;border-bottom-right-radius:3px !important}.rounded-md-right-2{border-top-right-radius:6px !important;border-bottom-right-radius:6px !important}.rounded-md-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-md-bottom-1{border-bottom-right-radius:3px !important;border-bottom-left-radius:3px !important}.rounded-md-bottom-2{border-bottom-right-radius:6px !important;border-bottom-left-radius:6px !important}.rounded-md-left-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.rounded-md-left-1{border-bottom-left-radius:3px !important;border-top-left-radius:3px !important}.rounded-md-left-2{border-bottom-left-radius:6px !important;border-top-left-radius:6px !important}}@media (min-width: 1012px){.border-lg-top{border-top:1px #e1e4e8 solid !important}.border-lg-right{border-right:1px #e1e4e8 solid !important}.border-lg-bottom{border-bottom:1px #e1e4e8 solid !important}.border-lg-left{border-left:1px #e1e4e8 solid !important}.border-lg-top-0{border-top:0 !important}.border-lg-right-0{border-right:0 !important}.border-lg-bottom-0{border-bottom:0 !important}.border-lg-left-0{border-left:0 !important}.rounded-lg-0{border-radius:0 !important}.rounded-lg-1{border-radius:3px !important}.rounded-lg-2{border-radius:6px !important}.rounded-lg-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-lg-top-1{border-top-left-radius:3px !important;border-top-right-radius:3px !important}.rounded-lg-top-2{border-top-left-radius:6px !important;border-top-right-radius:6px !important}.rounded-lg-right-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-lg-right-1{border-top-right-radius:3px !important;border-bottom-right-radius:3px !important}.rounded-lg-right-2{border-top-right-radius:6px !important;border-bottom-right-radius:6px !important}.rounded-lg-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-lg-bottom-1{border-bottom-right-radius:3px !important;border-bottom-left-radius:3px !important}.rounded-lg-bottom-2{border-bottom-right-radius:6px !important;border-bottom-left-radius:6px !important}.rounded-lg-left-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.rounded-lg-left-1{border-bottom-left-radius:3px !important;border-top-left-radius:3px !important}.rounded-lg-left-2{border-bottom-left-radius:6px !important;border-top-left-radius:6px !important}}@media (min-width: 1280px){.border-xl-top{border-top:1px #e1e4e8 solid !important}.border-xl-right{border-right:1px #e1e4e8 solid !important}.border-xl-bottom{border-bottom:1px #e1e4e8 solid !important}.border-xl-left{border-left:1px #e1e4e8 solid !important}.border-xl-top-0{border-top:0 !important}.border-xl-right-0{border-right:0 !important}.border-xl-bottom-0{border-bottom:0 !important}.border-xl-left-0{border-left:0 !important}.rounded-xl-0{border-radius:0 !important}.rounded-xl-1{border-radius:3px !important}.rounded-xl-2{border-radius:6px !important}.rounded-xl-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-xl-top-1{border-top-left-radius:3px !important;border-top-right-radius:3px !important}.rounded-xl-top-2{border-top-left-radius:6px !important;border-top-right-radius:6px !important}.rounded-xl-right-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-xl-right-1{border-top-right-radius:3px !important;border-bottom-right-radius:3px !important}.rounded-xl-right-2{border-top-right-radius:6px !important;border-bottom-right-radius:6px !important}.rounded-xl-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-xl-bottom-1{border-bottom-right-radius:3px !important;border-bottom-left-radius:3px !important}.rounded-xl-bottom-2{border-bottom-right-radius:6px !important;border-bottom-left-radius:6px !important}.rounded-xl-left-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.rounded-xl-left-1{border-bottom-left-radius:3px !important;border-top-left-radius:3px !important}.rounded-xl-left-2{border-bottom-left-radius:6px !important;border-top-left-radius:6px !important}}.circle{border-radius:50% !important}.box-shadow{box-shadow:0 1px 1px rgba(27,31,35,0.1) !important}.box-shadow-medium{box-shadow:0 1px 5px rgba(27,31,35,0.15) !important}.box-shadow-large{box-shadow:0 1px 15px rgba(27,31,35,0.15) !important}.box-shadow-extra-large{box-shadow:0 10px 50px rgba(27,31,35,0.07) !important}.box-shadow-none{box-shadow:none !important}.bg-white{background-color:#fff !important}.bg-blue{background-color:#0366d6 !important}.bg-blue-light{background-color:#f1f8ff !important}.bg-gray-dark{background-color:#24292e !important}.bg-gray{background-color:#f6f8fa !important}.bg-gray-light{background-color:#fafbfc !important}.bg-green{background-color:#28a745 !important}.bg-green-light{background-color:#dcffe4 !important}.bg-red{background-color:#d73a49 !important}.bg-red-light{background-color:#ffdce0 !important}.bg-yellow{background-color:#ffd33d !important}.bg-yellow-light{background-color:#fff5b1 !important}.bg-purple{background-color:#6f42c1 !important}.bg-purple-light{background-color:#f5f0ff !important}.bg-shade-gradient{background-image:linear-gradient(180deg, rgba(27,31,35,0.065), rgba(27,31,35,0)) !important;background-repeat:no-repeat !important;background-size:100% 200px !important}.text-blue{color:#0366d6 !important}.text-red{color:#cb2431 !important}.text-gray-light{color:#6a737d !important}.text-gray{color:#586069 !important}.text-gray-dark{color:#24292e !important}.text-green{color:#28a745 !important}.text-orange{color:#a04100 !important}.text-orange-light{color:#e36209 !important}.text-purple{color:#6f42c1 !important}.text-white{color:#fff !important}.text-inherit{color:inherit !important}.text-pending{color:#b08800 !important}.bg-pending{color:#dbab09 !important}.link-gray{color:#586069 !important}.link-gray:hover{color:#0366d6 !important}.link-gray-dark{color:#24292e !important}.link-gray-dark:hover{color:#0366d6 !important}.link-hover-blue:hover{color:#0366d6 !important}.muted-link{color:#586069 !important}.muted-link:hover{color:#0366d6 !important;text-decoration:none}.details-overlay[open]>summary::before{position:fixed;top:0;right:0;bottom:0;left:0;z-index:80;display:block;cursor:default;content:" ";background:transparent}.details-overlay-dark[open]>summary::before{z-index:99;background:rgba(27,31,35,0.5)}.flex-row{flex-direction:row !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column{flex-direction:column !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-justify-start{justify-content:flex-start !important}.flex-justify-end{justify-content:flex-end !important}.flex-justify-center{justify-content:center !important}.flex-justify-between{justify-content:space-between !important}.flex-justify-around{justify-content:space-around !important}.flex-items-start{align-items:flex-start !important}.flex-items-end{align-items:flex-end !important}.flex-items-center{align-items:center !important}.flex-items-baseline{align-items:baseline !important}.flex-items-stretch{align-items:stretch !important}.flex-content-start{align-content:flex-start !important}.flex-content-end{align-content:flex-end !important}.flex-content-center{align-content:center !important}.flex-content-between{align-content:space-between !important}.flex-content-around{align-content:space-around !important}.flex-content-stretch{align-content:stretch !important}.flex-auto{flex:1 1 auto !important}.flex-shrink-0{flex-shrink:0 !important}.flex-self-auto{align-self:auto !important}.flex-self-start{align-self:flex-start !important}.flex-self-end{align-self:flex-end !important}.flex-self-center{align-self:center !important}.flex-self-baseline{align-self:baseline !important}.flex-self-stretch{align-self:stretch !important}.flex-item-equal{flex-grow:1;flex-basis:0}@media (min-width: 544px){.flex-sm-row{flex-direction:row !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column{flex-direction:column !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-justify-start{justify-content:flex-start !important}.flex-sm-justify-end{justify-content:flex-end !important}.flex-sm-justify-center{justify-content:center !important}.flex-sm-justify-between{justify-content:space-between !important}.flex-sm-justify-around{justify-content:space-around !important}.flex-sm-items-start{align-items:flex-start !important}.flex-sm-items-end{align-items:flex-end !important}.flex-sm-items-center{align-items:center !important}.flex-sm-items-baseline{align-items:baseline !important}.flex-sm-items-stretch{align-items:stretch !important}.flex-sm-content-start{align-content:flex-start !important}.flex-sm-content-end{align-content:flex-end !important}.flex-sm-content-center{align-content:center !important}.flex-sm-content-between{align-content:space-between !important}.flex-sm-content-around{align-content:space-around !important}.flex-sm-content-stretch{align-content:stretch !important}.flex-sm-auto{flex:1 1 auto !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-self-auto{align-self:auto !important}.flex-sm-self-start{align-self:flex-start !important}.flex-sm-self-end{align-self:flex-end !important}.flex-sm-self-center{align-self:center !important}.flex-sm-self-baseline{align-self:baseline !important}.flex-sm-self-stretch{align-self:stretch !important}.flex-sm-item-equal{flex-grow:1;flex-basis:0}}@media (min-width: 768px){.flex-md-row{flex-direction:row !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column{flex-direction:column !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-justify-start{justify-content:flex-start !important}.flex-md-justify-end{justify-content:flex-end !important}.flex-md-justify-center{justify-content:center !important}.flex-md-justify-between{justify-content:space-between !important}.flex-md-justify-around{justify-content:space-around !important}.flex-md-items-start{align-items:flex-start !important}.flex-md-items-end{align-items:flex-end !important}.flex-md-items-center{align-items:center !important}.flex-md-items-baseline{align-items:baseline !important}.flex-md-items-stretch{align-items:stretch !important}.flex-md-content-start{align-content:flex-start !important}.flex-md-content-end{align-content:flex-end !important}.flex-md-content-center{align-content:center !important}.flex-md-content-between{align-content:space-between !important}.flex-md-content-around{align-content:space-around !important}.flex-md-content-stretch{align-content:stretch !important}.flex-md-auto{flex:1 1 auto !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-self-auto{align-self:auto !important}.flex-md-self-start{align-self:flex-start !important}.flex-md-self-end{align-self:flex-end !important}.flex-md-self-center{align-self:center !important}.flex-md-self-baseline{align-self:baseline !important}.flex-md-self-stretch{align-self:stretch !important}.flex-md-item-equal{flex-grow:1;flex-basis:0}}@media (min-width: 1012px){.flex-lg-row{flex-direction:row !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column{flex-direction:column !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-justify-start{justify-content:flex-start !important}.flex-lg-justify-end{justify-content:flex-end !important}.flex-lg-justify-center{justify-content:center !important}.flex-lg-justify-between{justify-content:space-between !important}.flex-lg-justify-around{justify-content:space-around !important}.flex-lg-items-start{align-items:flex-start !important}.flex-lg-items-end{align-items:flex-end !important}.flex-lg-items-center{align-items:center !important}.flex-lg-items-baseline{align-items:baseline !important}.flex-lg-items-stretch{align-items:stretch !important}.flex-lg-content-start{align-content:flex-start !important}.flex-lg-content-end{align-content:flex-end !important}.flex-lg-content-center{align-content:center !important}.flex-lg-content-between{align-content:space-between !important}.flex-lg-content-around{align-content:space-around !important}.flex-lg-content-stretch{align-content:stretch !important}.flex-lg-auto{flex:1 1 auto !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-self-auto{align-self:auto !important}.flex-lg-self-start{align-self:flex-start !important}.flex-lg-self-end{align-self:flex-end !important}.flex-lg-self-center{align-self:center !important}.flex-lg-self-baseline{align-self:baseline !important}.flex-lg-self-stretch{align-self:stretch !important}.flex-lg-item-equal{flex-grow:1;flex-basis:0}}@media (min-width: 1280px){.flex-xl-row{flex-direction:row !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column{flex-direction:column !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-justify-start{justify-content:flex-start !important}.flex-xl-justify-end{justify-content:flex-end !important}.flex-xl-justify-center{justify-content:center !important}.flex-xl-justify-between{justify-content:space-between !important}.flex-xl-justify-around{justify-content:space-around !important}.flex-xl-items-start{align-items:flex-start !important}.flex-xl-items-end{align-items:flex-end !important}.flex-xl-items-center{align-items:center !important}.flex-xl-items-baseline{align-items:baseline !important}.flex-xl-items-stretch{align-items:stretch !important}.flex-xl-content-start{align-content:flex-start !important}.flex-xl-content-end{align-content:flex-end !important}.flex-xl-content-center{align-content:center !important}.flex-xl-content-between{align-content:space-between !important}.flex-xl-content-around{align-content:space-around !important}.flex-xl-content-stretch{align-content:stretch !important}.flex-xl-auto{flex:1 1 auto !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-self-auto{align-self:auto !important}.flex-xl-self-start{align-self:flex-start !important}.flex-xl-self-end{align-self:flex-end !important}.flex-xl-self-center{align-self:center !important}.flex-xl-self-baseline{align-self:baseline !important}.flex-xl-self-stretch{align-self:stretch !important}.flex-xl-item-equal{flex-grow:1;flex-basis:0}}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.top-0{top:0 !important}.right-0{right:0 !important}.bottom-0{bottom:0 !important}.left-0{left:0 !important}.v-align-middle{vertical-align:middle !important}.v-align-top{vertical-align:top !important}.v-align-bottom{vertical-align:bottom !important}.v-align-text-top{vertical-align:text-top !important}.v-align-text-bottom{vertical-align:text-bottom !important}.v-align-baseline{vertical-align:baseline !important}.overflow-hidden{overflow:hidden !important}.overflow-scroll{overflow:scroll !important}.overflow-auto{overflow:auto !important}.clearfix::before{display:table;content:""}.clearfix::after{display:table;clear:both;content:""}.float-left{float:left !important}.float-right{float:right !important}.float-none{float:none !important}@media (min-width: 544px){.float-sm-left{float:left !important}.float-sm-right{float:right !important}.float-sm-none{float:none !important}}@media (min-width: 768px){.float-md-left{float:left !important}.float-md-right{float:right !important}.float-md-none{float:none !important}}@media (min-width: 1012px){.float-lg-left{float:left !important}.float-lg-right{float:right !important}.float-lg-none{float:none !important}}@media (min-width: 1280px){.float-xl-left{float:left !important}.float-xl-right{float:right !important}.float-xl-none{float:none !important}}.width-fit{max-width:100% !important}.width-full{width:100% !important}.height-fit{max-height:100% !important}.height-full{height:100% !important}.min-width-0{min-width:0 !important}.direction-rtl{direction:rtl !important}.direction-ltr{direction:ltr !important}@media (min-width: 544px){.direction-sm-rtl{direction:rtl !important}.direction-sm-ltr{direction:ltr !important}}@media (min-width: 768px){.direction-md-rtl{direction:rtl !important}.direction-md-ltr{direction:ltr !important}}@media (min-width: 1012px){.direction-lg-rtl{direction:rtl !important}.direction-lg-ltr{direction:ltr !important}}@media (min-width: 1280px){.direction-xl-rtl{direction:rtl !important}.direction-xl-ltr{direction:ltr !important}}.m-0{margin:0 !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.m-1{margin:4px !important}.mt-1{margin-top:4px !important}.mr-1{margin-right:4px !important}.mb-1{margin-bottom:4px !important}.ml-1{margin-left:4px !important}.mt-n1{margin-top:-4px !important}.mr-n1{margin-right:-4px !important}.mb-n1{margin-bottom:-4px !important}.ml-n1{margin-left:-4px !important}.mx-1{margin-right:4px !important;margin-left:4px !important}.my-1{margin-top:4px !important;margin-bottom:4px !important}.m-2{margin:8px !important}.mt-2{margin-top:8px !important}.mr-2{margin-right:8px !important}.mb-2{margin-bottom:8px !important}.ml-2{margin-left:8px !important}.mt-n2{margin-top:-8px !important}.mr-n2{margin-right:-8px !important}.mb-n2{margin-bottom:-8px !important}.ml-n2{margin-left:-8px !important}.mx-2{margin-right:8px !important;margin-left:8px !important}.my-2{margin-top:8px !important;margin-bottom:8px !important}.m-3{margin:16px !important}.mt-3{margin-top:16px !important}.mr-3{margin-right:16px !important}.mb-3{margin-bottom:16px !important}.ml-3{margin-left:16px !important}.mt-n3{margin-top:-16px !important}.mr-n3{margin-right:-16px !important}.mb-n3{margin-bottom:-16px !important}.ml-n3{margin-left:-16px !important}.mx-3{margin-right:16px !important;margin-left:16px !important}.my-3{margin-top:16px !important;margin-bottom:16px !important}.m-4{margin:24px !important}.mt-4{margin-top:24px !important}.mr-4{margin-right:24px !important}.mb-4{margin-bottom:24px !important}.ml-4{margin-left:24px !important}.mt-n4{margin-top:-24px !important}.mr-n4{margin-right:-24px !important}.mb-n4{margin-bottom:-24px !important}.ml-n4{margin-left:-24px !important}.mx-4{margin-right:24px !important;margin-left:24px !important}.my-4{margin-top:24px !important;margin-bottom:24px !important}.m-5{margin:32px !important}.mt-5{margin-top:32px !important}.mr-5{margin-right:32px !important}.mb-5{margin-bottom:32px !important}.ml-5{margin-left:32px !important}.mt-n5{margin-top:-32px !important}.mr-n5{margin-right:-32px !important}.mb-n5{margin-bottom:-32px !important}.ml-n5{margin-left:-32px !important}.mx-5{margin-right:32px !important;margin-left:32px !important}.my-5{margin-top:32px !important;margin-bottom:32px !important}.m-6{margin:40px !important}.mt-6{margin-top:40px !important}.mr-6{margin-right:40px !important}.mb-6{margin-bottom:40px !important}.ml-6{margin-left:40px !important}.mt-n6{margin-top:-40px !important}.mr-n6{margin-right:-40px !important}.mb-n6{margin-bottom:-40px !important}.ml-n6{margin-left:-40px !important}.mx-6{margin-right:40px !important;margin-left:40px !important}.my-6{margin-top:40px !important;margin-bottom:40px !important}.mx-auto{margin-right:auto !important;margin-left:auto !important}@media (min-width: 544px){.m-sm-0{margin:0 !important}.mt-sm-0{margin-top:0 !important}.mr-sm-0{margin-right:0 !important}.mb-sm-0{margin-bottom:0 !important}.ml-sm-0{margin-left:0 !important}.mx-sm-0{margin-right:0 !important;margin-left:0 !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.m-sm-1{margin:4px !important}.mt-sm-1{margin-top:4px !important}.mr-sm-1{margin-right:4px !important}.mb-sm-1{margin-bottom:4px !important}.ml-sm-1{margin-left:4px !important}.mt-sm-n1{margin-top:-4px !important}.mr-sm-n1{margin-right:-4px !important}.mb-sm-n1{margin-bottom:-4px !important}.ml-sm-n1{margin-left:-4px !important}.mx-sm-1{margin-right:4px !important;margin-left:4px !important}.my-sm-1{margin-top:4px !important;margin-bottom:4px !important}.m-sm-2{margin:8px !important}.mt-sm-2{margin-top:8px !important}.mr-sm-2{margin-right:8px !important}.mb-sm-2{margin-bottom:8px !important}.ml-sm-2{margin-left:8px !important}.mt-sm-n2{margin-top:-8px !important}.mr-sm-n2{margin-right:-8px !important}.mb-sm-n2{margin-bottom:-8px !important}.ml-sm-n2{margin-left:-8px !important}.mx-sm-2{margin-right:8px !important;margin-left:8px !important}.my-sm-2{margin-top:8px !important;margin-bottom:8px !important}.m-sm-3{margin:16px !important}.mt-sm-3{margin-top:16px !important}.mr-sm-3{margin-right:16px !important}.mb-sm-3{margin-bottom:16px !important}.ml-sm-3{margin-left:16px !important}.mt-sm-n3{margin-top:-16px !important}.mr-sm-n3{margin-right:-16px !important}.mb-sm-n3{margin-bottom:-16px !important}.ml-sm-n3{margin-left:-16px !important}.mx-sm-3{margin-right:16px !important;margin-left:16px !important}.my-sm-3{margin-top:16px !important;margin-bottom:16px !important}.m-sm-4{margin:24px !important}.mt-sm-4{margin-top:24px !important}.mr-sm-4{margin-right:24px !important}.mb-sm-4{margin-bottom:24px !important}.ml-sm-4{margin-left:24px !important}.mt-sm-n4{margin-top:-24px !important}.mr-sm-n4{margin-right:-24px !important}.mb-sm-n4{margin-bottom:-24px !important}.ml-sm-n4{margin-left:-24px !important}.mx-sm-4{margin-right:24px !important;margin-left:24px !important}.my-sm-4{margin-top:24px !important;margin-bottom:24px !important}.m-sm-5{margin:32px !important}.mt-sm-5{margin-top:32px !important}.mr-sm-5{margin-right:32px !important}.mb-sm-5{margin-bottom:32px !important}.ml-sm-5{margin-left:32px !important}.mt-sm-n5{margin-top:-32px !important}.mr-sm-n5{margin-right:-32px !important}.mb-sm-n5{margin-bottom:-32px !important}.ml-sm-n5{margin-left:-32px !important}.mx-sm-5{margin-right:32px !important;margin-left:32px !important}.my-sm-5{margin-top:32px !important;margin-bottom:32px !important}.m-sm-6{margin:40px !important}.mt-sm-6{margin-top:40px !important}.mr-sm-6{margin-right:40px !important}.mb-sm-6{margin-bottom:40px !important}.ml-sm-6{margin-left:40px !important}.mt-sm-n6{margin-top:-40px !important}.mr-sm-n6{margin-right:-40px !important}.mb-sm-n6{margin-bottom:-40px !important}.ml-sm-n6{margin-left:-40px !important}.mx-sm-6{margin-right:40px !important;margin-left:40px !important}.my-sm-6{margin-top:40px !important;margin-bottom:40px !important}.mx-sm-auto{margin-right:auto !important;margin-left:auto !important}}@media (min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0{margin-top:0 !important}.mr-md-0{margin-right:0 !important}.mb-md-0{margin-bottom:0 !important}.ml-md-0{margin-left:0 !important}.mx-md-0{margin-right:0 !important;margin-left:0 !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.m-md-1{margin:4px !important}.mt-md-1{margin-top:4px !important}.mr-md-1{margin-right:4px !important}.mb-md-1{margin-bottom:4px !important}.ml-md-1{margin-left:4px !important}.mt-md-n1{margin-top:-4px !important}.mr-md-n1{margin-right:-4px !important}.mb-md-n1{margin-bottom:-4px !important}.ml-md-n1{margin-left:-4px !important}.mx-md-1{margin-right:4px !important;margin-left:4px !important}.my-md-1{margin-top:4px !important;margin-bottom:4px !important}.m-md-2{margin:8px !important}.mt-md-2{margin-top:8px !important}.mr-md-2{margin-right:8px !important}.mb-md-2{margin-bottom:8px !important}.ml-md-2{margin-left:8px !important}.mt-md-n2{margin-top:-8px !important}.mr-md-n2{margin-right:-8px !important}.mb-md-n2{margin-bottom:-8px !important}.ml-md-n2{margin-left:-8px !important}.mx-md-2{margin-right:8px !important;margin-left:8px !important}.my-md-2{margin-top:8px !important;margin-bottom:8px !important}.m-md-3{margin:16px !important}.mt-md-3{margin-top:16px !important}.mr-md-3{margin-right:16px !important}.mb-md-3{margin-bottom:16px !important}.ml-md-3{margin-left:16px !important}.mt-md-n3{margin-top:-16px !important}.mr-md-n3{margin-right:-16px !important}.mb-md-n3{margin-bottom:-16px !important}.ml-md-n3{margin-left:-16px !important}.mx-md-3{margin-right:16px !important;margin-left:16px !important}.my-md-3{margin-top:16px !important;margin-bottom:16px !important}.m-md-4{margin:24px !important}.mt-md-4{margin-top:24px !important}.mr-md-4{margin-right:24px !important}.mb-md-4{margin-bottom:24px !important}.ml-md-4{margin-left:24px !important}.mt-md-n4{margin-top:-24px !important}.mr-md-n4{margin-right:-24px !important}.mb-md-n4{margin-bottom:-24px !important}.ml-md-n4{margin-left:-24px !important}.mx-md-4{margin-right:24px !important;margin-left:24px !important}.my-md-4{margin-top:24px !important;margin-bottom:24px !important}.m-md-5{margin:32px !important}.mt-md-5{margin-top:32px !important}.mr-md-5{margin-right:32px !important}.mb-md-5{margin-bottom:32px !important}.ml-md-5{margin-left:32px !important}.mt-md-n5{margin-top:-32px !important}.mr-md-n5{margin-right:-32px !important}.mb-md-n5{margin-bottom:-32px !important}.ml-md-n5{margin-left:-32px !important}.mx-md-5{margin-right:32px !important;margin-left:32px !important}.my-md-5{margin-top:32px !important;margin-bottom:32px !important}.m-md-6{margin:40px !important}.mt-md-6{margin-top:40px !important}.mr-md-6{margin-right:40px !important}.mb-md-6{margin-bottom:40px !important}.ml-md-6{margin-left:40px !important}.mt-md-n6{margin-top:-40px !important}.mr-md-n6{margin-right:-40px !important}.mb-md-n6{margin-bottom:-40px !important}.ml-md-n6{margin-left:-40px !important}.mx-md-6{margin-right:40px !important;margin-left:40px !important}.my-md-6{margin-top:40px !important;margin-bottom:40px !important}.mx-md-auto{margin-right:auto !important;margin-left:auto !important}}@media (min-width: 1012px){.m-lg-0{margin:0 !important}.mt-lg-0{margin-top:0 !important}.mr-lg-0{margin-right:0 !important}.mb-lg-0{margin-bottom:0 !important}.ml-lg-0{margin-left:0 !important}.mx-lg-0{margin-right:0 !important;margin-left:0 !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.m-lg-1{margin:4px !important}.mt-lg-1{margin-top:4px !important}.mr-lg-1{margin-right:4px !important}.mb-lg-1{margin-bottom:4px !important}.ml-lg-1{margin-left:4px !important}.mt-lg-n1{margin-top:-4px !important}.mr-lg-n1{margin-right:-4px !important}.mb-lg-n1{margin-bottom:-4px !important}.ml-lg-n1{margin-left:-4px !important}.mx-lg-1{margin-right:4px !important;margin-left:4px !important}.my-lg-1{margin-top:4px !important;margin-bottom:4px !important}.m-lg-2{margin:8px !important}.mt-lg-2{margin-top:8px !important}.mr-lg-2{margin-right:8px !important}.mb-lg-2{margin-bottom:8px !important}.ml-lg-2{margin-left:8px !important}.mt-lg-n2{margin-top:-8px !important}.mr-lg-n2{margin-right:-8px !important}.mb-lg-n2{margin-bottom:-8px !important}.ml-lg-n2{margin-left:-8px !important}.mx-lg-2{margin-right:8px !important;margin-left:8px !important}.my-lg-2{margin-top:8px !important;margin-bottom:8px !important}.m-lg-3{margin:16px !important}.mt-lg-3{margin-top:16px !important}.mr-lg-3{margin-right:16px !important}.mb-lg-3{margin-bottom:16px !important}.ml-lg-3{margin-left:16px !important}.mt-lg-n3{margin-top:-16px !important}.mr-lg-n3{margin-right:-16px !important}.mb-lg-n3{margin-bottom:-16px !important}.ml-lg-n3{margin-left:-16px !important}.mx-lg-3{margin-right:16px !important;margin-left:16px !important}.my-lg-3{margin-top:16px !important;margin-bottom:16px !important}.m-lg-4{margin:24px !important}.mt-lg-4{margin-top:24px !important}.mr-lg-4{margin-right:24px !important}.mb-lg-4{margin-bottom:24px !important}.ml-lg-4{margin-left:24px !important}.mt-lg-n4{margin-top:-24px !important}.mr-lg-n4{margin-right:-24px !important}.mb-lg-n4{margin-bottom:-24px !important}.ml-lg-n4{margin-left:-24px !important}.mx-lg-4{margin-right:24px !important;margin-left:24px !important}.my-lg-4{margin-top:24px !important;margin-bottom:24px !important}.m-lg-5{margin:32px !important}.mt-lg-5{margin-top:32px !important}.mr-lg-5{margin-right:32px !important}.mb-lg-5{margin-bottom:32px !important}.ml-lg-5{margin-left:32px !important}.mt-lg-n5{margin-top:-32px !important}.mr-lg-n5{margin-right:-32px !important}.mb-lg-n5{margin-bottom:-32px !important}.ml-lg-n5{margin-left:-32px !important}.mx-lg-5{margin-right:32px !important;margin-left:32px !important}.my-lg-5{margin-top:32px !important;margin-bottom:32px !important}.m-lg-6{margin:40px !important}.mt-lg-6{margin-top:40px !important}.mr-lg-6{margin-right:40px !important}.mb-lg-6{margin-bottom:40px !important}.ml-lg-6{margin-left:40px !important}.mt-lg-n6{margin-top:-40px !important}.mr-lg-n6{margin-right:-40px !important}.mb-lg-n6{margin-bottom:-40px !important}.ml-lg-n6{margin-left:-40px !important}.mx-lg-6{margin-right:40px !important;margin-left:40px !important}.my-lg-6{margin-top:40px !important;margin-bottom:40px !important}.mx-lg-auto{margin-right:auto !important;margin-left:auto !important}}@media (min-width: 1280px){.m-xl-0{margin:0 !important}.mt-xl-0{margin-top:0 !important}.mr-xl-0{margin-right:0 !important}.mb-xl-0{margin-bottom:0 !important}.ml-xl-0{margin-left:0 !important}.mx-xl-0{margin-right:0 !important;margin-left:0 !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.m-xl-1{margin:4px !important}.mt-xl-1{margin-top:4px !important}.mr-xl-1{margin-right:4px !important}.mb-xl-1{margin-bottom:4px !important}.ml-xl-1{margin-left:4px !important}.mt-xl-n1{margin-top:-4px !important}.mr-xl-n1{margin-right:-4px !important}.mb-xl-n1{margin-bottom:-4px !important}.ml-xl-n1{margin-left:-4px !important}.mx-xl-1{margin-right:4px !important;margin-left:4px !important}.my-xl-1{margin-top:4px !important;margin-bottom:4px !important}.m-xl-2{margin:8px !important}.mt-xl-2{margin-top:8px !important}.mr-xl-2{margin-right:8px !important}.mb-xl-2{margin-bottom:8px !important}.ml-xl-2{margin-left:8px !important}.mt-xl-n2{margin-top:-8px !important}.mr-xl-n2{margin-right:-8px !important}.mb-xl-n2{margin-bottom:-8px !important}.ml-xl-n2{margin-left:-8px !important}.mx-xl-2{margin-right:8px !important;margin-left:8px !important}.my-xl-2{margin-top:8px !important;margin-bottom:8px !important}.m-xl-3{margin:16px !important}.mt-xl-3{margin-top:16px !important}.mr-xl-3{margin-right:16px !important}.mb-xl-3{margin-bottom:16px !important}.ml-xl-3{margin-left:16px !important}.mt-xl-n3{margin-top:-16px !important}.mr-xl-n3{margin-right:-16px !important}.mb-xl-n3{margin-bottom:-16px !important}.ml-xl-n3{margin-left:-16px !important}.mx-xl-3{margin-right:16px !important;margin-left:16px !important}.my-xl-3{margin-top:16px !important;margin-bottom:16px !important}.m-xl-4{margin:24px !important}.mt-xl-4{margin-top:24px !important}.mr-xl-4{margin-right:24px !important}.mb-xl-4{margin-bottom:24px !important}.ml-xl-4{margin-left:24px !important}.mt-xl-n4{margin-top:-24px !important}.mr-xl-n4{margin-right:-24px !important}.mb-xl-n4{margin-bottom:-24px !important}.ml-xl-n4{margin-left:-24px !important}.mx-xl-4{margin-right:24px !important;margin-left:24px !important}.my-xl-4{margin-top:24px !important;margin-bottom:24px !important}.m-xl-5{margin:32px !important}.mt-xl-5{margin-top:32px !important}.mr-xl-5{margin-right:32px !important}.mb-xl-5{margin-bottom:32px !important}.ml-xl-5{margin-left:32px !important}.mt-xl-n5{margin-top:-32px !important}.mr-xl-n5{margin-right:-32px !important}.mb-xl-n5{margin-bottom:-32px !important}.ml-xl-n5{margin-left:-32px !important}.mx-xl-5{margin-right:32px !important;margin-left:32px !important}.my-xl-5{margin-top:32px !important;margin-bottom:32px !important}.m-xl-6{margin:40px !important}.mt-xl-6{margin-top:40px !important}.mr-xl-6{margin-right:40px !important}.mb-xl-6{margin-bottom:40px !important}.ml-xl-6{margin-left:40px !important}.mt-xl-n6{margin-top:-40px !important}.mr-xl-n6{margin-right:-40px !important}.mb-xl-n6{margin-bottom:-40px !important}.ml-xl-n6{margin-left:-40px !important}.mx-xl-6{margin-right:40px !important;margin-left:40px !important}.my-xl-6{margin-top:40px !important;margin-bottom:40px !important}.mx-xl-auto{margin-right:auto !important;margin-left:auto !important}}.p-0{padding:0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.px-0{padding-right:0 !important;padding-left:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.p-1{padding:4px !important}.pt-1{padding-top:4px !important}.pr-1{padding-right:4px !important}.pb-1{padding-bottom:4px !important}.pl-1{padding-left:4px !important}.px-1{padding-right:4px !important;padding-left:4px !important}.py-1{padding-top:4px !important;padding-bottom:4px !important}.p-2{padding:8px !important}.pt-2{padding-top:8px !important}.pr-2{padding-right:8px !important}.pb-2{padding-bottom:8px !important}.pl-2{padding-left:8px !important}.px-2{padding-right:8px !important;padding-left:8px !important}.py-2{padding-top:8px !important;padding-bottom:8px !important}.p-3{padding:16px !important}.pt-3{padding-top:16px !important}.pr-3{padding-right:16px !important}.pb-3{padding-bottom:16px !important}.pl-3{padding-left:16px !important}.px-3{padding-right:16px !important;padding-left:16px !important}.py-3{padding-top:16px !important;padding-bottom:16px !important}.p-4{padding:24px !important}.pt-4{padding-top:24px !important}.pr-4{padding-right:24px !important}.pb-4{padding-bottom:24px !important}.pl-4{padding-left:24px !important}.px-4{padding-right:24px !important;padding-left:24px !important}.py-4{padding-top:24px !important;padding-bottom:24px !important}.p-5{padding:32px !important}.pt-5{padding-top:32px !important}.pr-5{padding-right:32px !important}.pb-5{padding-bottom:32px !important}.pl-5{padding-left:32px !important}.px-5{padding-right:32px !important;padding-left:32px !important}.py-5{padding-top:32px !important;padding-bottom:32px !important}.p-6{padding:40px !important}.pt-6{padding-top:40px !important}.pr-6{padding-right:40px !important}.pb-6{padding-bottom:40px !important}.pl-6{padding-left:40px !important}.px-6{padding-right:40px !important;padding-left:40px !important}.py-6{padding-top:40px !important;padding-bottom:40px !important}@media (min-width: 544px){.p-sm-0{padding:0 !important}.pt-sm-0{padding-top:0 !important}.pr-sm-0{padding-right:0 !important}.pb-sm-0{padding-bottom:0 !important}.pl-sm-0{padding-left:0 !important}.px-sm-0{padding-right:0 !important;padding-left:0 !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.p-sm-1{padding:4px !important}.pt-sm-1{padding-top:4px !important}.pr-sm-1{padding-right:4px !important}.pb-sm-1{padding-bottom:4px !important}.pl-sm-1{padding-left:4px !important}.px-sm-1{padding-right:4px !important;padding-left:4px !important}.py-sm-1{padding-top:4px !important;padding-bottom:4px !important}.p-sm-2{padding:8px !important}.pt-sm-2{padding-top:8px !important}.pr-sm-2{padding-right:8px !important}.pb-sm-2{padding-bottom:8px !important}.pl-sm-2{padding-left:8px !important}.px-sm-2{padding-right:8px !important;padding-left:8px !important}.py-sm-2{padding-top:8px !important;padding-bottom:8px !important}.p-sm-3{padding:16px !important}.pt-sm-3{padding-top:16px !important}.pr-sm-3{padding-right:16px !important}.pb-sm-3{padding-bottom:16px !important}.pl-sm-3{padding-left:16px !important}.px-sm-3{padding-right:16px !important;padding-left:16px !important}.py-sm-3{padding-top:16px !important;padding-bottom:16px !important}.p-sm-4{padding:24px !important}.pt-sm-4{padding-top:24px !important}.pr-sm-4{padding-right:24px !important}.pb-sm-4{padding-bottom:24px !important}.pl-sm-4{padding-left:24px !important}.px-sm-4{padding-right:24px !important;padding-left:24px !important}.py-sm-4{padding-top:24px !important;padding-bottom:24px !important}.p-sm-5{padding:32px !important}.pt-sm-5{padding-top:32px !important}.pr-sm-5{padding-right:32px !important}.pb-sm-5{padding-bottom:32px !important}.pl-sm-5{padding-left:32px !important}.px-sm-5{padding-right:32px !important;padding-left:32px !important}.py-sm-5{padding-top:32px !important;padding-bottom:32px !important}.p-sm-6{padding:40px !important}.pt-sm-6{padding-top:40px !important}.pr-sm-6{padding-right:40px !important}.pb-sm-6{padding-bottom:40px !important}.pl-sm-6{padding-left:40px !important}.px-sm-6{padding-right:40px !important;padding-left:40px !important}.py-sm-6{padding-top:40px !important;padding-bottom:40px !important}}@media (min-width: 768px){.p-md-0{padding:0 !important}.pt-md-0{padding-top:0 !important}.pr-md-0{padding-right:0 !important}.pb-md-0{padding-bottom:0 !important}.pl-md-0{padding-left:0 !important}.px-md-0{padding-right:0 !important;padding-left:0 !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.p-md-1{padding:4px !important}.pt-md-1{padding-top:4px !important}.pr-md-1{padding-right:4px !important}.pb-md-1{padding-bottom:4px !important}.pl-md-1{padding-left:4px !important}.px-md-1{padding-right:4px !important;padding-left:4px !important}.py-md-1{padding-top:4px !important;padding-bottom:4px !important}.p-md-2{padding:8px !important}.pt-md-2{padding-top:8px !important}.pr-md-2{padding-right:8px !important}.pb-md-2{padding-bottom:8px !important}.pl-md-2{padding-left:8px !important}.px-md-2{padding-right:8px !important;padding-left:8px !important}.py-md-2{padding-top:8px !important;padding-bottom:8px !important}.p-md-3{padding:16px !important}.pt-md-3{padding-top:16px !important}.pr-md-3{padding-right:16px !important}.pb-md-3{padding-bottom:16px !important}.pl-md-3{padding-left:16px !important}.px-md-3{padding-right:16px !important;padding-left:16px !important}.py-md-3{padding-top:16px !important;padding-bottom:16px !important}.p-md-4{padding:24px !important}.pt-md-4{padding-top:24px !important}.pr-md-4{padding-right:24px !important}.pb-md-4{padding-bottom:24px !important}.pl-md-4{padding-left:24px !important}.px-md-4{padding-right:24px !important;padding-left:24px !important}.py-md-4{padding-top:24px !important;padding-bottom:24px !important}.p-md-5{padding:32px !important}.pt-md-5{padding-top:32px !important}.pr-md-5{padding-right:32px !important}.pb-md-5{padding-bottom:32px !important}.pl-md-5{padding-left:32px !important}.px-md-5{padding-right:32px !important;padding-left:32px !important}.py-md-5{padding-top:32px !important;padding-bottom:32px !important}.p-md-6{padding:40px !important}.pt-md-6{padding-top:40px !important}.pr-md-6{padding-right:40px !important}.pb-md-6{padding-bottom:40px !important}.pl-md-6{padding-left:40px !important}.px-md-6{padding-right:40px !important;padding-left:40px !important}.py-md-6{padding-top:40px !important;padding-bottom:40px !important}}@media (min-width: 1012px){.p-lg-0{padding:0 !important}.pt-lg-0{padding-top:0 !important}.pr-lg-0{padding-right:0 !important}.pb-lg-0{padding-bottom:0 !important}.pl-lg-0{padding-left:0 !important}.px-lg-0{padding-right:0 !important;padding-left:0 !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.p-lg-1{padding:4px !important}.pt-lg-1{padding-top:4px !important}.pr-lg-1{padding-right:4px !important}.pb-lg-1{padding-bottom:4px !important}.pl-lg-1{padding-left:4px !important}.px-lg-1{padding-right:4px !important;padding-left:4px !important}.py-lg-1{padding-top:4px !important;padding-bottom:4px !important}.p-lg-2{padding:8px !important}.pt-lg-2{padding-top:8px !important}.pr-lg-2{padding-right:8px !important}.pb-lg-2{padding-bottom:8px !important}.pl-lg-2{padding-left:8px !important}.px-lg-2{padding-right:8px !important;padding-left:8px !important}.py-lg-2{padding-top:8px !important;padding-bottom:8px !important}.p-lg-3{padding:16px !important}.pt-lg-3{padding-top:16px !important}.pr-lg-3{padding-right:16px !important}.pb-lg-3{padding-bottom:16px !important}.pl-lg-3{padding-left:16px !important}.px-lg-3{padding-right:16px !important;padding-left:16px !important}.py-lg-3{padding-top:16px !important;padding-bottom:16px !important}.p-lg-4{padding:24px !important}.pt-lg-4{padding-top:24px !important}.pr-lg-4{padding-right:24px !important}.pb-lg-4{padding-bottom:24px !important}.pl-lg-4{padding-left:24px !important}.px-lg-4{padding-right:24px !important;padding-left:24px !important}.py-lg-4{padding-top:24px !important;padding-bottom:24px !important}.p-lg-5{padding:32px !important}.pt-lg-5{padding-top:32px !important}.pr-lg-5{padding-right:32px !important}.pb-lg-5{padding-bottom:32px !important}.pl-lg-5{padding-left:32px !important}.px-lg-5{padding-right:32px !important;padding-left:32px !important}.py-lg-5{padding-top:32px !important;padding-bottom:32px !important}.p-lg-6{padding:40px !important}.pt-lg-6{padding-top:40px !important}.pr-lg-6{padding-right:40px !important}.pb-lg-6{padding-bottom:40px !important}.pl-lg-6{padding-left:40px !important}.px-lg-6{padding-right:40px !important;padding-left:40px !important}.py-lg-6{padding-top:40px !important;padding-bottom:40px !important}}@media (min-width: 1280px){.p-xl-0{padding:0 !important}.pt-xl-0{padding-top:0 !important}.pr-xl-0{padding-right:0 !important}.pb-xl-0{padding-bottom:0 !important}.pl-xl-0{padding-left:0 !important}.px-xl-0{padding-right:0 !important;padding-left:0 !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.p-xl-1{padding:4px !important}.pt-xl-1{padding-top:4px !important}.pr-xl-1{padding-right:4px !important}.pb-xl-1{padding-bottom:4px !important}.pl-xl-1{padding-left:4px !important}.px-xl-1{padding-right:4px !important;padding-left:4px !important}.py-xl-1{padding-top:4px !important;padding-bottom:4px !important}.p-xl-2{padding:8px !important}.pt-xl-2{padding-top:8px !important}.pr-xl-2{padding-right:8px !important}.pb-xl-2{padding-bottom:8px !important}.pl-xl-2{padding-left:8px !important}.px-xl-2{padding-right:8px !important;padding-left:8px !important}.py-xl-2{padding-top:8px !important;padding-bottom:8px !important}.p-xl-3{padding:16px !important}.pt-xl-3{padding-top:16px !important}.pr-xl-3{padding-right:16px !important}.pb-xl-3{padding-bottom:16px !important}.pl-xl-3{padding-left:16px !important}.px-xl-3{padding-right:16px !important;padding-left:16px !important}.py-xl-3{padding-top:16px !important;padding-bottom:16px !important}.p-xl-4{padding:24px !important}.pt-xl-4{padding-top:24px !important}.pr-xl-4{padding-right:24px !important}.pb-xl-4{padding-bottom:24px !important}.pl-xl-4{padding-left:24px !important}.px-xl-4{padding-right:24px !important;padding-left:24px !important}.py-xl-4{padding-top:24px !important;padding-bottom:24px !important}.p-xl-5{padding:32px !important}.pt-xl-5{padding-top:32px !important}.pr-xl-5{padding-right:32px !important}.pb-xl-5{padding-bottom:32px !important}.pl-xl-5{padding-left:32px !important}.px-xl-5{padding-right:32px !important;padding-left:32px !important}.py-xl-5{padding-top:32px !important;padding-bottom:32px !important}.p-xl-6{padding:40px !important}.pt-xl-6{padding-top:40px !important}.pr-xl-6{padding-right:40px !important}.pb-xl-6{padding-bottom:40px !important}.pl-xl-6{padding-left:40px !important}.px-xl-6{padding-right:40px !important;padding-left:40px !important}.py-xl-6{padding-top:40px !important;padding-bottom:40px !important}}.p-responsive{padding-right:16px !important;padding-left:16px !important}@media (min-width: 544px){.p-responsive{padding-right:40px !important;padding-left:40px !important}}@media (min-width: 1012px){.p-responsive{padding-right:16px !important;padding-left:16px !important}}.h1{font-size:26px !important}@media (min-width: 768px){.h1{font-size:32px !important}}.h2{font-size:22px !important}@media (min-width: 768px){.h2{font-size:24px !important}}.h3{font-size:18px !important}@media (min-width: 768px){.h3{font-size:20px !important}}.h4{font-size:16px !important}.h5{font-size:14px !important}.h6{font-size:12px !important}.h1,.h2,.h3,.h4,.h5,.h6{font-weight:600 !important}.f1{font-size:26px !important}@media (min-width: 768px){.f1{font-size:32px !important}}.f2{font-size:22px !important}@media (min-width: 768px){.f2{font-size:24px !important}}.f3{font-size:18px !important}@media (min-width: 768px){.f3{font-size:20px !important}}.f4{font-size:16px !important}@media (min-width: 768px){.f4{font-size:16px !important}}.f5{font-size:14px !important}.f6{font-size:12px !important}.f00-light{font-size:40px !important;font-weight:300 !important}@media (min-width: 768px){.f00-light{font-size:48px !important}}.f0-light{font-size:32px !important;font-weight:300 !important}@media (min-width: 768px){.f0-light{font-size:40px !important}}.f1-light{font-size:26px !important;font-weight:300 !important}@media (min-width: 768px){.f1-light{font-size:32px !important}}.f2-light{font-size:22px !important;font-weight:300 !important}@media (min-width: 768px){.f2-light{font-size:24px !important}}.f3-light{font-size:18px !important;font-weight:300 !important}@media (min-width: 768px){.f3-light{font-size:20px !important}}.text-small{font-size:12px !important}.lead{margin-bottom:30px;font-size:20px;font-weight:300;color:#586069}.lh-condensed-ultra{line-height:1 !important}.lh-condensed{line-height:1.25 !important}.lh-default{line-height:1.5 !important}.lh-0{line-height:0 !important}.text-right{text-align:right !important}.text-left{text-align:left !important}.text-center{text-align:center !important}@media (min-width: 544px){.text-sm-right{text-align:right !important}.text-sm-left{text-align:left !important}.text-sm-center{text-align:center !important}}@media (min-width: 768px){.text-md-right{text-align:right !important}.text-md-left{text-align:left !important}.text-md-center{text-align:center !important}}@media (min-width: 1012px){.text-lg-right{text-align:right !important}.text-lg-left{text-align:left !important}.text-lg-center{text-align:center !important}}@media (min-width: 1280px){.text-xl-right{text-align:right !important}.text-xl-left{text-align:left !important}.text-xl-center{text-align:center !important}}.text-normal{font-weight:400 !important}.text-bold{font-weight:600 !important}.text-italic{font-style:italic !important}.text-uppercase{text-transform:uppercase !important}.text-underline{text-decoration:underline !important}.no-underline{text-decoration:none !important}.no-wrap{white-space:nowrap !important}.ws-normal{white-space:normal !important}.wb-break-all{word-break:break-all !important}.text-emphasized{font-weight:600;color:#24292e}.list-style-none{list-style:none !important}.text-shadow-dark{text-shadow:0 1px 1px rgba(27,31,35,0.25),0 1px 25px rgba(27,31,35,0.75)}.text-shadow-light{text-shadow:0 1px 0 rgba(255,255,255,0.5)}.text-mono{font-family:"SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace}.user-select-none{user-select:none !important}.d-block{display:block !important}.d-flex{display:flex !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-inline-flex{display:inline-flex !important}.d-none{display:none !important}.d-table{display:table !important}.d-table-cell{display:table-cell !important}@media (min-width: 544px){.d-sm-block{display:block !important}.d-sm-flex{display:flex !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-inline-flex{display:inline-flex !important}.d-sm-none{display:none !important}.d-sm-table{display:table !important}.d-sm-table-cell{display:table-cell !important}}@media (min-width: 768px){.d-md-block{display:block !important}.d-md-flex{display:flex !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-inline-flex{display:inline-flex !important}.d-md-none{display:none !important}.d-md-table{display:table !important}.d-md-table-cell{display:table-cell !important}}@media (min-width: 1012px){.d-lg-block{display:block !important}.d-lg-flex{display:flex !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-inline-flex{display:inline-flex !important}.d-lg-none{display:none !important}.d-lg-table{display:table !important}.d-lg-table-cell{display:table-cell !important}}@media (min-width: 1280px){.d-xl-block{display:block !important}.d-xl-flex{display:flex !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-inline-flex{display:inline-flex !important}.d-xl-none{display:none !important}.d-xl-table{display:table !important}.d-xl-table-cell{display:table-cell !important}}.v-hidden{visibility:hidden !important}.v-visible{visibility:visible !important}@media (max-width: 544px){.hide-sm{display:none !important}}@media (min-width: 544px) and (max-width: 768px){.hide-md{display:none !important}}@media (min-width: 768px) and (max-width: 1012px){.hide-lg{display:none !important}}@media (min-width: 1012px){.hide-xl{display:none !important}}.table-fixed{table-layout:fixed !important}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);word-wrap:normal;border:0}.show-on-focus{position:absolute;width:1px;height:1px;margin:0;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}.show-on-focus:focus{z-index:20;width:auto;height:auto;clip:auto}.container{width:980px;margin-right:auto;margin-left:auto}.container::before{display:table;content:""}.container::after{display:table;clear:both;content:""}.container-md{max-width:768px;margin-right:auto;margin-left:auto}.container-lg{max-width:1012px;margin-right:auto;margin-left:auto}.container-xl{max-width:1280px;margin-right:auto;margin-left:auto}.columns{margin-right:-10px;margin-left:-10px}.columns::before{display:table;content:""}.columns::after{display:table;clear:both;content:""}.column{float:left;padding-right:10px;padding-left:10px}.one-third{width:33.333333%}.two-thirds{width:66.666667%}.one-fourth{width:25%}.one-half{width:50%}.three-fourths{width:75%}.one-fifth{width:20%}.four-fifths{width:80%}.centered{display:block;float:none;margin-right:auto;margin-left:auto}.col-1{width:8.3333333333%}.col-2{width:16.6666666667%}.col-3{width:25%}.col-4{width:33.3333333333%}.col-5{width:41.6666666667%}.col-6{width:50%}.col-7{width:58.3333333333%}.col-8{width:66.6666666667%}.col-9{width:75%}.col-10{width:83.3333333333%}.col-11{width:91.6666666667%}.col-12{width:100%}@media (min-width: 544px){.col-sm-1{width:8.3333333333%}.col-sm-2{width:16.6666666667%}.col-sm-3{width:25%}.col-sm-4{width:33.3333333333%}.col-sm-5{width:41.6666666667%}.col-sm-6{width:50%}.col-sm-7{width:58.3333333333%}.col-sm-8{width:66.6666666667%}.col-sm-9{width:75%}.col-sm-10{width:83.3333333333%}.col-sm-11{width:91.6666666667%}.col-sm-12{width:100%}}@media (min-width: 768px){.col-md-1{width:8.3333333333%}.col-md-2{width:16.6666666667%}.col-md-3{width:25%}.col-md-4{width:33.3333333333%}.col-md-5{width:41.6666666667%}.col-md-6{width:50%}.col-md-7{width:58.3333333333%}.col-md-8{width:66.6666666667%}.col-md-9{width:75%}.col-md-10{width:83.3333333333%}.col-md-11{width:91.6666666667%}.col-md-12{width:100%}}@media (min-width: 1012px){.col-lg-1{width:8.3333333333%}.col-lg-2{width:16.6666666667%}.col-lg-3{width:25%}.col-lg-4{width:33.3333333333%}.col-lg-5{width:41.6666666667%}.col-lg-6{width:50%}.col-lg-7{width:58.3333333333%}.col-lg-8{width:66.6666666667%}.col-lg-9{width:75%}.col-lg-10{width:83.3333333333%}.col-lg-11{width:91.6666666667%}.col-lg-12{width:100%}}@media (min-width: 1280px){.col-xl-1{width:8.3333333333%}.col-xl-2{width:16.6666666667%}.col-xl-3{width:25%}.col-xl-4{width:33.3333333333%}.col-xl-5{width:41.6666666667%}.col-xl-6{width:50%}.col-xl-7{width:58.3333333333%}.col-xl-8{width:66.6666666667%}.col-xl-9{width:75%}.col-xl-10{width:83.3333333333%}.col-xl-11{width:91.6666666667%}.col-xl-12{width:100%}}.gutter{margin-right:-16px;margin-left:-16px}.gutter>[class*="col-"]{padding-right:16px !important;padding-left:16px !important}.gutter-condensed{margin-right:-8px;margin-left:-8px}.gutter-condensed>[class*="col-"]{padding-right:8px !important;padding-left:8px !important}.gutter-spacious{margin-right:-24px;margin-left:-24px}.gutter-spacious>[class*="col-"]{padding-right:24px !important;padding-left:24px !important}@media (min-width: 544px){.gutter-sm{margin-right:-16px;margin-left:-16px}.gutter-sm>[class*="col-"]{padding-right:16px !important;padding-left:16px !important}.gutter-sm-condensed{margin-right:-8px;margin-left:-8px}.gutter-sm-condensed>[class*="col-"]{padding-right:8px !important;padding-left:8px !important}.gutter-sm-spacious{margin-right:-24px;margin-left:-24px}.gutter-sm-spacious>[class*="col-"]{padding-right:24px !important;padding-left:24px !important}}@media (min-width: 768px){.gutter-md{margin-right:-16px;margin-left:-16px}.gutter-md>[class*="col-"]{padding-right:16px !important;padding-left:16px !important}.gutter-md-condensed{margin-right:-8px;margin-left:-8px}.gutter-md-condensed>[class*="col-"]{padding-right:8px !important;padding-left:8px !important}.gutter-md-spacious{margin-right:-24px;margin-left:-24px}.gutter-md-spacious>[class*="col-"]{padding-right:24px !important;padding-left:24px !important}}@media (min-width: 1012px){.gutter-lg{margin-right:-16px;margin-left:-16px}.gutter-lg>[class*="col-"]{padding-right:16px !important;padding-left:16px !important}.gutter-lg-condensed{margin-right:-8px;margin-left:-8px}.gutter-lg-condensed>[class*="col-"]{padding-right:8px !important;padding-left:8px !important}.gutter-lg-spacious{margin-right:-24px;margin-left:-24px}.gutter-lg-spacious>[class*="col-"]{padding-right:24px !important;padding-left:24px !important}}@media (min-width: 1280px){.gutter-xl{margin-right:-16px;margin-left:-16px}.gutter-xl>[class*="col-"]{padding-right:16px !important;padding-left:16px !important}.gutter-xl-condensed{margin-right:-8px;margin-left:-8px}.gutter-xl-condensed>[class*="col-"]{padding-right:8px !important;padding-left:8px !important}.gutter-xl-spacious{margin-right:-24px;margin-left:-24px}.gutter-xl-spacious>[class*="col-"]{padding-right:24px !important;padding-left:24px !important}}.offset-1{margin-left:8.3333333333% !important}.offset-2{margin-left:16.6666666667% !important}.offset-3{margin-left:25% !important}.offset-4{margin-left:33.3333333333% !important}.offset-5{margin-left:41.6666666667% !important}.offset-6{margin-left:50% !important}.offset-7{margin-left:58.3333333333% !important}.offset-8{margin-left:66.6666666667% !important}.offset-9{margin-left:75% !important}.offset-10{margin-left:83.3333333333% !important}.offset-11{margin-left:91.6666666667% !important}@media (min-width: 544px){.offset-sm-1{margin-left:8.3333333333% !important}.offset-sm-2{margin-left:16.6666666667% !important}.offset-sm-3{margin-left:25% !important}.offset-sm-4{margin-left:33.3333333333% !important}.offset-sm-5{margin-left:41.6666666667% !important}.offset-sm-6{margin-left:50% !important}.offset-sm-7{margin-left:58.3333333333% !important}.offset-sm-8{margin-left:66.6666666667% !important}.offset-sm-9{margin-left:75% !important}.offset-sm-10{margin-left:83.3333333333% !important}.offset-sm-11{margin-left:91.6666666667% !important}}@media (min-width: 768px){.offset-md-1{margin-left:8.3333333333% !important}.offset-md-2{margin-left:16.6666666667% !important}.offset-md-3{margin-left:25% !important}.offset-md-4{margin-left:33.3333333333% !important}.offset-md-5{margin-left:41.6666666667% !important}.offset-md-6{margin-left:50% !important}.offset-md-7{margin-left:58.3333333333% !important}.offset-md-8{margin-left:66.6666666667% !important}.offset-md-9{margin-left:75% !important}.offset-md-10{margin-left:83.3333333333% !important}.offset-md-11{margin-left:91.6666666667% !important}}@media (min-width: 1012px){.offset-lg-1{margin-left:8.3333333333% !important}.offset-lg-2{margin-left:16.6666666667% !important}.offset-lg-3{margin-left:25% !important}.offset-lg-4{margin-left:33.3333333333% !important}.offset-lg-5{margin-left:41.6666666667% !important}.offset-lg-6{margin-left:50% !important}.offset-lg-7{margin-left:58.3333333333% !important}.offset-lg-8{margin-left:66.6666666667% !important}.offset-lg-9{margin-left:75% !important}.offset-lg-10{margin-left:83.3333333333% !important}.offset-lg-11{margin-left:91.6666666667% !important}}@media (min-width: 1280px){.offset-xl-1{margin-left:8.3333333333% !important}.offset-xl-2{margin-left:16.6666666667% !important}.offset-xl-3{margin-left:25% !important}.offset-xl-4{margin-left:33.3333333333% !important}.offset-xl-5{margin-left:41.6666666667% !important}.offset-xl-6{margin-left:50% !important}.offset-xl-7{margin-left:58.3333333333% !important}.offset-xl-8{margin-left:66.6666666667% !important}.offset-xl-9{margin-left:75% !important}.offset-xl-10{margin-left:83.3333333333% !important}.offset-xl-11{margin-left:91.6666666667% !important}}.markdown-body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:16px;line-height:1.5;word-wrap:break-word}.markdown-body::before{display:table;content:""}.markdown-body::after{display:table;clear:both;content:""}.markdown-body>*:first-child{margin-top:0 !important}.markdown-body>*:last-child{margin-bottom:0 !important}.markdown-body a:not([href]){color:inherit;text-decoration:none}.markdown-body .absent{color:#cb2431}.markdown-body .anchor{float:left;padding-right:4px;margin-left:-20px;line-height:1}.markdown-body .anchor:focus{outline:none}.markdown-body p,.markdown-body blockquote,.markdown-body ul,.markdown-body ol,.markdown-body dl,.markdown-body table,.markdown-body pre{margin-top:0;margin-bottom:16px}.markdown-body hr{height:.25em;padding:0;margin:24px 0;background-color:#e1e4e8;border:0}.markdown-body blockquote{padding:0 1em;color:#6a737d;border-left:0.25em solid #dfe2e5}.markdown-body blockquote>:first-child{margin-top:0}.markdown-body blockquote>:last-child{margin-bottom:0}.markdown-body kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#444d56;vertical-align:middle;background-color:#fafbfc;border:solid 1px #c6cbd1;border-bottom-color:#959da5;border-radius:3px;box-shadow:inset 0 -1px 0 #959da5}.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{margin-top:24px;margin-bottom:16px;font-weight:600;line-height:1.25}.markdown-body h1 .octicon-link,.markdown-body h2 .octicon-link,.markdown-body h3 .octicon-link,.markdown-body h4 .octicon-link,.markdown-body h5 .octicon-link,.markdown-body h6 .octicon-link{color:#1b1f23;vertical-align:middle;visibility:hidden}.markdown-body h1:hover .anchor,.markdown-body h2:hover .anchor,.markdown-body h3:hover .anchor,.markdown-body h4:hover .anchor,.markdown-body h5:hover .anchor,.markdown-body h6:hover .anchor{text-decoration:none}.markdown-body h1:hover .anchor .octicon-link,.markdown-body h2:hover .anchor .octicon-link,.markdown-body h3:hover .anchor .octicon-link,.markdown-body h4:hover .anchor .octicon-link,.markdown-body h5:hover .anchor .octicon-link,.markdown-body h6:hover .anchor .octicon-link{visibility:visible}.markdown-body h1 tt,.markdown-body h1 code,.markdown-body h2 tt,.markdown-body h2 code,.markdown-body h3 tt,.markdown-body h3 code,.markdown-body h4 tt,.markdown-body h4 code,.markdown-body h5 tt,.markdown-body h5 code,.markdown-body h6 tt,.markdown-body h6 code{font-size:inherit}.markdown-body h1{padding-bottom:0.3em;font-size:2em;border-bottom:1px solid #eaecef}.markdown-body h2{padding-bottom:0.3em;font-size:1.5em;border-bottom:1px solid #eaecef}.markdown-body h3{font-size:1.25em}.markdown-body h4{font-size:1em}.markdown-body h5{font-size:0.875em}.markdown-body h6{font-size:0.85em;color:#6a737d}.markdown-body ul,.markdown-body ol{padding-left:2em}.markdown-body ul.no-list,.markdown-body ol.no-list{padding:0;list-style-type:none}.markdown-body ul ul,.markdown-body ul ol,.markdown-body ol ol,.markdown-body ol ul{margin-top:0;margin-bottom:0}.markdown-body li{word-wrap:break-all}.markdown-body li>p{margin-top:16px}.markdown-body li+li{margin-top:.25em}.markdown-body dl{padding:0}.markdown-body dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:600}.markdown-body dl dd{padding:0 16px;margin-bottom:16px}.markdown-body table{display:block;width:100%;overflow:auto}.markdown-body table th{font-weight:600}.markdown-body table th,.markdown-body table td{padding:6px 13px;border:1px solid #dfe2e5}.markdown-body table tr{background-color:#fff;border-top:1px solid #c6cbd1}.markdown-body table tr:nth-child(2n){background-color:#f6f8fa}.markdown-body table img{background-color:transparent}.markdown-body img{max-width:100%;box-sizing:content-box;background-color:#fff}.markdown-body img[align=right]{padding-left:20px}.markdown-body img[align=left]{padding-right:20px}.markdown-body .emoji{max-width:none;vertical-align:text-top;background-color:transparent}.markdown-body span.frame{display:block;overflow:hidden}.markdown-body span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #dfe2e5}.markdown-body span.frame span img{display:block;float:left}.markdown-body span.frame span span{display:block;padding:5px 0 0;clear:both;color:#24292e}.markdown-body span.align-center{display:block;overflow:hidden;clear:both}.markdown-body span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown-body span.align-center span img{margin:0 auto;text-align:center}.markdown-body span.align-right{display:block;overflow:hidden;clear:both}.markdown-body span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown-body span.align-right span img{margin:0;text-align:right}.markdown-body span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown-body span.float-left span{margin:13px 0 0}.markdown-body span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown-body span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown-body code,.markdown-body tt{padding:0.2em 0.4em;margin:0;font-size:85%;background-color:rgba(27,31,35,0.05);border-radius:3px}.markdown-body code br,.markdown-body tt br{display:none}.markdown-body del code{text-decoration:inherit}.markdown-body pre{word-wrap:normal}.markdown-body pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:transparent;border:0}.markdown-body .highlight{margin-bottom:16px}.markdown-body .highlight pre{margin-bottom:0;word-break:normal}.markdown-body .highlight pre,.markdown-body pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f6f8fa;border-radius:3px}.markdown-body pre code,.markdown-body pre tt{display:inline;max-width:auto;padding:0;margin:0;overflow:visible;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown-body .csv-data td,.markdown-body .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown-body .csv-data .blob-num{padding:10px 8px 9px;text-align:right;background:#fff;border:0}.markdown-body .csv-data tr{border-top:0}.markdown-body .csv-data th{font-weight:600;background:#f6f8fa;border-top:0}.highlight table td{padding:5px}.highlight table pre{margin:0}.highlight .cm{color:#999988;font-style:italic}.highlight .cp{color:#999999;font-weight:bold}.highlight .c1{color:#999988;font-style:italic}.highlight .cs{color:#999999;font-weight:bold;font-style:italic}.highlight .c,.highlight .cd{color:#999988;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .gd{color:#000000;background-color:#ffdddd}.highlight .ge{color:#000000;font-style:italic}.highlight .gr{color:#aa0000}.highlight .gh{color:#999999}.highlight .gi{color:#000000;background-color:#ddffdd}.highlight .go{color:#888888}.highlight .gp{color:#555555}.highlight .gs{font-weight:bold}.highlight .gu{color:#aaaaaa}.highlight .gt{color:#aa0000}.highlight .kc{color:#000000;font-weight:bold}.highlight .kd{color:#000000;font-weight:bold}.highlight .kn{color:#000000;font-weight:bold}.highlight .kp{color:#000000;font-weight:bold}.highlight .kr{color:#000000;font-weight:bold}.highlight .kt{color:#445588;font-weight:bold}.highlight .k,.highlight .kv{color:#000000;font-weight:bold}.highlight .mf{color:#009999}.highlight .mh{color:#009999}.highlight .il{color:#009999}.highlight .mi{color:#009999}.highlight .mo{color:#009999}.highlight .m,.highlight .mb,.highlight .mx{color:#009999}.highlight .sb{color:#d14}.highlight .sc{color:#d14}.highlight .sd{color:#d14}.highlight .s2{color:#d14}.highlight .se{color:#d14}.highlight .sh{color:#d14}.highlight .si{color:#d14}.highlight .sx{color:#d14}.highlight .sr{color:#009926}.highlight .s1{color:#d14}.highlight .ss{color:#990073}.highlight .s{color:#d14}.highlight .na{color:#008080}.highlight .bp{color:#999999}.highlight .nb{color:#0086B3}.highlight .nc{color:#445588;font-weight:bold}.highlight .no{color:#008080}.highlight .nd{color:#3c5d5d;font-weight:bold}.highlight .ni{color:#800080}.highlight .ne{color:#990000;font-weight:bold}.highlight .nf{color:#990000;font-weight:bold}.highlight .nl{color:#990000;font-weight:bold}.highlight .nn{color:#555555}.highlight .nt{color:#000080}.highlight .vc{color:#008080}.highlight .vg{color:#008080}.highlight .vi{color:#008080}.highlight .nv{color:#008080}.highlight .ow{color:#000000;font-weight:bold}.highlight .o{color:#000000;font-weight:bold}.highlight .w{color:#bbbbbb}.highlight{background-color:#f8f8f8} diff --git a/assets/css/styles_feeling_responsive.css b/assets/css/styles_feeling_responsive.css new file mode 100644 index 000000000..a63b038c8 --- /dev/null +++ b/assets/css/styles_feeling_responsive.css @@ -0,0 +1,4 @@ +.font-size-h1{font-size:2.441em}.font-size-h2{font-size:1.953em}.font-size-h3{font-size:1.563em}.font-size-h4{font-size:1.25em}.font-size-h5{font-size:1.152em}meta.foundation-version{font-family:"/5.5.0/"}meta.foundation-mq-small{font-family:"/only screen/";width:0em}meta.foundation-mq-small-only{font-family:"/only screen and (max-width: 40em)/";width:0em}meta.foundation-mq-medium{font-family:"/only screen and (min-width:40.063em)/";width:40.063em}meta.foundation-mq-medium-only{font-family:"/only screen and (min-width:40.063em) and (max-width:64em)/";width:40.063em}meta.foundation-mq-large{font-family:"/only screen and (min-width:64.063em)/";width:64.063em}meta.foundation-mq-large-only{font-family:"/only screen and (min-width:64.063em) and (max-width:90em)/";width:64.063em}meta.foundation-mq-xlarge{font-family:"/only screen and (min-width:90.063em)/";width:90.063em}meta.foundation-mq-xlarge-only{font-family:"/only screen and (min-width:90.063em) and (max-width:120em)/";width:90.063em}meta.foundation-mq-xxlarge{font-family:"/only screen and (min-width:120.063em)/";width:120.063em}meta.foundation-data-attribute-namespace{font-family:false}html,body{height:100%}*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html,body{font-size:16px}body{background:#fdfdfd;color:#111;padding:0;margin:0;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:normal;font-style:normal;line-height:1.5;position:relative;cursor:auto}a:hover{cursor:pointer}img{max-width:100%;height:auto}img{-ms-interpolation-mode:bicubic}#map_canvas img,#map_canvas embed,#map_canvas object,.map_canvas img,.map_canvas embed,.map_canvas object{max-width:none !important}.left{float:left !important}.right{float:right !important}.clearfix:before,.clearfix:after{content:" ";display:table}.clearfix:after{clear:both}.hide{display:none !important;visibility:hidden}.invisible{visibility:hidden}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}img{display:inline-block;vertical-align:middle}textarea{height:auto;min-height:50px}select{width:100%}/*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}.row{width:100%;margin-left:auto;margin-right:auto;margin-top:0;margin-bottom:0;max-width:62.5rem}.row:before,.row:after{content:" ";display:table}.row:after{clear:both}.row.collapse>.column,.row.collapse>.columns{padding-left:0;padding-right:0}.row.collapse .row{margin-left:0;margin-right:0}.row .row{width:auto;margin-left:-0.9375rem;margin-right:-0.9375rem;margin-top:0;margin-bottom:0;max-width:none}.row .row:before,.row .row:after{content:" ";display:table}.row .row:after{clear:both}.row .row.collapse{width:auto;margin:0;max-width:none}.row .row.collapse:before,.row .row.collapse:after{content:" ";display:table}.row .row.collapse:after{clear:both}.column,.columns{padding-left:.9375rem;padding-right:.9375rem;width:100%;float:left}[class*="column"]+[class*="column"]:last-child{float:right}[class*="column"]+[class*="column"].end{float:left}@media only screen{.small-push-0{position:relative;left:0%;right:auto}.small-pull-0{position:relative;right:0%;left:auto}.small-push-1{position:relative;left:8.3333333333%;right:auto}.small-pull-1{position:relative;right:8.3333333333%;left:auto}.small-push-2{position:relative;left:16.6666666667%;right:auto}.small-pull-2{position:relative;right:16.6666666667%;left:auto}.small-push-3{position:relative;left:25%;right:auto}.small-pull-3{position:relative;right:25%;left:auto}.small-push-4{position:relative;left:33.3333333333%;right:auto}.small-pull-4{position:relative;right:33.3333333333%;left:auto}.small-push-5{position:relative;left:41.6666666667%;right:auto}.small-pull-5{position:relative;right:41.6666666667%;left:auto}.small-push-6{position:relative;left:50%;right:auto}.small-pull-6{position:relative;right:50%;left:auto}.small-push-7{position:relative;left:58.3333333333%;right:auto}.small-pull-7{position:relative;right:58.3333333333%;left:auto}.small-push-8{position:relative;left:66.6666666667%;right:auto}.small-pull-8{position:relative;right:66.6666666667%;left:auto}.small-push-9{position:relative;left:75%;right:auto}.small-pull-9{position:relative;right:75%;left:auto}.small-push-10{position:relative;left:83.3333333333%;right:auto}.small-pull-10{position:relative;right:83.3333333333%;left:auto}.small-push-11{position:relative;left:91.6666666667%;right:auto}.small-pull-11{position:relative;right:91.6666666667%;left:auto}.column,.columns{position:relative;padding-left:.9375rem;padding-right:.9375rem;float:left}.small-1{width:8.3333333333%}.small-2{width:16.6666666667%}.small-3{width:25%}.small-4{width:33.3333333333%}.small-5{width:41.6666666667%}.small-6{width:50%}.small-7{width:58.3333333333%}.small-8{width:66.6666666667%}.small-9{width:75%}.small-10{width:83.3333333333%}.small-11{width:91.6666666667%}.small-12{width:100%}.small-offset-0{margin-left:0% !important}.small-offset-1{margin-left:8.3333333333% !important}.small-offset-2{margin-left:16.6666666667% !important}.small-offset-3{margin-left:25% !important}.small-offset-4{margin-left:33.3333333333% !important}.small-offset-5{margin-left:41.6666666667% !important}.small-offset-6{margin-left:50% !important}.small-offset-7{margin-left:58.3333333333% !important}.small-offset-8{margin-left:66.6666666667% !important}.small-offset-9{margin-left:75% !important}.small-offset-10{margin-left:83.3333333333% !important}.small-offset-11{margin-left:91.6666666667% !important}.small-reset-order{margin-left:0;margin-right:0;left:auto;right:auto;float:left}.column.small-centered,.columns.small-centered{margin-left:auto;margin-right:auto;float:none}.column.small-uncentered,.columns.small-uncentered{margin-left:0;margin-right:0;float:left}.column.small-centered:last-child,.columns.small-centered:last-child{float:none}.column.small-uncentered:last-child,.columns.small-uncentered:last-child{float:left}.column.small-uncentered.opposite,.columns.small-uncentered.opposite{float:right}.row.small-collapse>.column,.row.small-collapse>.columns{padding-left:0;padding-right:0}.row.small-collapse .row{margin-left:0;margin-right:0}.row.small-uncollapse>.column,.row.small-uncollapse>.columns{padding-left:.9375rem;padding-right:.9375rem;float:left}}@media only screen and (min-width: 40.063em){.medium-push-0{position:relative;left:0%;right:auto}.medium-pull-0{position:relative;right:0%;left:auto}.medium-push-1{position:relative;left:8.3333333333%;right:auto}.medium-pull-1{position:relative;right:8.3333333333%;left:auto}.medium-push-2{position:relative;left:16.6666666667%;right:auto}.medium-pull-2{position:relative;right:16.6666666667%;left:auto}.medium-push-3{position:relative;left:25%;right:auto}.medium-pull-3{position:relative;right:25%;left:auto}.medium-push-4{position:relative;left:33.3333333333%;right:auto}.medium-pull-4{position:relative;right:33.3333333333%;left:auto}.medium-push-5{position:relative;left:41.6666666667%;right:auto}.medium-pull-5{position:relative;right:41.6666666667%;left:auto}.medium-push-6{position:relative;left:50%;right:auto}.medium-pull-6{position:relative;right:50%;left:auto}.medium-push-7{position:relative;left:58.3333333333%;right:auto}.medium-pull-7{position:relative;right:58.3333333333%;left:auto}.medium-push-8{position:relative;left:66.6666666667%;right:auto}.medium-pull-8{position:relative;right:66.6666666667%;left:auto}.medium-push-9{position:relative;left:75%;right:auto}.medium-pull-9{position:relative;right:75%;left:auto}.medium-push-10{position:relative;left:83.3333333333%;right:auto}.medium-pull-10{position:relative;right:83.3333333333%;left:auto}.medium-push-11{position:relative;left:91.6666666667%;right:auto}.medium-pull-11{position:relative;right:91.6666666667%;left:auto}.column,.columns{position:relative;padding-left:.9375rem;padding-right:.9375rem;float:left}.medium-1{width:8.3333333333%}.medium-2{width:16.6666666667%}.medium-3{width:25%}.medium-4{width:33.3333333333%}.medium-5{width:41.6666666667%}.medium-6{width:50%}.medium-7{width:58.3333333333%}.medium-8{width:66.6666666667%}.medium-9{width:75%}.medium-10{width:83.3333333333%}.medium-11{width:91.6666666667%}.medium-12{width:100%}.medium-offset-0{margin-left:0% !important}.medium-offset-1{margin-left:8.3333333333% !important}.medium-offset-2{margin-left:16.6666666667% !important}.medium-offset-3{margin-left:25% !important}.medium-offset-4{margin-left:33.3333333333% !important}.medium-offset-5{margin-left:41.6666666667% !important}.medium-offset-6{margin-left:50% !important}.medium-offset-7{margin-left:58.3333333333% !important}.medium-offset-8{margin-left:66.6666666667% !important}.medium-offset-9{margin-left:75% !important}.medium-offset-10{margin-left:83.3333333333% !important}.medium-offset-11{margin-left:91.6666666667% !important}.medium-reset-order{margin-left:0;margin-right:0;left:auto;right:auto;float:left}.column.medium-centered,.columns.medium-centered{margin-left:auto;margin-right:auto;float:none}.column.medium-uncentered,.columns.medium-uncentered{margin-left:0;margin-right:0;float:left}.column.medium-centered:last-child,.columns.medium-centered:last-child{float:none}.column.medium-uncentered:last-child,.columns.medium-uncentered:last-child{float:left}.column.medium-uncentered.opposite,.columns.medium-uncentered.opposite{float:right}.row.medium-collapse>.column,.row.medium-collapse>.columns{padding-left:0;padding-right:0}.row.medium-collapse .row{margin-left:0;margin-right:0}.row.medium-uncollapse>.column,.row.medium-uncollapse>.columns{padding-left:.9375rem;padding-right:.9375rem;float:left}.push-0{position:relative;left:0%;right:auto}.pull-0{position:relative;right:0%;left:auto}.push-1{position:relative;left:8.3333333333%;right:auto}.pull-1{position:relative;right:8.3333333333%;left:auto}.push-2{position:relative;left:16.6666666667%;right:auto}.pull-2{position:relative;right:16.6666666667%;left:auto}.push-3{position:relative;left:25%;right:auto}.pull-3{position:relative;right:25%;left:auto}.push-4{position:relative;left:33.3333333333%;right:auto}.pull-4{position:relative;right:33.3333333333%;left:auto}.push-5{position:relative;left:41.6666666667%;right:auto}.pull-5{position:relative;right:41.6666666667%;left:auto}.push-6{position:relative;left:50%;right:auto}.pull-6{position:relative;right:50%;left:auto}.push-7{position:relative;left:58.3333333333%;right:auto}.pull-7{position:relative;right:58.3333333333%;left:auto}.push-8{position:relative;left:66.6666666667%;right:auto}.pull-8{position:relative;right:66.6666666667%;left:auto}.push-9{position:relative;left:75%;right:auto}.pull-9{position:relative;right:75%;left:auto}.push-10{position:relative;left:83.3333333333%;right:auto}.pull-10{position:relative;right:83.3333333333%;left:auto}.push-11{position:relative;left:91.6666666667%;right:auto}.pull-11{position:relative;right:91.6666666667%;left:auto}}@media only screen and (min-width: 64.063em){.large-push-0{position:relative;left:0%;right:auto}.large-pull-0{position:relative;right:0%;left:auto}.large-push-1{position:relative;left:8.3333333333%;right:auto}.large-pull-1{position:relative;right:8.3333333333%;left:auto}.large-push-2{position:relative;left:16.6666666667%;right:auto}.large-pull-2{position:relative;right:16.6666666667%;left:auto}.large-push-3{position:relative;left:25%;right:auto}.large-pull-3{position:relative;right:25%;left:auto}.large-push-4{position:relative;left:33.3333333333%;right:auto}.large-pull-4{position:relative;right:33.3333333333%;left:auto}.large-push-5{position:relative;left:41.6666666667%;right:auto}.large-pull-5{position:relative;right:41.6666666667%;left:auto}.large-push-6{position:relative;left:50%;right:auto}.large-pull-6{position:relative;right:50%;left:auto}.large-push-7{position:relative;left:58.3333333333%;right:auto}.large-pull-7{position:relative;right:58.3333333333%;left:auto}.large-push-8{position:relative;left:66.6666666667%;right:auto}.large-pull-8{position:relative;right:66.6666666667%;left:auto}.large-push-9{position:relative;left:75%;right:auto}.large-pull-9{position:relative;right:75%;left:auto}.large-push-10{position:relative;left:83.3333333333%;right:auto}.large-pull-10{position:relative;right:83.3333333333%;left:auto}.large-push-11{position:relative;left:91.6666666667%;right:auto}.large-pull-11{position:relative;right:91.6666666667%;left:auto}.column,.columns{position:relative;padding-left:.9375rem;padding-right:.9375rem;float:left}.large-1{width:8.3333333333%}.large-2{width:16.6666666667%}.large-3{width:25%}.large-4{width:33.3333333333%}.large-5{width:41.6666666667%}.large-6{width:50%}.large-7{width:58.3333333333%}.large-8{width:66.6666666667%}.large-9{width:75%}.large-10{width:83.3333333333%}.large-11{width:91.6666666667%}.large-12{width:100%}.large-offset-0{margin-left:0% !important}.large-offset-1{margin-left:8.3333333333% !important}.large-offset-2{margin-left:16.6666666667% !important}.large-offset-3{margin-left:25% !important}.large-offset-4{margin-left:33.3333333333% !important}.large-offset-5{margin-left:41.6666666667% !important}.large-offset-6{margin-left:50% !important}.large-offset-7{margin-left:58.3333333333% !important}.large-offset-8{margin-left:66.6666666667% !important}.large-offset-9{margin-left:75% !important}.large-offset-10{margin-left:83.3333333333% !important}.large-offset-11{margin-left:91.6666666667% !important}.large-reset-order{margin-left:0;margin-right:0;left:auto;right:auto;float:left}.column.large-centered,.columns.large-centered{margin-left:auto;margin-right:auto;float:none}.column.large-uncentered,.columns.large-uncentered{margin-left:0;margin-right:0;float:left}.column.large-centered:last-child,.columns.large-centered:last-child{float:none}.column.large-uncentered:last-child,.columns.large-uncentered:last-child{float:left}.column.large-uncentered.opposite,.columns.large-uncentered.opposite{float:right}.row.large-collapse>.column,.row.large-collapse>.columns{padding-left:0;padding-right:0}.row.large-collapse .row{margin-left:0;margin-right:0}.row.large-uncollapse>.column,.row.large-uncollapse>.columns{padding-left:.9375rem;padding-right:.9375rem;float:left}.push-0{position:relative;left:0%;right:auto}.pull-0{position:relative;right:0%;left:auto}.push-1{position:relative;left:8.3333333333%;right:auto}.pull-1{position:relative;right:8.3333333333%;left:auto}.push-2{position:relative;left:16.6666666667%;right:auto}.pull-2{position:relative;right:16.6666666667%;left:auto}.push-3{position:relative;left:25%;right:auto}.pull-3{position:relative;right:25%;left:auto}.push-4{position:relative;left:33.3333333333%;right:auto}.pull-4{position:relative;right:33.3333333333%;left:auto}.push-5{position:relative;left:41.6666666667%;right:auto}.pull-5{position:relative;right:41.6666666667%;left:auto}.push-6{position:relative;left:50%;right:auto}.pull-6{position:relative;right:50%;left:auto}.push-7{position:relative;left:58.3333333333%;right:auto}.pull-7{position:relative;right:58.3333333333%;left:auto}.push-8{position:relative;left:66.6666666667%;right:auto}.pull-8{position:relative;right:66.6666666667%;left:auto}.push-9{position:relative;left:75%;right:auto}.pull-9{position:relative;right:75%;left:auto}.push-10{position:relative;left:83.3333333333%;right:auto}.pull-10{position:relative;right:83.3333333333%;left:auto}.push-11{position:relative;left:91.6666666667%;right:auto}.pull-11{position:relative;right:91.6666666667%;left:auto}}button,.button{border-style:solid;border-width:0;cursor:pointer;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:normal;line-height:normal;margin:0 0 1.25rem;position:relative;text-decoration:none;text-align:center;-webkit-appearance:none;border-radius:0;display:inline-block;padding-top:1rem;padding-right:2rem;padding-bottom:1.0625rem;padding-left:2rem;font-size:1rem;background-color:#BA4A00;border-color:#953b00;color:#fff;transition:background-color 300ms ease-out}button:hover,button:focus,.button:hover,.button:focus{background-color:#953b00}button:hover,button:focus,.button:hover,.button:focus{color:#fff}button.secondary,.button.secondary{background-color:#FDEBD0;border-color:#f9c578;color:#333}button.secondary:hover,button.secondary:focus,.button.secondary:hover,.button.secondary:focus{background-color:#f9c578}button.secondary:hover,button.secondary:focus,.button.secondary:hover,.button.secondary:focus{color:#333}button.success,.button.success{background-color:#A1D044;border-color:#84b02c;color:#fff}button.success:hover,button.success:focus,.button.success:hover,.button.success:focus{background-color:#84b02c}button.success:hover,button.success:focus,.button.success:hover,.button.success:focus{color:#fff}button.alert,.button.alert{background-color:#DF4949;border-color:#c92323;color:#fff}button.alert:hover,button.alert:focus,.button.alert:hover,.button.alert:focus{background-color:#c92323}button.alert:hover,button.alert:focus,.button.alert:hover,.button.alert:focus{color:#fff}button.warning,.button.warning{background-color:#E27A3F;border-color:#c95c1e;color:#fff}button.warning:hover,button.warning:focus,.button.warning:hover,.button.warning:focus{background-color:#c95c1e}button.warning:hover,button.warning:focus,.button.warning:hover,.button.warning:focus{color:#fff}button.info,.button.info{background-color:#334D5C;border-color:#293e4a;color:#fff}button.info:hover,button.info:focus,.button.info:hover,.button.info:focus{background-color:#293e4a}button.info:hover,button.info:focus,.button.info:hover,.button.info:focus{color:#fff}button.large,.button.large{padding-top:1.125rem;padding-right:2.25rem;padding-bottom:1.1875rem;padding-left:2.25rem;font-size:1.25rem}button.small,.button.small{padding-top:.875rem;padding-right:1.75rem;padding-bottom:.9375rem;padding-left:1.75rem;font-size:.8125rem}button.tiny,.button.tiny{padding-top:.625rem;padding-right:1.25rem;padding-bottom:.6875rem;padding-left:1.25rem;font-size:.6875rem}button.expand,.button.expand{padding-right:0;padding-left:0;width:100%}button.left-align,.button.left-align{text-align:left;text-indent:.75rem}button.right-align,.button.right-align{text-align:right;padding-right:.75rem}button.radius,.button.radius{border-radius:3px}button.round,.button.round{border-radius:1000px}button.disabled,button[disabled],.button.disabled,.button[disabled]{background-color:#BA4A00;border-color:#953b00;color:#fff;cursor:default;opacity:.7;box-shadow:none}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{background-color:#953b00}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{color:#fff}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{background-color:#BA4A00}button.disabled.secondary,button[disabled].secondary,.button.disabled.secondary,.button[disabled].secondary{background-color:#FDEBD0;border-color:#f9c578;color:#333;cursor:default;opacity:.7;box-shadow:none}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{background-color:#f9c578}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{color:#333}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{background-color:#FDEBD0}button.disabled.success,button[disabled].success,.button.disabled.success,.button[disabled].success{background-color:#A1D044;border-color:#84b02c;color:#fff;cursor:default;opacity:.7;box-shadow:none}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{background-color:#84b02c}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{color:#fff}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{background-color:#A1D044}button.disabled.alert,button[disabled].alert,.button.disabled.alert,.button[disabled].alert{background-color:#DF4949;border-color:#c92323;color:#fff;cursor:default;opacity:.7;box-shadow:none}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{background-color:#c92323}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{color:#fff}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{background-color:#DF4949}button.disabled.warning,button[disabled].warning,.button.disabled.warning,.button[disabled].warning{background-color:#E27A3F;border-color:#c95c1e;color:#fff;cursor:default;opacity:.7;box-shadow:none}button.disabled.warning:hover,button.disabled.warning:focus,button[disabled].warning:hover,button[disabled].warning:focus,.button.disabled.warning:hover,.button.disabled.warning:focus,.button[disabled].warning:hover,.button[disabled].warning:focus{background-color:#c95c1e}button.disabled.warning:hover,button.disabled.warning:focus,button[disabled].warning:hover,button[disabled].warning:focus,.button.disabled.warning:hover,.button.disabled.warning:focus,.button[disabled].warning:hover,.button[disabled].warning:focus{color:#fff}button.disabled.warning:hover,button.disabled.warning:focus,button[disabled].warning:hover,button[disabled].warning:focus,.button.disabled.warning:hover,.button.disabled.warning:focus,.button[disabled].warning:hover,.button[disabled].warning:focus{background-color:#E27A3F}button.disabled.info,button[disabled].info,.button.disabled.info,.button[disabled].info{background-color:#334D5C;border-color:#293e4a;color:#fff;cursor:default;opacity:.7;box-shadow:none}button.disabled.info:hover,button.disabled.info:focus,button[disabled].info:hover,button[disabled].info:focus,.button.disabled.info:hover,.button.disabled.info:focus,.button[disabled].info:hover,.button[disabled].info:focus{background-color:#293e4a}button.disabled.info:hover,button.disabled.info:focus,button[disabled].info:hover,button[disabled].info:focus,.button.disabled.info:hover,.button.disabled.info:focus,.button[disabled].info:hover,.button[disabled].info:focus{color:#fff}button.disabled.info:hover,button.disabled.info:focus,button[disabled].info:hover,button[disabled].info:focus,.button.disabled.info:hover,.button.disabled.info:focus,.button[disabled].info:hover,.button[disabled].info:focus{background-color:#334D5C}button::-moz-focus-inner{border:0;padding:0}@media only screen and (min-width: 40.063em){button,.button{display:inline-block}}form{margin:0 0 1rem}form .row .row{margin:0 -.5rem}form .row .row .column,form .row .row .columns{padding:0 .5rem}form .row .row.collapse{margin:0}form .row .row.collapse .column,form .row .row.collapse .columns{padding:0}form .row .row.collapse input{-webkit-border-bottom-right-radius:0;-webkit-border-top-right-radius:0;border-bottom-right-radius:0;border-top-right-radius:0}form .row input.column,form .row input.columns,form .row textarea.column,form .row textarea.columns{padding-left:.5rem}label{font-size:.875rem;color:#4d4d4d;cursor:pointer;display:block;font-weight:normal;line-height:1.5;margin-bottom:0}label.right{float:none !important;text-align:right}label.inline{margin:0 0 1rem 0;padding:.5625rem 0}label small{text-transform:capitalize;color:#676767}.prefix,.postfix{display:block;position:relative;z-index:2;text-align:center;width:100%;padding-top:0;padding-bottom:0;border-style:solid;border-width:1px;overflow:hidden;font-size:.875rem;height:2.3125rem;line-height:2.3125rem}.postfix.button{padding-left:0;padding-right:0;padding-top:0;padding-bottom:0;text-align:center;border:none}.prefix.button{padding-left:0;padding-right:0;padding-top:0;padding-bottom:0;text-align:center;border:none}.prefix.button.radius{border-radius:0;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.postfix.button.radius{border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}.prefix.button.round{border-radius:0;-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}.postfix.button.round{border-radius:0;-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}span.prefix,label.prefix{background:#f2f2f2;border-right:none;color:#333;border-color:#ccc}span.postfix,label.postfix{background:#f2f2f2;border-left:none;color:#333;border-color:#ccc}input[type="text"],input[type="password"],input[type="date"],input[type="datetime"],input[type="datetime-local"],input[type="month"],input[type="week"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="time"],input[type="url"],input[type="color"],textarea{-webkit-appearance:none;border-radius:0;background-color:#fff;font-family:inherit;border-style:solid;border-width:1px;border-color:#ccc;box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);color:rgba(0,0,0,0.75);display:block;font-size:.875rem;margin:0 0 1rem 0;padding:.5rem;height:2.3125rem;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;transition:box-shadow .45s,border-color .45s ease-in-out}input[type="text"]:focus,input[type="password"]:focus,input[type="date"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="month"]:focus,input[type="week"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="time"]:focus,input[type="url"]:focus,input[type="color"]:focus,textarea:focus{box-shadow:0 0 5px #999;border-color:#999}input[type="text"]:focus,input[type="password"]:focus,input[type="date"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="month"]:focus,input[type="week"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="time"]:focus,input[type="url"]:focus,input[type="color"]:focus,textarea:focus{background:#fafafa;border-color:#999;outline:none}input[type="text"]:disabled,input[type="password"]:disabled,input[type="date"]:disabled,input[type="datetime"]:disabled,input[type="datetime-local"]:disabled,input[type="month"]:disabled,input[type="week"]:disabled,input[type="email"]:disabled,input[type="number"]:disabled,input[type="search"]:disabled,input[type="tel"]:disabled,input[type="time"]:disabled,input[type="url"]:disabled,input[type="color"]:disabled,textarea:disabled{background-color:#ddd;cursor:default}input[type="text"][disabled],input[type="text"][readonly],fieldset[disabled] input[type="text"],input[type="password"][disabled],input[type="password"][readonly],fieldset[disabled] input[type="password"],input[type="date"][disabled],input[type="date"][readonly],fieldset[disabled] input[type="date"],input[type="datetime"][disabled],input[type="datetime"][readonly],fieldset[disabled] input[type="datetime"],input[type="datetime-local"][disabled],input[type="datetime-local"][readonly],fieldset[disabled] input[type="datetime-local"],input[type="month"][disabled],input[type="month"][readonly],fieldset[disabled] input[type="month"],input[type="week"][disabled],input[type="week"][readonly],fieldset[disabled] input[type="week"],input[type="email"][disabled],input[type="email"][readonly],fieldset[disabled] input[type="email"],input[type="number"][disabled],input[type="number"][readonly],fieldset[disabled] input[type="number"],input[type="search"][disabled],input[type="search"][readonly],fieldset[disabled] input[type="search"],input[type="tel"][disabled],input[type="tel"][readonly],fieldset[disabled] input[type="tel"],input[type="time"][disabled],input[type="time"][readonly],fieldset[disabled] input[type="time"],input[type="url"][disabled],input[type="url"][readonly],fieldset[disabled] input[type="url"],input[type="color"][disabled],input[type="color"][readonly],fieldset[disabled] input[type="color"],textarea[disabled],textarea[readonly],fieldset[disabled] textarea{background-color:#ddd;cursor:default}input[type="text"].radius,input[type="password"].radius,input[type="date"].radius,input[type="datetime"].radius,input[type="datetime-local"].radius,input[type="month"].radius,input[type="week"].radius,input[type="email"].radius,input[type="number"].radius,input[type="search"].radius,input[type="tel"].radius,input[type="time"].radius,input[type="url"].radius,input[type="color"].radius,textarea.radius{border-radius:3px}form .row .prefix-radius.row.collapse input,form .row .prefix-radius.row.collapse textarea,form .row .prefix-radius.row.collapse select{border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}form .row .prefix-radius.row.collapse .prefix{border-radius:0;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}form .row .postfix-radius.row.collapse input,form .row .postfix-radius.row.collapse textarea,form .row .postfix-radius.row.collapse select{border-radius:0;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}form .row .postfix-radius.row.collapse .postfix{border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}form .row .prefix-round.row.collapse input,form .row .prefix-round.row.collapse textarea,form .row .prefix-round.row.collapse select{border-radius:0;-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}form .row .prefix-round.row.collapse .prefix{border-radius:0;-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}form .row .postfix-round.row.collapse input,form .row .postfix-round.row.collapse textarea,form .row .postfix-round.row.collapse select{border-radius:0;-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}form .row .postfix-round.row.collapse .postfix{border-radius:0;-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}input[type="submit"]{-webkit-appearance:none;border-radius:0}textarea[rows]{height:auto}textarea{max-width:100%}select{-webkit-appearance:none !important;border-radius:0;background-color:#FAFAFA;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);background-position:100% center;background-repeat:no-repeat;border-style:solid;border-width:1px;border-color:#ccc;padding:.5rem;font-size:.875rem;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;color:rgba(0,0,0,0.75);line-height:normal;border-radius:0;height:2.3125rem}select::-ms-expand{display:none}select.radius{border-radius:3px}select:hover{background-color:#f3f3f3;border-color:#999}select:disabled{background-color:#ddd;cursor:default}input[type="file"],input[type="checkbox"],input[type="radio"],select{margin:0 0 1rem 0}input[type="checkbox"]+label,input[type="radio"]+label{display:inline-block;margin-left:.5rem;margin-right:1rem;margin-bottom:0;vertical-align:baseline}input[type="file"]{width:100%}fieldset{border:1px solid #ddd;padding:1.25rem;margin:1.125rem 0}fieldset legend{font-weight:bold;background:#fff;padding:0 .1875rem;margin:0;margin-left:-.1875rem}[data-abide] .error small.error,[data-abide] .error span.error,[data-abide] span.error,[data-abide] small.error{display:block;padding:.375rem .5625rem .5625rem;margin-top:-1px;margin-bottom:1rem;font-size:.75rem;font-weight:normal;font-style:italic;background:#DF4949;color:#fff}[data-abide] span.error,[data-abide] small.error{display:none}span.error,small.error{display:block;padding:.375rem .5625rem .5625rem;margin-top:-1px;margin-bottom:1rem;font-size:.75rem;font-weight:normal;font-style:italic;background:#DF4949;color:#fff}.error input,.error textarea,.error select{margin-bottom:0}.error input[type="checkbox"],.error input[type="radio"]{margin-bottom:1rem}.error label,.error label.error{color:#DF4949}.error small.error{display:block;padding:.375rem .5625rem .5625rem;margin-top:-1px;margin-bottom:1rem;font-size:.75rem;font-weight:normal;font-style:italic;background:#DF4949;color:#fff}.error>label>small{color:#676767;background:transparent;padding:0;text-transform:capitalize;font-style:normal;font-size:60%;margin:0;display:inline}.error span.error-message{display:block}input.error,textarea.error,select.error{margin-bottom:0}label.error{color:#DF4949}meta.foundation-mq-topbar{font-family:"/only screen and (min-width: 64.063em)/";width:64.063em}.contain-to-grid{width:100%;background:#BA4A00}.contain-to-grid .top-bar{margin-bottom:0}.fixed{width:100%;left:0;position:fixed;top:0;z-index:99}.fixed.expanded:not(.top-bar){overflow-y:auto;height:auto;width:100%;max-height:100%}.fixed.expanded:not(.top-bar) .title-area{position:fixed;width:100%;z-index:99}.fixed.expanded:not(.top-bar) .top-bar-section{z-index:98;margin-top:3.125rem}.top-bar{overflow:hidden;height:3.125rem;line-height:3.125rem;position:relative;background:#BA4A00;margin-bottom:0}.top-bar ul{margin-bottom:0;list-style:none}.top-bar .row{max-width:none}.top-bar form,.top-bar input{margin-bottom:0}.top-bar input{height:1.75rem;padding-top:.35rem;padding-bottom:.35rem;font-size:.75rem}.top-bar .button,.top-bar button{padding-top:.4125rem;padding-bottom:.4125rem;margin-bottom:0;font-size:.75rem}@media only screen and (max-width: 40em){.top-bar .button,.top-bar button{position:relative;top:-1px}}.top-bar .title-area{position:relative;margin:0}.top-bar .name{height:3.125rem;margin:0;font-size:16px}.top-bar .name h1,.top-bar .name h2,.top-bar .name h3,.top-bar .name h4,.top-bar .name p,.top-bar .name span{line-height:3.125rem;font-size:1.1875rem;margin:0}.top-bar .name h1 a,.top-bar .name h2 a,.top-bar .name h3 a,.top-bar .name h4 a,.top-bar .name p a,.top-bar .name span a{font-weight:bold;color:#fff;width:75%;display:block;padding:0 1.0416666667rem}.top-bar .toggle-topbar{position:absolute;right:0;top:0}.top-bar .toggle-topbar a{color:#fff;text-transform:uppercase;font-size:.8125rem;font-weight:bold;position:relative;display:block;padding:0 1.0416666667rem;height:3.125rem;line-height:3.125rem}.top-bar .toggle-topbar.menu-icon{top:50%;margin-top:-16px}.top-bar .toggle-topbar.menu-icon a{height:34px;line-height:33px;padding:0 2.6041666667rem 0 1.0416666667rem;color:#fff;position:relative}.top-bar .toggle-topbar.menu-icon a span::after{content:"";position:absolute;display:block;height:0;top:50%;margin-top:-8px;right:1.0416666667rem;box-shadow:0 0 0 1px #fff,0 7px 0 1px #fff,0 14px 0 1px #fff;width:16px}.top-bar .toggle-topbar.menu-icon a span:hover:after{box-shadow:0 0 0 1px "",0 7px 0 1px "",0 14px 0 1px ""}.top-bar.expanded{height:auto;background:transparent}.top-bar.expanded .title-area{background:#BA4A00}.top-bar.expanded .toggle-topbar a{color:#BA4A00}.top-bar.expanded .toggle-topbar a span::after{box-shadow:0 0 0 1px #fff,0 7px 0 1px #fff,0 14px 0 1px #fff}.top-bar-section{left:0;position:relative;width:auto;transition:left 300ms ease-out}.top-bar-section ul{padding:0;width:100%;height:auto;display:block;font-size:16px;margin:0}.top-bar-section .divider,.top-bar-section [role="separator"]{border-top:solid 0px #5d2500;clear:both;height:1px;width:100%}.top-bar-section ul li{background:#F39C12}.top-bar-section ul li>a{display:block;width:100%;color:#fff;padding:12px 0 12px 0;padding-left:1.0416666667rem;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:.9375rem;font-weight:normal;text-transform:uppercase}.top-bar-section ul li>a.button{font-size:.9375rem;padding-right:1.0416666667rem;padding-left:1.0416666667rem;background-color:#BA4A00;border-color:#953b00;color:#fff}.top-bar-section ul li>a.button:hover,.top-bar-section ul li>a.button:focus{background-color:#953b00}.top-bar-section ul li>a.button:hover,.top-bar-section ul li>a.button:focus{color:#fff}.top-bar-section ul li>a.button.secondary{background-color:#FDEBD0;border-color:#f9c578;color:#333}.top-bar-section ul li>a.button.secondary:hover,.top-bar-section ul li>a.button.secondary:focus{background-color:#f9c578}.top-bar-section ul li>a.button.secondary:hover,.top-bar-section ul li>a.button.secondary:focus{color:#333}.top-bar-section ul li>a.button.success{background-color:#A1D044;border-color:#84b02c;color:#fff}.top-bar-section ul li>a.button.success:hover,.top-bar-section ul li>a.button.success:focus{background-color:#84b02c}.top-bar-section ul li>a.button.success:hover,.top-bar-section ul li>a.button.success:focus{color:#fff}.top-bar-section ul li>a.button.alert{background-color:#DF4949;border-color:#c92323;color:#fff}.top-bar-section ul li>a.button.alert:hover,.top-bar-section ul li>a.button.alert:focus{background-color:#c92323}.top-bar-section ul li>a.button.alert:hover,.top-bar-section ul li>a.button.alert:focus{color:#fff}.top-bar-section ul li>a.button.warning{background-color:#E27A3F;border-color:#c95c1e;color:#fff}.top-bar-section ul li>a.button.warning:hover,.top-bar-section ul li>a.button.warning:focus{background-color:#c95c1e}.top-bar-section ul li>a.button.warning:hover,.top-bar-section ul li>a.button.warning:focus{color:#fff}.top-bar-section ul li>button{font-size:.9375rem;padding-right:1.0416666667rem;padding-left:1.0416666667rem;background-color:#BA4A00;border-color:#953b00;color:#fff}.top-bar-section ul li>button:hover,.top-bar-section ul li>button:focus{background-color:#953b00}.top-bar-section ul li>button:hover,.top-bar-section ul li>button:focus{color:#fff}.top-bar-section ul li>button.secondary{background-color:#FDEBD0;border-color:#f9c578;color:#333}.top-bar-section ul li>button.secondary:hover,.top-bar-section ul li>button.secondary:focus{background-color:#f9c578}.top-bar-section ul li>button.secondary:hover,.top-bar-section ul li>button.secondary:focus{color:#333}.top-bar-section ul li>button.success{background-color:#A1D044;border-color:#84b02c;color:#fff}.top-bar-section ul li>button.success:hover,.top-bar-section ul li>button.success:focus{background-color:#84b02c}.top-bar-section ul li>button.success:hover,.top-bar-section ul li>button.success:focus{color:#fff}.top-bar-section ul li>button.alert{background-color:#DF4949;border-color:#c92323;color:#fff}.top-bar-section ul li>button.alert:hover,.top-bar-section ul li>button.alert:focus{background-color:#c92323}.top-bar-section ul li>button.alert:hover,.top-bar-section ul li>button.alert:focus{color:#fff}.top-bar-section ul li>button.warning{background-color:#E27A3F;border-color:#c95c1e;color:#fff}.top-bar-section ul li>button.warning:hover,.top-bar-section ul li>button.warning:focus{background-color:#c95c1e}.top-bar-section ul li>button.warning:hover,.top-bar-section ul li>button.warning:focus{color:#fff}.top-bar-section ul li:hover:not(.has-form)>a{background-color:#555;background:#F39C12;color:#fff}.top-bar-section ul li.active>a{background:#FDEBD0;color:#171717}.top-bar-section ul li.active>a:hover{background:#F39C12;color:#171717}.top-bar-section .has-form{padding:1.0416666667rem}.top-bar-section .has-dropdown{position:relative}.top-bar-section .has-dropdown>a:after{content:"";display:block;width:0;height:0;border:inset 5px;border-color:transparent transparent transparent rgba(255,255,255,0.9);border-left-style:solid;margin-right:1.0416666667rem;margin-top:-4.5px;position:absolute;top:50%;right:0}.top-bar-section .has-dropdown.moved{position:static}.top-bar-section .has-dropdown.moved>.dropdown{display:block;position:static !important;height:auto;width:auto;overflow:visible;clip:auto;position:absolute !important;width:100%}.top-bar-section .has-dropdown.moved>a:after{display:none}.top-bar-section .dropdown{padding:0;position:absolute;left:100%;top:0;z-index:99;display:block;position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}.top-bar-section .dropdown li{width:100%;height:auto}.top-bar-section .dropdown li a{font-weight:normal;padding:8px 1.0416666667rem}.top-bar-section .dropdown li a.parent-link{font-weight:normal}.top-bar-section .dropdown li.title h5,.top-bar-section .dropdown li.parent-link{margin-bottom:0;margin-top:0;font-size:1.125rem}.top-bar-section .dropdown li.title h5 a,.top-bar-section .dropdown li.parent-link a{color:#fff;display:block}.top-bar-section .dropdown li.title h5 a:hover,.top-bar-section .dropdown li.parent-link a:hover{background:none}.top-bar-section .dropdown li.has-form{padding:8px 1.0416666667rem}.top-bar-section .dropdown li .button,.top-bar-section .dropdown li button{top:auto}.top-bar-section .dropdown label{padding:8px 1.0416666667rem 2px;margin-bottom:0;text-transform:uppercase;color:#BA4A00;font-weight:bold;font-size:.625rem}.js-generated{display:block}@media only screen and (min-width: 64.063em){.top-bar{background:#BA4A00;overflow:visible}.top-bar:before,.top-bar:after{content:" ";display:table}.top-bar:after{clear:both}.top-bar .toggle-topbar{display:none}.top-bar .title-area{float:left}.top-bar .name h1 a{width:auto}.top-bar input,.top-bar .button,.top-bar button{font-size:.875rem;position:relative;height:1.75rem;top:.6875rem}.top-bar.expanded{background:#BA4A00}.contain-to-grid .top-bar{max-width:62.5rem;margin:0 auto;margin-bottom:0}.top-bar-section{transition:none 0 0;left:0 !important}.top-bar-section ul{width:auto;height:auto !important;display:inline}.top-bar-section ul li{float:left}.top-bar-section ul li .js-generated{display:none}.top-bar-section li.hover>a:not(.button){background-color:#555;background:#F39C12;color:#fff}.top-bar-section li:not(.has-form) a:not(.button){padding:0 1.0416666667rem;line-height:3.125rem;background:#BA4A00}.top-bar-section li:not(.has-form) a:not(.button):hover{background-color:#555;background:#F39C12}.top-bar-section li.active:not(.has-form) a:not(.button){padding:0 1.0416666667rem;line-height:3.125rem;color:#171717;background:#FDEBD0}.top-bar-section li.active:not(.has-form) a:not(.button):hover{background:#F39C12;color:#171717}.top-bar-section .has-dropdown>a{padding-right:2.2916666667rem !important}.top-bar-section .has-dropdown>a:after{content:"";display:block;width:0;height:0;border:inset 5px;border-color:rgba(255,255,255,0.9) transparent transparent transparent;border-top-style:solid;margin-top:-2.5px;top:1.5625rem}.top-bar-section .has-dropdown.moved{position:relative}.top-bar-section .has-dropdown.moved>.dropdown{display:block;position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}.top-bar-section .has-dropdown.hover>.dropdown,.top-bar-section .has-dropdown.not-click:hover>.dropdown{display:block;position:static !important;height:auto;width:auto;overflow:visible;clip:auto;position:absolute !important}.top-bar-section .has-dropdown>a:focus+.dropdown{display:block;position:static !important;height:auto;width:auto;overflow:visible;clip:auto;position:absolute !important}.top-bar-section .has-dropdown .dropdown li.has-dropdown>a:after{border:none;content:"\00bb";top:1rem;margin-top:-1px;right:5px;line-height:1.2}.top-bar-section .dropdown{left:0;top:auto;background:transparent;min-width:100%}.top-bar-section .dropdown li a{color:#fff;line-height:3.125rem;white-space:nowrap;padding:12px 1.0416666667rem;background:#BA4A00}.top-bar-section .dropdown li:not(.has-form):not(.active)>a:not(.button){color:#fff;background:#BA4A00}.top-bar-section .dropdown li:not(.has-form):not(.active):hover>a:not(.button){color:#fff;background-color:#555;background:#F39C12}.top-bar-section .dropdown li label{white-space:nowrap;background:#333}.top-bar-section .dropdown li .dropdown{left:100%;top:0}.top-bar-section>ul>.divider,.top-bar-section>ul>[role="separator"]{border-bottom:none;border-top:none;border-right:solid 0px #ff6906;clear:none;height:3.125rem;width:0}.top-bar-section .has-form{background:#BA4A00;padding:0 1.0416666667rem;height:3.125rem}.top-bar-section .right li .dropdown{left:auto;right:0}.top-bar-section .right li .dropdown li .dropdown{right:100%}.top-bar-section .left li .dropdown{right:auto;left:0}.top-bar-section .left li .dropdown li .dropdown{left:100%}.no-js .top-bar-section ul li:hover>a{background-color:#555;background:#F39C12;color:#fff}.no-js .top-bar-section ul li:active>a{background:#FDEBD0;color:#171717}.no-js .top-bar-section .has-dropdown:hover>.dropdown{display:block;position:static !important;height:auto;width:auto;overflow:visible;clip:auto;position:absolute !important}.no-js .top-bar-section .has-dropdown>a:focus+.dropdown{display:block;position:static !important;height:auto;width:auto;overflow:visible;clip:auto;position:absolute !important}}.accordion{margin-bottom:0}.accordion:before,.accordion:after{content:" ";display:table}.accordion:after{clear:both}.accordion .accordion-navigation,.accordion dd{display:block;margin-bottom:0 !important}.accordion .accordion-navigation.active>a,.accordion dd.active>a{background:#e8e8e8}.accordion .accordion-navigation>a,.accordion dd>a{background:#EFEFEF;color:#222;padding:.75rem;display:block;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:1rem}.accordion .accordion-navigation>a:hover,.accordion dd>a:hover{background:#e3e3e3}.accordion .accordion-navigation>.content,.accordion dd>.content{display:none;padding:.9375rem}.accordion .accordion-navigation>.content.active,.accordion dd>.content.active{display:block;background:#fdfdfd}.alert-box{border-style:solid;border-width:1px;display:block;font-weight:normal;margin-bottom:1.25rem;position:relative;padding:.875rem 1.5rem .875rem .875rem;font-size:.9375rem;transition:opacity 300ms ease-out;background-color:#BA4A00;border-color:#a04000;color:#fff}.alert-box .close{font-size:1.375rem;padding:9px 6px 4px;line-height:0;position:absolute;top:50%;margin-top:-0.6875rem;right:.25rem;color:#333;opacity:.3;background:inherit}.alert-box .close:hover,.alert-box .close:focus{opacity:.5}.alert-box.radius{border-radius:3px}.alert-box.round{border-radius:1000px}.alert-box.success{background-color:#A1D044;border-color:#8ebe30;color:#fff}.alert-box.alert{background-color:#DF4949;border-color:#d82626;color:#fff}.alert-box.secondary{background-color:#FDEBD0;border-color:#fad192;color:#965d06}.alert-box.warning{background-color:#E27A3F;border-color:#d86321;color:#fff}.alert-box.info{background-color:#334D5C;border-color:#2c424f;color:#fff}.alert-box.alert-close{opacity:0}.breadcrumbs{display:block;padding:.5625rem .875rem .5625rem;overflow:hidden;margin-left:0;list-style:none;border-style:solid;border-width:0;background-color:#E4E4E4;border-color:#E4E4E4;border-radius:0}.breadcrumbs>*{margin:0;float:left;font-size:.6875rem;line-height:.6875rem;text-transform:uppercase;color:#BA4A00}.breadcrumbs>*:hover a,.breadcrumbs>*:focus a{text-decoration:underline}.breadcrumbs>* a{color:#BA4A00}.breadcrumbs>*.current{cursor:default;color:#333}.breadcrumbs>*.current a{cursor:default;color:#333}.breadcrumbs>*.current:hover,.breadcrumbs>*.current:hover a,.breadcrumbs>*.current:focus,.breadcrumbs>*.current:focus a{text-decoration:none}.breadcrumbs>*.unavailable{color:#999}.breadcrumbs>*.unavailable a{color:#999}.breadcrumbs>*.unavailable:hover,.breadcrumbs>*.unavailable:hover a,.breadcrumbs>*.unavailable:focus,.breadcrumbs>*.unavailable a:focus{text-decoration:none;color:#999;cursor:default}.breadcrumbs>*:before{content:"/";color:#aaa;margin:0 .75rem;position:relative;top:1px}.breadcrumbs>*:first-child:before{content:" ";margin:0}[aria-label="breadcrumbs"] [aria-hidden="true"]:after{content:"/"}[class*="block-grid-"]{display:block;padding:0;margin:0 -.625rem}[class*="block-grid-"]:before,[class*="block-grid-"]:after{content:" ";display:table}[class*="block-grid-"]:after{clear:both}[class*="block-grid-"]>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}@media only screen{.small-block-grid-1>li{width:100%;list-style:none}.small-block-grid-1>li:nth-of-type(1n){clear:none}.small-block-grid-1>li:nth-of-type(1n+1){clear:both}.small-block-grid-2>li{width:50%;list-style:none}.small-block-grid-2>li:nth-of-type(1n){clear:none}.small-block-grid-2>li:nth-of-type(2n+1){clear:both}.small-block-grid-3>li{width:33.3333333333%;list-style:none}.small-block-grid-3>li:nth-of-type(1n){clear:none}.small-block-grid-3>li:nth-of-type(3n+1){clear:both}.small-block-grid-4>li{width:25%;list-style:none}.small-block-grid-4>li:nth-of-type(1n){clear:none}.small-block-grid-4>li:nth-of-type(4n+1){clear:both}.small-block-grid-5>li{width:20%;list-style:none}.small-block-grid-5>li:nth-of-type(1n){clear:none}.small-block-grid-5>li:nth-of-type(5n+1){clear:both}.small-block-grid-6>li{width:16.6666666667%;list-style:none}.small-block-grid-6>li:nth-of-type(1n){clear:none}.small-block-grid-6>li:nth-of-type(6n+1){clear:both}.small-block-grid-7>li{width:14.2857142857%;list-style:none}.small-block-grid-7>li:nth-of-type(1n){clear:none}.small-block-grid-7>li:nth-of-type(7n+1){clear:both}.small-block-grid-8>li{width:12.5%;list-style:none}.small-block-grid-8>li:nth-of-type(1n){clear:none}.small-block-grid-8>li:nth-of-type(8n+1){clear:both}.small-block-grid-9>li{width:11.1111111111%;list-style:none}.small-block-grid-9>li:nth-of-type(1n){clear:none}.small-block-grid-9>li:nth-of-type(9n+1){clear:both}.small-block-grid-10>li{width:10%;list-style:none}.small-block-grid-10>li:nth-of-type(1n){clear:none}.small-block-grid-10>li:nth-of-type(10n+1){clear:both}.small-block-grid-11>li{width:9.0909090909%;list-style:none}.small-block-grid-11>li:nth-of-type(1n){clear:none}.small-block-grid-11>li:nth-of-type(11n+1){clear:both}.small-block-grid-12>li{width:8.3333333333%;list-style:none}.small-block-grid-12>li:nth-of-type(1n){clear:none}.small-block-grid-12>li:nth-of-type(12n+1){clear:both}}@media only screen and (min-width: 40.063em){.medium-block-grid-1>li{width:100%;list-style:none}.medium-block-grid-1>li:nth-of-type(1n){clear:none}.medium-block-grid-1>li:nth-of-type(1n+1){clear:both}.medium-block-grid-2>li{width:50%;list-style:none}.medium-block-grid-2>li:nth-of-type(1n){clear:none}.medium-block-grid-2>li:nth-of-type(2n+1){clear:both}.medium-block-grid-3>li{width:33.3333333333%;list-style:none}.medium-block-grid-3>li:nth-of-type(1n){clear:none}.medium-block-grid-3>li:nth-of-type(3n+1){clear:both}.medium-block-grid-4>li{width:25%;list-style:none}.medium-block-grid-4>li:nth-of-type(1n){clear:none}.medium-block-grid-4>li:nth-of-type(4n+1){clear:both}.medium-block-grid-5>li{width:20%;list-style:none}.medium-block-grid-5>li:nth-of-type(1n){clear:none}.medium-block-grid-5>li:nth-of-type(5n+1){clear:both}.medium-block-grid-6>li{width:16.6666666667%;list-style:none}.medium-block-grid-6>li:nth-of-type(1n){clear:none}.medium-block-grid-6>li:nth-of-type(6n+1){clear:both}.medium-block-grid-7>li{width:14.2857142857%;list-style:none}.medium-block-grid-7>li:nth-of-type(1n){clear:none}.medium-block-grid-7>li:nth-of-type(7n+1){clear:both}.medium-block-grid-8>li{width:12.5%;list-style:none}.medium-block-grid-8>li:nth-of-type(1n){clear:none}.medium-block-grid-8>li:nth-of-type(8n+1){clear:both}.medium-block-grid-9>li{width:11.1111111111%;list-style:none}.medium-block-grid-9>li:nth-of-type(1n){clear:none}.medium-block-grid-9>li:nth-of-type(9n+1){clear:both}.medium-block-grid-10>li{width:10%;list-style:none}.medium-block-grid-10>li:nth-of-type(1n){clear:none}.medium-block-grid-10>li:nth-of-type(10n+1){clear:both}.medium-block-grid-11>li{width:9.0909090909%;list-style:none}.medium-block-grid-11>li:nth-of-type(1n){clear:none}.medium-block-grid-11>li:nth-of-type(11n+1){clear:both}.medium-block-grid-12>li{width:8.3333333333%;list-style:none}.medium-block-grid-12>li:nth-of-type(1n){clear:none}.medium-block-grid-12>li:nth-of-type(12n+1){clear:both}}@media only screen and (min-width: 64.063em){.large-block-grid-1>li{width:100%;list-style:none}.large-block-grid-1>li:nth-of-type(1n){clear:none}.large-block-grid-1>li:nth-of-type(1n+1){clear:both}.large-block-grid-2>li{width:50%;list-style:none}.large-block-grid-2>li:nth-of-type(1n){clear:none}.large-block-grid-2>li:nth-of-type(2n+1){clear:both}.large-block-grid-3>li{width:33.3333333333%;list-style:none}.large-block-grid-3>li:nth-of-type(1n){clear:none}.large-block-grid-3>li:nth-of-type(3n+1){clear:both}.large-block-grid-4>li{width:25%;list-style:none}.large-block-grid-4>li:nth-of-type(1n){clear:none}.large-block-grid-4>li:nth-of-type(4n+1){clear:both}.large-block-grid-5>li{width:20%;list-style:none}.large-block-grid-5>li:nth-of-type(1n){clear:none}.large-block-grid-5>li:nth-of-type(5n+1){clear:both}.large-block-grid-6>li{width:16.6666666667%;list-style:none}.large-block-grid-6>li:nth-of-type(1n){clear:none}.large-block-grid-6>li:nth-of-type(6n+1){clear:both}.large-block-grid-7>li{width:14.2857142857%;list-style:none}.large-block-grid-7>li:nth-of-type(1n){clear:none}.large-block-grid-7>li:nth-of-type(7n+1){clear:both}.large-block-grid-8>li{width:12.5%;list-style:none}.large-block-grid-8>li:nth-of-type(1n){clear:none}.large-block-grid-8>li:nth-of-type(8n+1){clear:both}.large-block-grid-9>li{width:11.1111111111%;list-style:none}.large-block-grid-9>li:nth-of-type(1n){clear:none}.large-block-grid-9>li:nth-of-type(9n+1){clear:both}.large-block-grid-10>li{width:10%;list-style:none}.large-block-grid-10>li:nth-of-type(1n){clear:none}.large-block-grid-10>li:nth-of-type(10n+1){clear:both}.large-block-grid-11>li{width:9.0909090909%;list-style:none}.large-block-grid-11>li:nth-of-type(1n){clear:none}.large-block-grid-11>li:nth-of-type(11n+1){clear:both}.large-block-grid-12>li{width:8.3333333333%;list-style:none}.large-block-grid-12>li:nth-of-type(1n){clear:none}.large-block-grid-12>li:nth-of-type(12n+1){clear:both}}.button-group{list-style:none;margin:0;left:0}.button-group:before,.button-group:after{content:" ";display:table}.button-group:after{clear:both}.button-group>li{margin:0 -2px;display:inline-block}.button-group>li>button,.button-group>li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group>li:first-child button,.button-group>li:first-child .button{border-left:0}.button-group.stack>li{margin:0 -2px;display:inline-block;display:block;margin:0;float:none}.button-group.stack>li>button,.button-group.stack>li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.stack>li:first-child button,.button-group.stack>li:first-child .button{border-left:0}.button-group.stack>li>button,.button-group.stack>li .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.stack>li:first-child button,.button-group.stack>li:first-child .button{border-top:0}.button-group.stack-for-small>li{margin:0 -2px;display:inline-block}.button-group.stack-for-small>li>button,.button-group.stack-for-small>li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.stack-for-small>li:first-child button,.button-group.stack-for-small>li:first-child .button{border-left:0}@media only screen and (max-width: 40em){.button-group.stack-for-small>li{margin:0 -2px;display:inline-block;display:block;margin:0}.button-group.stack-for-small>li>button,.button-group.stack-for-small>li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.stack-for-small>li:first-child button,.button-group.stack-for-small>li:first-child .button{border-left:0}.button-group.stack-for-small>li>button,.button-group.stack-for-small>li .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.stack-for-small>li:first-child button,.button-group.stack-for-small>li:first-child .button{border-top:0}}.button-group.radius>*{margin:0 -2px;display:inline-block}.button-group.radius>*>button,.button-group.radius>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.radius>*:first-child button,.button-group.radius>*:first-child .button{border-left:0}.button-group.radius>*,.button-group.radius>*>a,.button-group.radius>*>button,.button-group.radius>*>.button{border-radius:0}.button-group.radius>*:first-child,.button-group.radius>*:first-child>a,.button-group.radius>*:first-child>button,.button-group.radius>*:first-child>.button{-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.button-group.radius>*:last-child,.button-group.radius>*:last-child>a,.button-group.radius>*:last-child>button,.button-group.radius>*:last-child>.button{-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}.button-group.radius.stack>*{margin:0 -2px;display:inline-block;display:block;margin:0}.button-group.radius.stack>*>button,.button-group.radius.stack>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.radius.stack>*:first-child button,.button-group.radius.stack>*:first-child .button{border-left:0}.button-group.radius.stack>*>button,.button-group.radius.stack>* .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.radius.stack>*:first-child button,.button-group.radius.stack>*:first-child .button{border-top:0}.button-group.radius.stack>*,.button-group.radius.stack>*>a,.button-group.radius.stack>*>button,.button-group.radius.stack>*>.button{border-radius:0}.button-group.radius.stack>*:first-child,.button-group.radius.stack>*:first-child>a,.button-group.radius.stack>*:first-child>button,.button-group.radius.stack>*:first-child>.button{-webkit-top-left-radius:3px;-webkit-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.button-group.radius.stack>*:last-child,.button-group.radius.stack>*:last-child>a,.button-group.radius.stack>*:last-child>button,.button-group.radius.stack>*:last-child>.button{-webkit-bottom-left-radius:3px;-webkit-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}@media only screen and (min-width: 40.063em){.button-group.radius.stack-for-small>*{margin:0 -2px;display:inline-block}.button-group.radius.stack-for-small>*>button,.button-group.radius.stack-for-small>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.radius.stack-for-small>*:first-child button,.button-group.radius.stack-for-small>*:first-child .button{border-left:0}.button-group.radius.stack-for-small>*,.button-group.radius.stack-for-small>*>a,.button-group.radius.stack-for-small>*>button,.button-group.radius.stack-for-small>*>.button{border-radius:0}.button-group.radius.stack-for-small>*:first-child,.button-group.radius.stack-for-small>*:first-child>a,.button-group.radius.stack-for-small>*:first-child>button,.button-group.radius.stack-for-small>*:first-child>.button{-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.button-group.radius.stack-for-small>*:last-child,.button-group.radius.stack-for-small>*:last-child>a,.button-group.radius.stack-for-small>*:last-child>button,.button-group.radius.stack-for-small>*:last-child>.button{-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}}@media only screen and (max-width: 40em){.button-group.radius.stack-for-small>*{margin:0 -2px;display:inline-block;display:block;margin:0}.button-group.radius.stack-for-small>*>button,.button-group.radius.stack-for-small>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.radius.stack-for-small>*:first-child button,.button-group.radius.stack-for-small>*:first-child .button{border-left:0}.button-group.radius.stack-for-small>*>button,.button-group.radius.stack-for-small>* .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.radius.stack-for-small>*:first-child button,.button-group.radius.stack-for-small>*:first-child .button{border-top:0}.button-group.radius.stack-for-small>*,.button-group.radius.stack-for-small>*>a,.button-group.radius.stack-for-small>*>button,.button-group.radius.stack-for-small>*>.button{border-radius:0}.button-group.radius.stack-for-small>*:first-child,.button-group.radius.stack-for-small>*:first-child>a,.button-group.radius.stack-for-small>*:first-child>button,.button-group.radius.stack-for-small>*:first-child>.button{-webkit-top-left-radius:3px;-webkit-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.button-group.radius.stack-for-small>*:last-child,.button-group.radius.stack-for-small>*:last-child>a,.button-group.radius.stack-for-small>*:last-child>button,.button-group.radius.stack-for-small>*:last-child>.button{-webkit-bottom-left-radius:3px;-webkit-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}}.button-group.round>*{margin:0 -2px;display:inline-block}.button-group.round>*>button,.button-group.round>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.round>*:first-child button,.button-group.round>*:first-child .button{border-left:0}.button-group.round>*,.button-group.round>*>a,.button-group.round>*>button,.button-group.round>*>.button{border-radius:0}.button-group.round>*:first-child,.button-group.round>*:first-child>a,.button-group.round>*:first-child>button,.button-group.round>*:first-child>.button{-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}.button-group.round>*:last-child,.button-group.round>*:last-child>a,.button-group.round>*:last-child>button,.button-group.round>*:last-child>.button{-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}.button-group.round.stack>*{margin:0 -2px;display:inline-block;display:block;margin:0}.button-group.round.stack>*>button,.button-group.round.stack>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.round.stack>*:first-child button,.button-group.round.stack>*:first-child .button{border-left:0}.button-group.round.stack>*>button,.button-group.round.stack>* .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.round.stack>*:first-child button,.button-group.round.stack>*:first-child .button{border-top:0}.button-group.round.stack>*,.button-group.round.stack>*>a,.button-group.round.stack>*>button,.button-group.round.stack>*>.button{border-radius:0}.button-group.round.stack>*:first-child,.button-group.round.stack>*:first-child>a,.button-group.round.stack>*:first-child>button,.button-group.round.stack>*:first-child>.button{-webkit-top-left-radius:1rem;-webkit-top-right-radius:1rem;border-top-left-radius:1rem;border-top-right-radius:1rem}.button-group.round.stack>*:last-child,.button-group.round.stack>*:last-child>a,.button-group.round.stack>*:last-child>button,.button-group.round.stack>*:last-child>.button{-webkit-bottom-left-radius:1rem;-webkit-bottom-right-radius:1rem;border-bottom-left-radius:1rem;border-bottom-right-radius:1rem}@media only screen and (min-width: 40.063em){.button-group.round.stack-for-small>*{margin:0 -2px;display:inline-block}.button-group.round.stack-for-small>*>button,.button-group.round.stack-for-small>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.round.stack-for-small>*:first-child button,.button-group.round.stack-for-small>*:first-child .button{border-left:0}.button-group.round.stack-for-small>*,.button-group.round.stack-for-small>*>a,.button-group.round.stack-for-small>*>button,.button-group.round.stack-for-small>*>.button{border-radius:0}.button-group.round.stack-for-small>*:first-child,.button-group.round.stack-for-small>*:first-child>a,.button-group.round.stack-for-small>*:first-child>button,.button-group.round.stack-for-small>*:first-child>.button{-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}.button-group.round.stack-for-small>*:last-child,.button-group.round.stack-for-small>*:last-child>a,.button-group.round.stack-for-small>*:last-child>button,.button-group.round.stack-for-small>*:last-child>.button{-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}}@media only screen and (max-width: 40em){.button-group.round.stack-for-small>*{margin:0 -2px;display:inline-block;display:block;margin:0}.button-group.round.stack-for-small>*>button,.button-group.round.stack-for-small>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.round.stack-for-small>*:first-child button,.button-group.round.stack-for-small>*:first-child .button{border-left:0}.button-group.round.stack-for-small>*>button,.button-group.round.stack-for-small>* .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.round.stack-for-small>*:first-child button,.button-group.round.stack-for-small>*:first-child .button{border-top:0}.button-group.round.stack-for-small>*,.button-group.round.stack-for-small>*>a,.button-group.round.stack-for-small>*>button,.button-group.round.stack-for-small>*>.button{border-radius:0}.button-group.round.stack-for-small>*:first-child,.button-group.round.stack-for-small>*:first-child>a,.button-group.round.stack-for-small>*:first-child>button,.button-group.round.stack-for-small>*:first-child>.button{-webkit-top-left-radius:1rem;-webkit-top-right-radius:1rem;border-top-left-radius:1rem;border-top-right-radius:1rem}.button-group.round.stack-for-small>*:last-child,.button-group.round.stack-for-small>*:last-child>a,.button-group.round.stack-for-small>*:last-child>button,.button-group.round.stack-for-small>*:last-child>.button{-webkit-bottom-left-radius:1rem;-webkit-bottom-right-radius:1rem;border-bottom-left-radius:1rem;border-bottom-right-radius:1rem}}.button-group.even-2 li{margin:0 -2px;display:inline-block;width:50%}.button-group.even-2 li>button,.button-group.even-2 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-2 li:first-child button,.button-group.even-2 li:first-child .button{border-left:0}.button-group.even-2 li button,.button-group.even-2 li .button{width:100%}.button-group.even-3 li{margin:0 -2px;display:inline-block;width:33.3333333333%}.button-group.even-3 li>button,.button-group.even-3 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-3 li:first-child button,.button-group.even-3 li:first-child .button{border-left:0}.button-group.even-3 li button,.button-group.even-3 li .button{width:100%}.button-group.even-4 li{margin:0 -2px;display:inline-block;width:25%}.button-group.even-4 li>button,.button-group.even-4 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-4 li:first-child button,.button-group.even-4 li:first-child .button{border-left:0}.button-group.even-4 li button,.button-group.even-4 li .button{width:100%}.button-group.even-5 li{margin:0 -2px;display:inline-block;width:20%}.button-group.even-5 li>button,.button-group.even-5 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-5 li:first-child button,.button-group.even-5 li:first-child .button{border-left:0}.button-group.even-5 li button,.button-group.even-5 li .button{width:100%}.button-group.even-6 li{margin:0 -2px;display:inline-block;width:16.6666666667%}.button-group.even-6 li>button,.button-group.even-6 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-6 li:first-child button,.button-group.even-6 li:first-child .button{border-left:0}.button-group.even-6 li button,.button-group.even-6 li .button{width:100%}.button-group.even-7 li{margin:0 -2px;display:inline-block;width:14.2857142857%}.button-group.even-7 li>button,.button-group.even-7 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-7 li:first-child button,.button-group.even-7 li:first-child .button{border-left:0}.button-group.even-7 li button,.button-group.even-7 li .button{width:100%}.button-group.even-8 li{margin:0 -2px;display:inline-block;width:12.5%}.button-group.even-8 li>button,.button-group.even-8 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-8 li:first-child button,.button-group.even-8 li:first-child .button{border-left:0}.button-group.even-8 li button,.button-group.even-8 li .button{width:100%}.button-bar:before,.button-bar:after{content:" ";display:table}.button-bar:after{clear:both}.button-bar .button-group{float:left;margin-right:.625rem}.button-bar .button-group div{overflow:hidden}.clearing-thumbs,[data-clearing]{margin-bottom:0;margin-left:0;list-style:none}.clearing-thumbs:before,.clearing-thumbs:after,[data-clearing]:before,[data-clearing]:after{content:" ";display:table}.clearing-thumbs:after,[data-clearing]:after{clear:both}.clearing-thumbs li,[data-clearing] li{float:left;margin-right:10px}.clearing-thumbs[class*="block-grid-"] li,[data-clearing][class*="block-grid-"] li{margin-right:0}.clearing-blackout{background:#333;position:fixed;width:100%;height:100%;top:0;left:0;z-index:998}.clearing-blackout .clearing-close{display:block}.clearing-container{position:relative;z-index:998;height:100%;overflow:hidden;margin:0}.clearing-touch-label{position:absolute;top:50%;left:50%;color:#aaa;font-size:0.6em}.visible-img{height:95%;position:relative}.visible-img img{position:absolute;left:50%;top:50%;margin-left:-50%;max-height:100%;max-width:100%}.clearing-caption{color:#ccc;font-size:.875em;line-height:1.3;margin-bottom:0;text-align:center;bottom:0;background:#333;width:100%;padding:10px 30px 20px;position:absolute;left:0}.clearing-close{z-index:999;padding-left:20px;padding-top:10px;font-size:30px;line-height:1;color:#ccc;display:none}.clearing-close:hover,.clearing-close:focus{color:#ccc}.clearing-assembled .clearing-container{height:100%}.clearing-assembled .clearing-container .carousel>ul{display:none}.clearing-feature li{display:none}.clearing-feature li.clearing-featured-img{display:block}@media only screen and (min-width: 40.063em){.clearing-main-prev,.clearing-main-next{position:absolute;height:100%;width:40px;top:0}.clearing-main-prev>span,.clearing-main-next>span{position:absolute;top:50%;display:block;width:0;height:0;border:solid 12px}.clearing-main-prev>span:hover,.clearing-main-next>span:hover{opacity:0.8}.clearing-main-prev{left:0}.clearing-main-prev>span{left:5px;border-color:transparent;border-right-color:#ccc}.clearing-main-next{right:0}.clearing-main-next>span{border-color:transparent;border-left-color:#ccc}.clearing-main-prev.disabled,.clearing-main-next.disabled{opacity:0.3}.clearing-assembled .clearing-container .carousel{background:rgba(51,51,51,0.8);height:120px;margin-top:10px;text-align:center}.clearing-assembled .clearing-container .carousel>ul{display:inline-block;z-index:999;height:100%;position:relative;float:none}.clearing-assembled .clearing-container .carousel>ul li{display:block;width:120px;min-height:inherit;float:left;overflow:hidden;margin-right:0;padding:0;position:relative;cursor:pointer;opacity:0.4;clear:none}.clearing-assembled .clearing-container .carousel>ul li.fix-height img{height:100%;max-width:none}.clearing-assembled .clearing-container .carousel>ul li a.th{border:none;box-shadow:none;display:block}.clearing-assembled .clearing-container .carousel>ul li img{cursor:pointer !important;width:100% !important}.clearing-assembled .clearing-container .carousel>ul li.visible{opacity:1}.clearing-assembled .clearing-container .carousel>ul li:hover{opacity:0.8}.clearing-assembled .clearing-container .visible-img{background:#333;overflow:hidden;height:85%}.clearing-close{position:absolute;top:10px;right:20px;padding-left:0;padding-top:0}}.f-dropdown{position:absolute;left:-9999px;list-style:none;margin-left:0;outline:none;width:100%;max-height:none;height:auto;background:#fff;border:solid 1px #ccc;font-size:.875rem;z-index:89;margin-top:2px;max-width:200px}.f-dropdown>*:first-child{margin-top:0}.f-dropdown>*:last-child{margin-bottom:0}.f-dropdown:before{content:"";display:block;width:0;height:0;border:inset 6px;border-color:transparent transparent #fff transparent;border-bottom-style:solid;position:absolute;top:-12px;left:10px;z-index:89}.f-dropdown:after{content:"";display:block;width:0;height:0;border:inset 7px;border-color:transparent transparent #ccc transparent;border-bottom-style:solid;position:absolute;top:-14px;left:9px;z-index:88}.f-dropdown.right:before{left:auto;right:10px}.f-dropdown.right:after{left:auto;right:9px}.f-dropdown.drop-right{position:absolute;left:-9999px;list-style:none;margin-left:0;outline:none;width:100%;max-height:none;height:auto;background:#fff;border:solid 1px #ccc;font-size:.875rem;z-index:89;margin-top:0;margin-left:2px;max-width:200px}.f-dropdown.drop-right>*:first-child{margin-top:0}.f-dropdown.drop-right>*:last-child{margin-bottom:0}.f-dropdown.drop-right:before{content:"";display:block;width:0;height:0;border:inset 6px;border-color:transparent #fff transparent transparent;border-right-style:solid;position:absolute;top:10px;left:-12px;z-index:89}.f-dropdown.drop-right:after{content:"";display:block;width:0;height:0;border:inset 7px;border-color:transparent #ccc transparent transparent;border-right-style:solid;position:absolute;top:9px;left:-14px;z-index:88}.f-dropdown.drop-left{position:absolute;left:-9999px;list-style:none;margin-left:0;outline:none;width:100%;max-height:none;height:auto;background:#fff;border:solid 1px #ccc;font-size:.875rem;z-index:89;margin-top:0;margin-left:-2px;max-width:200px}.f-dropdown.drop-left>*:first-child{margin-top:0}.f-dropdown.drop-left>*:last-child{margin-bottom:0}.f-dropdown.drop-left:before{content:"";display:block;width:0;height:0;border:inset 6px;border-color:transparent transparent transparent #fff;border-left-style:solid;position:absolute;top:10px;right:-12px;left:auto;z-index:89}.f-dropdown.drop-left:after{content:"";display:block;width:0;height:0;border:inset 7px;border-color:transparent transparent transparent #ccc;border-left-style:solid;position:absolute;top:9px;right:-14px;left:auto;z-index:88}.f-dropdown.drop-top{position:absolute;left:-9999px;list-style:none;margin-left:0;outline:none;width:100%;max-height:none;height:auto;background:#fff;border:solid 1px #ccc;font-size:.875rem;z-index:89;margin-top:-2px;margin-left:0;max-width:200px}.f-dropdown.drop-top>*:first-child{margin-top:0}.f-dropdown.drop-top>*:last-child{margin-bottom:0}.f-dropdown.drop-top:before{content:"";display:block;width:0;height:0;border:inset 6px;border-color:#fff transparent transparent transparent;border-top-style:solid;position:absolute;top:auto;bottom:-12px;left:10px;right:auto;z-index:89}.f-dropdown.drop-top:after{content:"";display:block;width:0;height:0;border:inset 7px;border-color:#ccc transparent transparent transparent;border-top-style:solid;position:absolute;top:auto;bottom:-14px;left:9px;right:auto;z-index:88}.f-dropdown li{font-size:.875rem;cursor:pointer;line-height:1.125rem;margin:0}.f-dropdown li:hover,.f-dropdown li:focus{background:#eee}.f-dropdown li.radius{border-radius:3px}.f-dropdown li a{display:block;padding:.5rem;color:#555}.f-dropdown.content{position:absolute;left:-9999px;list-style:none;margin-left:0;outline:none;padding:1.25rem;width:100%;height:auto;max-height:none;background:#fff;border:solid 1px #ccc;font-size:.875rem;z-index:89;max-width:200px}.f-dropdown.content>*:first-child{margin-top:0}.f-dropdown.content>*:last-child{margin-bottom:0}.f-dropdown.tiny{max-width:200px}.f-dropdown.small{max-width:300px}.f-dropdown.medium{max-width:500px}.f-dropdown.large{max-width:800px}.f-dropdown.mega{width:100% !important;max-width:100% !important}.f-dropdown.mega.open{left:0 !important}.dropdown.button,button.dropdown{position:relative;outline:none;padding-right:3.5625rem}.dropdown.button::after,button.dropdown::after{position:absolute;content:"";width:0;height:0;display:block;border-style:solid;border-color:#fff transparent transparent transparent;top:50%}.dropdown.button::after,button.dropdown::after{border-width:.375rem;right:1.40625rem;margin-top:-.15625rem}.dropdown.button::after,button.dropdown::after{border-color:#fff transparent transparent transparent}.dropdown.button.tiny,button.dropdown.tiny{padding-right:2.625rem}.dropdown.button.tiny:after,button.dropdown.tiny:after{border-width:.375rem;right:1.125rem;margin-top:-.125rem}.dropdown.button.tiny::after,button.dropdown.tiny::after{border-color:#fff transparent transparent transparent}.dropdown.button.small,button.dropdown.small{padding-right:3.0625rem}.dropdown.button.small::after,button.dropdown.small::after{border-width:.4375rem;right:1.3125rem;margin-top:-.15625rem}.dropdown.button.small::after,button.dropdown.small::after{border-color:#fff transparent transparent transparent}.dropdown.button.large,button.dropdown.large{padding-right:3.625rem}.dropdown.button.large::after,button.dropdown.large::after{border-width:.3125rem;right:1.71875rem;margin-top:-.15625rem}.dropdown.button.large::after,button.dropdown.large::after{border-color:#fff transparent transparent transparent}.dropdown.button.secondary:after,button.dropdown.secondary:after{border-color:#333 transparent transparent transparent}.flex-video{position:relative;padding-top:1.5625rem;padding-bottom:67.5%;height:0;margin-bottom:1rem;overflow:hidden}.flex-video.widescreen{padding-bottom:56.34%}.flex-video.vimeo{padding-top:0}.flex-video iframe,.flex-video object,.flex-video embed,.flex-video video{position:absolute;top:0;left:0;width:100%;height:100%}.inline-list{margin:0 auto 1.0625rem auto;margin-left:-1.375rem;margin-right:0;padding:0;list-style:none;overflow:hidden}.inline-list>li{list-style:none;float:left;margin-left:1.375rem;display:block}.inline-list>li>*{display:block}.keystroke,kbd{background-color:#ededed;border-color:#ddd;color:#222;border-style:solid;border-width:1px;margin:0;font-family:"Consolas","Menlo","Courier",monospace;font-size:inherit;padding:.125rem .25rem 0;border-radius:3px}.label{font-weight:normal;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;text-align:center;text-decoration:none;line-height:1;white-space:nowrap;display:inline-block;position:relative;margin-bottom:auto;padding:.25rem .5rem .25rem;font-size:.6875rem;background-color:#BA4A00;color:#fff}.label.radius{border-radius:3px}.label.round{border-radius:1000px}.label.alert{background-color:#DF4949;color:#fff}.label.warning{background-color:#E27A3F;color:#fff}.label.success{background-color:#A1D044;color:#fff}.label.secondary{background-color:#FDEBD0;color:#333}.label.info{background-color:#334D5C;color:#fff}.panel{border-style:solid;border-width:1px;border-color:#cbcbcb;margin-bottom:1.25rem;padding:1.25rem;background:#E4E4E4;color:#333}.panel>:first-child{margin-top:0}.panel>:last-child{margin-bottom:0}.panel h1,.panel h2,.panel h3,.panel h4,.panel h5,.panel h6,.panel p,.panel li,.panel dl{color:#333}.panel h1,.panel h2,.panel h3,.panel h4,.panel h5,.panel h6{line-height:1;margin-bottom:.625rem}.panel h1.subheader,.panel h2.subheader,.panel h3.subheader,.panel h4.subheader,.panel h5.subheader,.panel h6.subheader{line-height:1.4}.panel.callout{border-style:solid;border-width:1px;border-color:#ffd3b6;margin-bottom:1.25rem;padding:1.25rem;background:#fff3ec;color:#333}.panel.callout>:first-child{margin-top:0}.panel.callout>:last-child{margin-bottom:0}.panel.callout h1,.panel.callout h2,.panel.callout h3,.panel.callout h4,.panel.callout h5,.panel.callout h6,.panel.callout p,.panel.callout li,.panel.callout dl{color:#333}.panel.callout h1,.panel.callout h2,.panel.callout h3,.panel.callout h4,.panel.callout h5,.panel.callout h6{line-height:1;margin-bottom:.625rem}.panel.callout h1.subheader,.panel.callout h2.subheader,.panel.callout h3.subheader,.panel.callout h4.subheader,.panel.callout h5.subheader,.panel.callout h6.subheader{line-height:1.4}.panel.callout a:not(.button){color:#BA4A00}.panel.callout a:not(.button):hover,.panel.callout a:not(.button):focus{color:#a04000}.panel.radius{border-radius:3px}.reveal-modal-bg{position:absolute;top:0;bottom:0;left:0;right:0;background:#000;background:rgba(0,0,0,0.45);z-index:1004;display:none;left:0}.reveal-modal,dialog{visibility:hidden;display:none;position:absolute;z-index:1005;width:100vw;top:0;border-radius:3px;left:0;background-color:#fff;padding:1.25rem;border:solid 1px #666;box-shadow:0 0 10px rgba(0,0,0,0.4);padding:1.875rem}@media only screen and (max-width: 40em){.reveal-modal,dialog{min-height:100vh}}.reveal-modal .column,dialog .column,.reveal-modal .columns,dialog .columns{min-width:0}.reveal-modal>:first-child,dialog>:first-child{margin-top:0}.reveal-modal>:last-child,dialog>:last-child{margin-bottom:0}@media only screen and (min-width: 40.063em){.reveal-modal,dialog{width:80%;max-width:62.5rem;left:0;right:0;margin:0 auto}}@media only screen and (min-width: 40.063em){.reveal-modal,dialog{top:6.25rem}}.reveal-modal.radius,dialog.radius{border-radius:3px}.reveal-modal.round,dialog.round{border-radius:1000px}.reveal-modal.collapse,dialog.collapse{padding:0}@media only screen and (min-width: 40.063em){.reveal-modal.tiny,dialog.tiny{width:30%;max-width:62.5rem;left:0;right:0;margin:0 auto}}@media only screen and (min-width: 40.063em){.reveal-modal.small,dialog.small{width:40%;max-width:62.5rem;left:0;right:0;margin:0 auto}}@media only screen and (min-width: 40.063em){.reveal-modal.medium,dialog.medium{width:60%;max-width:62.5rem;left:0;right:0;margin:0 auto}}@media only screen and (min-width: 40.063em){.reveal-modal.large,dialog.large{width:70%;max-width:62.5rem;left:0;right:0;margin:0 auto}}@media only screen and (min-width: 40.063em){.reveal-modal.xlarge,dialog.xlarge{width:95%;max-width:62.5rem;left:0;right:0;margin:0 auto}}.reveal-modal.full,dialog.full{top:0;left:0;height:100%;height:100vh;min-height:100vh;max-width:none !important;margin-left:0 !important}@media only screen and (min-width: 40.063em){.reveal-modal.full,dialog.full{width:100vw;max-width:62.5rem;left:0;right:0;margin:0 auto}}.reveal-modal .close-reveal-modal,dialog .close-reveal-modal{font-size:2.5rem;line-height:1;position:absolute;top:.625rem;right:1.375rem;color:#aaa;font-weight:bold;cursor:pointer}dialog{display:none}dialog::backdrop,dialog+.backdrop{position:absolute;top:0;bottom:0;left:0;right:0;background:#000;background:rgba(0,0,0,0.45);z-index:auto;display:none;left:0}dialog[open]{display:block}@media print{dialog,.reveal-modal,dialog{display:none;background:#fff !important}}.side-nav{display:block;margin:0;padding:0 0 0 0;list-style-type:none;list-style-position:outside;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}.side-nav li{margin:0 0 0 0;font-size:1rem;font-weight:normal}.side-nav li a:not(.button){display:block;color:#BA4A00;margin:0;padding:.4375rem .875rem}.side-nav li a:not(.button):hover,.side-nav li a:not(.button):focus{background:rgba(0,0,0,0.025);color:#702c00}.side-nav li.active>a:first-child:not(.button){color:#702c00;font-weight:normal;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}.side-nav li.divider{border-top:1px solid;height:0;padding:0;list-style:none;border-top-color:#E4E4E4}.side-nav li.heading{color:#BA4A00;font-size:1rem;font-weight:bold;text-transform:uppercase}.sub-nav{display:block;width:auto;overflow:hidden;margin:-.25rem 0 1.125rem;padding-top:.25rem}.sub-nav dt{text-transform:uppercase}.sub-nav dt,.sub-nav dd,.sub-nav li{float:left;display:inline;margin-left:1rem;margin-bottom:0;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:normal;font-size:.875rem;color:#999}.sub-nav dt a,.sub-nav dd a,.sub-nav li a{text-decoration:none;color:#999;padding:.1875rem 1rem}.sub-nav dt a:hover,.sub-nav dd a:hover,.sub-nav li a:hover{color:#737373}.sub-nav dt.active a,.sub-nav dd.active a,.sub-nav li.active a{border-radius:3px;font-weight:normal;background:#BA4A00;padding:.1875rem 1rem;cursor:default;color:#fff}.sub-nav dt.active a:hover,.sub-nav dd.active a:hover,.sub-nav li.active a:hover{background:#a04000}table{background:#fff;margin-bottom:1.25rem;border:solid 1px #ddd;table-layout:auto}table caption{background:transparent;color:#222;font-size:1rem;font-weight:bold}table thead{background:#D7D7D7}table thead tr th,table thead tr td{padding:.5rem .625rem .625rem;font-size:.875rem;font-weight:bold;color:#222}table tfoot{background:#D7D7D7}table tfoot tr th,table tfoot tr td{padding:.5rem .625rem .625rem;font-size:.875rem;font-weight:bold;color:#222}table tr th,table tr td{padding:.5625rem .625rem;font-size:.875rem;color:#222;text-align:left}table tr.even,table tr.alt,table tr:nth-of-type(even){background:#E4E4E4}table thead tr th,table tfoot tr th,table tfoot tr td,table tbody tr th,table tbody tr td,table tr td{display:table-cell;line-height:1.125rem}.th{line-height:0;display:inline-block;border:solid 4px #fff;max-width:100%;box-shadow:0 0 0 1px rgba(0,0,0,0.2);transition:all 200ms ease-out}.th:hover,.th:focus{box-shadow:0 0 6px 1px rgba(186,74,0,0.5)}.th.radius{border-radius:3px}.text-left{text-align:left !important}.text-right{text-align:right !important}.text-center{text-align:center !important}.text-justify{text-align:justify !important}@media only screen and (max-width: 40em){.small-only-text-left{text-align:left !important}.small-only-text-right{text-align:right !important}.small-only-text-center{text-align:center !important}.small-only-text-justify{text-align:justify !important}}@media only screen{.small-text-left{text-align:left !important}.small-text-right{text-align:right !important}.small-text-center{text-align:center !important}.small-text-justify{text-align:justify !important}}@media only screen and (min-width: 40.063em) and (max-width: 64em){.medium-only-text-left{text-align:left !important}.medium-only-text-right{text-align:right !important}.medium-only-text-center{text-align:center !important}.medium-only-text-justify{text-align:justify !important}}@media only screen and (min-width: 40.063em){.medium-text-left{text-align:left !important}.medium-text-right{text-align:right !important}.medium-text-center{text-align:center !important}.medium-text-justify{text-align:justify !important}}@media only screen and (min-width: 64.063em) and (max-width: 90em){.large-only-text-left{text-align:left !important}.large-only-text-right{text-align:right !important}.large-only-text-center{text-align:center !important}.large-only-text-justify{text-align:justify !important}}@media only screen and (min-width: 64.063em){.large-text-left{text-align:left !important}.large-text-right{text-align:right !important}.large-text-center{text-align:center !important}.large-text-justify{text-align:justify !important}}@media only screen and (min-width: 90.063em) and (max-width: 120em){.xlarge-only-text-left{text-align:left !important}.xlarge-only-text-right{text-align:right !important}.xlarge-only-text-center{text-align:center !important}.xlarge-only-text-justify{text-align:justify !important}}@media only screen and (min-width: 90.063em){.xlarge-text-left{text-align:left !important}.xlarge-text-right{text-align:right !important}.xlarge-text-center{text-align:center !important}.xlarge-text-justify{text-align:justify !important}}@media only screen and (min-width: 120.063em) and (max-width: 99999999em){.xxlarge-only-text-left{text-align:left !important}.xxlarge-only-text-right{text-align:right !important}.xxlarge-only-text-center{text-align:center !important}.xxlarge-only-text-justify{text-align:justify !important}}@media only screen and (min-width: 120.063em){.xxlarge-text-left{text-align:left !important}.xxlarge-text-right{text-align:right !important}.xxlarge-text-center{text-align:center !important}.xxlarge-text-justify{text-align:justify !important}}div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,p,blockquote,th,td{margin:0;padding:0}a{color:#BA4A00;text-decoration:none;line-height:inherit}a:hover,a:focus{color:#a04000}a img{border:none}p{font-family:inherit;font-weight:normal;font-size:1rem;line-height:1.6;margin-bottom:1.25rem;text-rendering:optimizeLegibility}p.lead{font-size:1.21875rem;line-height:1.6}p aside{font-size:.875rem;line-height:1.35;font-style:italic}h1,h2,h3,h4,h5,h6{font-family:"Lato","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:normal;font-style:normal;color:#222;text-rendering:optimizeLegibility;margin-top:.2rem;margin-bottom:.5rem;line-height:1.4}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-size:60%;color:#6f6f6f;line-height:0}h1{font-size:2.125rem}h2{font-size:1.6875rem}h3{font-size:1.375rem}h4{font-size:1.125rem}h5{font-size:1.125rem}h6{font-size:1rem}.subheader{line-height:1.4;color:#6f6f6f;font-weight:normal;margin-top:.2rem;margin-bottom:.5rem}hr{border:solid #CBCBCB;border-width:1px 0 0;clear:both;margin:1.25rem 0 1.1875rem;height:0}em,i{font-style:italic;line-height:inherit}strong,b{font-weight:bold;line-height:inherit}small{font-size:60%;line-height:inherit}code{font-family:"Lucida Console",Monaco,monospace;font-weight:normal;color:#333;background-color:#fef9f1;border-width:1px;border-style:solid;border-color:#fce5c1;padding:.125rem .3125rem .0625rem}ul,ol,dl{font-size:1rem;line-height:1.6;margin-bottom:1.25rem;list-style-position:outside;font-family:inherit}ul{margin-left:1.3rem}ul.no-bullet{margin-left:0}ul.no-bullet li ul,ul.no-bullet li ol{margin-left:1.25rem;margin-bottom:0;list-style:none}ul li ul,ul li ol{margin-left:1.25rem;margin-bottom:0}ul.square li ul,ul.circle li ul,ul.disc li ul{list-style:inherit}ul.square{list-style-type:square;margin-left:1.3rem}ul.circle{list-style-type:circle;margin-left:1.3rem}ul.disc{list-style-type:disc;margin-left:1.3rem}ul.no-bullet{list-style:none}ol{margin-left:1.4rem}ol li ul,ol li ol{margin-left:1.25rem;margin-bottom:0}dl dt{margin-bottom:.3rem;font-weight:bold}dl dd{margin-bottom:.75rem}abbr,acronym{text-transform:uppercase;font-size:90%;color:#111;cursor:help}abbr{text-transform:none}abbr[title]{border-bottom:1px dotted #ddd}blockquote{margin:0 0 1.25rem;padding:.5625rem 1.25rem 0 1.1875rem;border-left:1px solid #ddd}blockquote cite{display:block;font-size:.8125rem;color:#555}blockquote cite:before{content:"\2014 \0020"}blockquote cite a,blockquote cite a:visited{color:#555}blockquote,blockquote p{line-height:1.6;color:#6f6f6f}.vcard{display:inline-block;margin:0 0 1.25rem 0;border:1px solid #ddd;padding:.625rem .75rem}.vcard li{margin:0;display:block}.vcard .fn{font-weight:bold;font-size:.9375rem}.vevent .summary{font-weight:bold}.vevent abbr{cursor:default;text-decoration:none;font-weight:bold;border:none;padding:0 .0625rem}@media only screen and (min-width: 40.063em){h1,h2,h3,h4,h5,h6{line-height:1.4}h1{font-size:2.75rem}h2{font-size:2.3125rem}h3{font-size:1.6875rem}h4{font-size:1.4375rem}h5{font-size:1.125rem}h6{font-size:1rem}}.print-only{display:none !important}@media print{*{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}@page{margin:0.5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.hide-on-print{display:none !important}.print-only{display:block !important}.hide-for-print{display:none !important}.show-for-print{display:inherit !important}}@media only screen{.show-for-small-only,.show-for-small-up,.show-for-small,.show-for-small-down,.hide-for-medium-only,.hide-for-medium-up,.hide-for-medium,.show-for-medium-down,.hide-for-large-only,.hide-for-large-up,.hide-for-large,.show-for-large-down,.hide-for-xlarge-only,.hide-for-xlarge-up,.hide-for-xlarge,.show-for-xlarge-down,.hide-for-xxlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge,.show-for-xxlarge-down{display:inherit !important}.hide-for-small-only,.hide-for-small-up,.hide-for-small,.hide-for-small-down,.show-for-medium-only,.show-for-medium-up,.show-for-medium,.hide-for-medium-down,.show-for-large-only,.show-for-large-up,.show-for-large,.hide-for-large-down,.show-for-xlarge-only,.show-for-xlarge-up,.show-for-xlarge,.hide-for-xlarge-down,.show-for-xxlarge-only,.show-for-xxlarge-up,.show-for-xxlarge,.hide-for-xxlarge-down{display:none !important}.visible-for-small-only,.visible-for-small-up,.visible-for-small,.visible-for-small-down,.hidden-for-medium-only,.hidden-for-medium-up,.hidden-for-medium,.visible-for-medium-down,.hidden-for-large-only,.hidden-for-large-up,.hidden-for-large,.visible-for-large-down,.hidden-for-xlarge-only,.hidden-for-xlarge-up,.hidden-for-xlarge,.visible-for-xlarge-down,.hidden-for-xxlarge-only,.hidden-for-xxlarge-up,.hidden-for-xxlarge,.visible-for-xxlarge-down{position:static !important;height:auto;width:auto;overflow:visible;clip:auto}.hidden-for-small-only,.hidden-for-small-up,.hidden-for-small,.hidden-for-small-down,.visible-for-medium-only,.visible-for-medium-up,.visible-for-medium,.hidden-for-medium-down,.visible-for-large-only,.visible-for-large-up,.visible-for-large,.hidden-for-large-down,.visible-for-xlarge-only,.visible-for-xlarge-up,.visible-for-xlarge,.hidden-for-xlarge-down,.visible-for-xxlarge-only,.visible-for-xxlarge-up,.visible-for-xxlarge,.hidden-for-xxlarge-down{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}table.show-for-small-only,table.show-for-small-up,table.show-for-small,table.show-for-small-down,table.hide-for-medium-only,table.hide-for-medium-up,table.hide-for-medium,table.show-for-medium-down,table.hide-for-large-only,table.hide-for-large-up,table.hide-for-large,table.show-for-large-down,table.hide-for-xlarge-only,table.hide-for-xlarge-up,table.hide-for-xlarge,table.show-for-xlarge-down,table.hide-for-xxlarge-only,table.hide-for-xxlarge-up,table.hide-for-xxlarge,table.show-for-xxlarge-down{display:table !important}thead.show-for-small-only,thead.show-for-small-up,thead.show-for-small,thead.show-for-small-down,thead.hide-for-medium-only,thead.hide-for-medium-up,thead.hide-for-medium,thead.show-for-medium-down,thead.hide-for-large-only,thead.hide-for-large-up,thead.hide-for-large,thead.show-for-large-down,thead.hide-for-xlarge-only,thead.hide-for-xlarge-up,thead.hide-for-xlarge,thead.show-for-xlarge-down,thead.hide-for-xxlarge-only,thead.hide-for-xxlarge-up,thead.hide-for-xxlarge,thead.show-for-xxlarge-down{display:table-header-group !important}tbody.show-for-small-only,tbody.show-for-small-up,tbody.show-for-small,tbody.show-for-small-down,tbody.hide-for-medium-only,tbody.hide-for-medium-up,tbody.hide-for-medium,tbody.show-for-medium-down,tbody.hide-for-large-only,tbody.hide-for-large-up,tbody.hide-for-large,tbody.show-for-large-down,tbody.hide-for-xlarge-only,tbody.hide-for-xlarge-up,tbody.hide-for-xlarge,tbody.show-for-xlarge-down,tbody.hide-for-xxlarge-only,tbody.hide-for-xxlarge-up,tbody.hide-for-xxlarge,tbody.show-for-xxlarge-down{display:table-row-group !important}tr.show-for-small-only,tr.show-for-small-up,tr.show-for-small,tr.show-for-small-down,tr.hide-for-medium-only,tr.hide-for-medium-up,tr.hide-for-medium,tr.show-for-medium-down,tr.hide-for-large-only,tr.hide-for-large-up,tr.hide-for-large,tr.show-for-large-down,tr.hide-for-xlarge-only,tr.hide-for-xlarge-up,tr.hide-for-xlarge,tr.show-for-xlarge-down,tr.hide-for-xxlarge-only,tr.hide-for-xxlarge-up,tr.hide-for-xxlarge,tr.show-for-xxlarge-down{display:table-row !important}th.show-for-small-only,td.show-for-small-only,th.show-for-small-up,td.show-for-small-up,th.show-for-small,td.show-for-small,th.show-for-small-down,td.show-for-small-down,th.hide-for-medium-only,td.hide-for-medium-only,th.hide-for-medium-up,td.hide-for-medium-up,th.hide-for-medium,td.hide-for-medium,th.show-for-medium-down,td.show-for-medium-down,th.hide-for-large-only,td.hide-for-large-only,th.hide-for-large-up,td.hide-for-large-up,th.hide-for-large,td.hide-for-large,th.show-for-large-down,td.show-for-large-down,th.hide-for-xlarge-only,td.hide-for-xlarge-only,th.hide-for-xlarge-up,td.hide-for-xlarge-up,th.hide-for-xlarge,td.hide-for-xlarge,th.show-for-xlarge-down,td.show-for-xlarge-down,th.hide-for-xxlarge-only,td.hide-for-xxlarge-only,th.hide-for-xxlarge-up,td.hide-for-xxlarge-up,th.hide-for-xxlarge,td.hide-for-xxlarge,th.show-for-xxlarge-down,td.show-for-xxlarge-down{display:table-cell !important}}@media only screen and (min-width: 40.063em){.hide-for-small-only,.show-for-small-up,.hide-for-small,.hide-for-small-down,.show-for-medium-only,.show-for-medium-up,.show-for-medium,.show-for-medium-down,.hide-for-large-only,.hide-for-large-up,.hide-for-large,.show-for-large-down,.hide-for-xlarge-only,.hide-for-xlarge-up,.hide-for-xlarge,.show-for-xlarge-down,.hide-for-xxlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge,.show-for-xxlarge-down{display:inherit !important}.show-for-small-only,.hide-for-small-up,.show-for-small,.show-for-small-down,.hide-for-medium-only,.hide-for-medium-up,.hide-for-medium,.hide-for-medium-down,.show-for-large-only,.show-for-large-up,.show-for-large,.hide-for-large-down,.show-for-xlarge-only,.show-for-xlarge-up,.show-for-xlarge,.hide-for-xlarge-down,.show-for-xxlarge-only,.show-for-xxlarge-up,.show-for-xxlarge,.hide-for-xxlarge-down{display:none !important}.hidden-for-small-only,.visible-for-small-up,.hidden-for-small,.hidden-for-small-down,.visible-for-medium-only,.visible-for-medium-up,.visible-for-medium,.visible-for-medium-down,.hidden-for-large-only,.hidden-for-large-up,.hidden-for-large,.visible-for-large-down,.hidden-for-xlarge-only,.hidden-for-xlarge-up,.hidden-for-xlarge,.visible-for-xlarge-down,.hidden-for-xxlarge-only,.hidden-for-xxlarge-up,.hidden-for-xxlarge,.visible-for-xxlarge-down{position:static !important;height:auto;width:auto;overflow:visible;clip:auto}.visible-for-small-only,.hidden-for-small-up,.visible-for-small,.visible-for-small-down,.hidden-for-medium-only,.hidden-for-medium-up,.hidden-for-medium,.hidden-for-medium-down,.visible-for-large-only,.visible-for-large-up,.visible-for-large,.hidden-for-large-down,.visible-for-xlarge-only,.visible-for-xlarge-up,.visible-for-xlarge,.hidden-for-xlarge-down,.visible-for-xxlarge-only,.visible-for-xxlarge-up,.visible-for-xxlarge,.hidden-for-xxlarge-down{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}table.hide-for-small-only,table.show-for-small-up,table.hide-for-small,table.hide-for-small-down,table.show-for-medium-only,table.show-for-medium-up,table.show-for-medium,table.show-for-medium-down,table.hide-for-large-only,table.hide-for-large-up,table.hide-for-large,table.show-for-large-down,table.hide-for-xlarge-only,table.hide-for-xlarge-up,table.hide-for-xlarge,table.show-for-xlarge-down,table.hide-for-xxlarge-only,table.hide-for-xxlarge-up,table.hide-for-xxlarge,table.show-for-xxlarge-down{display:table !important}thead.hide-for-small-only,thead.show-for-small-up,thead.hide-for-small,thead.hide-for-small-down,thead.show-for-medium-only,thead.show-for-medium-up,thead.show-for-medium,thead.show-for-medium-down,thead.hide-for-large-only,thead.hide-for-large-up,thead.hide-for-large,thead.show-for-large-down,thead.hide-for-xlarge-only,thead.hide-for-xlarge-up,thead.hide-for-xlarge,thead.show-for-xlarge-down,thead.hide-for-xxlarge-only,thead.hide-for-xxlarge-up,thead.hide-for-xxlarge,thead.show-for-xxlarge-down{display:table-header-group !important}tbody.hide-for-small-only,tbody.show-for-small-up,tbody.hide-for-small,tbody.hide-for-small-down,tbody.show-for-medium-only,tbody.show-for-medium-up,tbody.show-for-medium,tbody.show-for-medium-down,tbody.hide-for-large-only,tbody.hide-for-large-up,tbody.hide-for-large,tbody.show-for-large-down,tbody.hide-for-xlarge-only,tbody.hide-for-xlarge-up,tbody.hide-for-xlarge,tbody.show-for-xlarge-down,tbody.hide-for-xxlarge-only,tbody.hide-for-xxlarge-up,tbody.hide-for-xxlarge,tbody.show-for-xxlarge-down{display:table-row-group !important}tr.hide-for-small-only,tr.show-for-small-up,tr.hide-for-small,tr.hide-for-small-down,tr.show-for-medium-only,tr.show-for-medium-up,tr.show-for-medium,tr.show-for-medium-down,tr.hide-for-large-only,tr.hide-for-large-up,tr.hide-for-large,tr.show-for-large-down,tr.hide-for-xlarge-only,tr.hide-for-xlarge-up,tr.hide-for-xlarge,tr.show-for-xlarge-down,tr.hide-for-xxlarge-only,tr.hide-for-xxlarge-up,tr.hide-for-xxlarge,tr.show-for-xxlarge-down{display:table-row !important}th.hide-for-small-only,td.hide-for-small-only,th.show-for-small-up,td.show-for-small-up,th.hide-for-small,td.hide-for-small,th.hide-for-small-down,td.hide-for-small-down,th.show-for-medium-only,td.show-for-medium-only,th.show-for-medium-up,td.show-for-medium-up,th.show-for-medium,td.show-for-medium,th.show-for-medium-down,td.show-for-medium-down,th.hide-for-large-only,td.hide-for-large-only,th.hide-for-large-up,td.hide-for-large-up,th.hide-for-large,td.hide-for-large,th.show-for-large-down,td.show-for-large-down,th.hide-for-xlarge-only,td.hide-for-xlarge-only,th.hide-for-xlarge-up,td.hide-for-xlarge-up,th.hide-for-xlarge,td.hide-for-xlarge,th.show-for-xlarge-down,td.show-for-xlarge-down,th.hide-for-xxlarge-only,td.hide-for-xxlarge-only,th.hide-for-xxlarge-up,td.hide-for-xxlarge-up,th.hide-for-xxlarge,td.hide-for-xxlarge,th.show-for-xxlarge-down,td.show-for-xxlarge-down{display:table-cell !important}}@media only screen and (min-width: 64.063em){.hide-for-small-only,.show-for-small-up,.hide-for-small,.hide-for-small-down,.hide-for-medium-only,.show-for-medium-up,.hide-for-medium,.hide-for-medium-down,.show-for-large-only,.show-for-large-up,.show-for-large,.show-for-large-down,.hide-for-xlarge-only,.hide-for-xlarge-up,.hide-for-xlarge,.show-for-xlarge-down,.hide-for-xxlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge,.show-for-xxlarge-down{display:inherit !important}.show-for-small-only,.hide-for-small-up,.show-for-small,.show-for-small-down,.show-for-medium-only,.hide-for-medium-up,.show-for-medium,.show-for-medium-down,.hide-for-large-only,.hide-for-large-up,.hide-for-large,.hide-for-large-down,.show-for-xlarge-only,.show-for-xlarge-up,.show-for-xlarge,.hide-for-xlarge-down,.show-for-xxlarge-only,.show-for-xxlarge-up,.show-for-xxlarge,.hide-for-xxlarge-down{display:none !important}.hidden-for-small-only,.visible-for-small-up,.hidden-for-small,.hidden-for-small-down,.hidden-for-medium-only,.visible-for-medium-up,.hidden-for-medium,.hidden-for-medium-down,.visible-for-large-only,.visible-for-large-up,.visible-for-large,.visible-for-large-down,.hidden-for-xlarge-only,.hidden-for-xlarge-up,.hidden-for-xlarge,.visible-for-xlarge-down,.hidden-for-xxlarge-only,.hidden-for-xxlarge-up,.hidden-for-xxlarge,.visible-for-xxlarge-down{position:static !important;height:auto;width:auto;overflow:visible;clip:auto}.visible-for-small-only,.hidden-for-small-up,.visible-for-small,.visible-for-small-down,.visible-for-medium-only,.hidden-for-medium-up,.visible-for-medium,.visible-for-medium-down,.hidden-for-large-only,.hidden-for-large-up,.hidden-for-large,.hidden-for-large-down,.visible-for-xlarge-only,.visible-for-xlarge-up,.visible-for-xlarge,.hidden-for-xlarge-down,.visible-for-xxlarge-only,.visible-for-xxlarge-up,.visible-for-xxlarge,.hidden-for-xxlarge-down{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}table.hide-for-small-only,table.show-for-small-up,table.hide-for-small,table.hide-for-small-down,table.hide-for-medium-only,table.show-for-medium-up,table.hide-for-medium,table.hide-for-medium-down,table.show-for-large-only,table.show-for-large-up,table.show-for-large,table.show-for-large-down,table.hide-for-xlarge-only,table.hide-for-xlarge-up,table.hide-for-xlarge,table.show-for-xlarge-down,table.hide-for-xxlarge-only,table.hide-for-xxlarge-up,table.hide-for-xxlarge,table.show-for-xxlarge-down{display:table !important}thead.hide-for-small-only,thead.show-for-small-up,thead.hide-for-small,thead.hide-for-small-down,thead.hide-for-medium-only,thead.show-for-medium-up,thead.hide-for-medium,thead.hide-for-medium-down,thead.show-for-large-only,thead.show-for-large-up,thead.show-for-large,thead.show-for-large-down,thead.hide-for-xlarge-only,thead.hide-for-xlarge-up,thead.hide-for-xlarge,thead.show-for-xlarge-down,thead.hide-for-xxlarge-only,thead.hide-for-xxlarge-up,thead.hide-for-xxlarge,thead.show-for-xxlarge-down{display:table-header-group !important}tbody.hide-for-small-only,tbody.show-for-small-up,tbody.hide-for-small,tbody.hide-for-small-down,tbody.hide-for-medium-only,tbody.show-for-medium-up,tbody.hide-for-medium,tbody.hide-for-medium-down,tbody.show-for-large-only,tbody.show-for-large-up,tbody.show-for-large,tbody.show-for-large-down,tbody.hide-for-xlarge-only,tbody.hide-for-xlarge-up,tbody.hide-for-xlarge,tbody.show-for-xlarge-down,tbody.hide-for-xxlarge-only,tbody.hide-for-xxlarge-up,tbody.hide-for-xxlarge,tbody.show-for-xxlarge-down{display:table-row-group !important}tr.hide-for-small-only,tr.show-for-small-up,tr.hide-for-small,tr.hide-for-small-down,tr.hide-for-medium-only,tr.show-for-medium-up,tr.hide-for-medium,tr.hide-for-medium-down,tr.show-for-large-only,tr.show-for-large-up,tr.show-for-large,tr.show-for-large-down,tr.hide-for-xlarge-only,tr.hide-for-xlarge-up,tr.hide-for-xlarge,tr.show-for-xlarge-down,tr.hide-for-xxlarge-only,tr.hide-for-xxlarge-up,tr.hide-for-xxlarge,tr.show-for-xxlarge-down{display:table-row !important}th.hide-for-small-only,td.hide-for-small-only,th.show-for-small-up,td.show-for-small-up,th.hide-for-small,td.hide-for-small,th.hide-for-small-down,td.hide-for-small-down,th.hide-for-medium-only,td.hide-for-medium-only,th.show-for-medium-up,td.show-for-medium-up,th.hide-for-medium,td.hide-for-medium,th.hide-for-medium-down,td.hide-for-medium-down,th.show-for-large-only,td.show-for-large-only,th.show-for-large-up,td.show-for-large-up,th.show-for-large,td.show-for-large,th.show-for-large-down,td.show-for-large-down,th.hide-for-xlarge-only,td.hide-for-xlarge-only,th.hide-for-xlarge-up,td.hide-for-xlarge-up,th.hide-for-xlarge,td.hide-for-xlarge,th.show-for-xlarge-down,td.show-for-xlarge-down,th.hide-for-xxlarge-only,td.hide-for-xxlarge-only,th.hide-for-xxlarge-up,td.hide-for-xxlarge-up,th.hide-for-xxlarge,td.hide-for-xxlarge,th.show-for-xxlarge-down,td.show-for-xxlarge-down{display:table-cell !important}}@media only screen and (min-width: 90.063em){.hide-for-small-only,.show-for-small-up,.hide-for-small,.hide-for-small-down,.hide-for-medium-only,.show-for-medium-up,.hide-for-medium,.hide-for-medium-down,.hide-for-large-only,.show-for-large-up,.hide-for-large,.hide-for-large-down,.show-for-xlarge-only,.show-for-xlarge-up,.show-for-xlarge,.show-for-xlarge-down,.hide-for-xxlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge,.show-for-xxlarge-down{display:inherit !important}.show-for-small-only,.hide-for-small-up,.show-for-small,.show-for-small-down,.show-for-medium-only,.hide-for-medium-up,.show-for-medium,.show-for-medium-down,.show-for-large-only,.hide-for-large-up,.show-for-large,.show-for-large-down,.hide-for-xlarge-only,.hide-for-xlarge-up,.hide-for-xlarge,.hide-for-xlarge-down,.show-for-xxlarge-only,.show-for-xxlarge-up,.show-for-xxlarge,.hide-for-xxlarge-down{display:none !important}.hidden-for-small-only,.visible-for-small-up,.hidden-for-small,.hidden-for-small-down,.hidden-for-medium-only,.visible-for-medium-up,.hidden-for-medium,.hidden-for-medium-down,.hidden-for-large-only,.visible-for-large-up,.hidden-for-large,.hidden-for-large-down,.visible-for-xlarge-only,.visible-for-xlarge-up,.visible-for-xlarge,.visible-for-xlarge-down,.hidden-for-xxlarge-only,.hidden-for-xxlarge-up,.hidden-for-xxlarge,.visible-for-xxlarge-down{position:static !important;height:auto;width:auto;overflow:visible;clip:auto}.visible-for-small-only,.hidden-for-small-up,.visible-for-small,.visible-for-small-down,.visible-for-medium-only,.hidden-for-medium-up,.visible-for-medium,.visible-for-medium-down,.visible-for-large-only,.hidden-for-large-up,.visible-for-large,.visible-for-large-down,.hidden-for-xlarge-only,.hidden-for-xlarge-up,.hidden-for-xlarge,.hidden-for-xlarge-down,.visible-for-xxlarge-only,.visible-for-xxlarge-up,.visible-for-xxlarge,.hidden-for-xxlarge-down{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}table.hide-for-small-only,table.show-for-small-up,table.hide-for-small,table.hide-for-small-down,table.hide-for-medium-only,table.show-for-medium-up,table.hide-for-medium,table.hide-for-medium-down,table.hide-for-large-only,table.show-for-large-up,table.hide-for-large,table.hide-for-large-down,table.show-for-xlarge-only,table.show-for-xlarge-up,table.show-for-xlarge,table.show-for-xlarge-down,table.hide-for-xxlarge-only,table.hide-for-xxlarge-up,table.hide-for-xxlarge,table.show-for-xxlarge-down{display:table !important}thead.hide-for-small-only,thead.show-for-small-up,thead.hide-for-small,thead.hide-for-small-down,thead.hide-for-medium-only,thead.show-for-medium-up,thead.hide-for-medium,thead.hide-for-medium-down,thead.hide-for-large-only,thead.show-for-large-up,thead.hide-for-large,thead.hide-for-large-down,thead.show-for-xlarge-only,thead.show-for-xlarge-up,thead.show-for-xlarge,thead.show-for-xlarge-down,thead.hide-for-xxlarge-only,thead.hide-for-xxlarge-up,thead.hide-for-xxlarge,thead.show-for-xxlarge-down{display:table-header-group !important}tbody.hide-for-small-only,tbody.show-for-small-up,tbody.hide-for-small,tbody.hide-for-small-down,tbody.hide-for-medium-only,tbody.show-for-medium-up,tbody.hide-for-medium,tbody.hide-for-medium-down,tbody.hide-for-large-only,tbody.show-for-large-up,tbody.hide-for-large,tbody.hide-for-large-down,tbody.show-for-xlarge-only,tbody.show-for-xlarge-up,tbody.show-for-xlarge,tbody.show-for-xlarge-down,tbody.hide-for-xxlarge-only,tbody.hide-for-xxlarge-up,tbody.hide-for-xxlarge,tbody.show-for-xxlarge-down{display:table-row-group !important}tr.hide-for-small-only,tr.show-for-small-up,tr.hide-for-small,tr.hide-for-small-down,tr.hide-for-medium-only,tr.show-for-medium-up,tr.hide-for-medium,tr.hide-for-medium-down,tr.hide-for-large-only,tr.show-for-large-up,tr.hide-for-large,tr.hide-for-large-down,tr.show-for-xlarge-only,tr.show-for-xlarge-up,tr.show-for-xlarge,tr.show-for-xlarge-down,tr.hide-for-xxlarge-only,tr.hide-for-xxlarge-up,tr.hide-for-xxlarge,tr.show-for-xxlarge-down{display:table-row !important}th.hide-for-small-only,td.hide-for-small-only,th.show-for-small-up,td.show-for-small-up,th.hide-for-small,td.hide-for-small,th.hide-for-small-down,td.hide-for-small-down,th.hide-for-medium-only,td.hide-for-medium-only,th.show-for-medium-up,td.show-for-medium-up,th.hide-for-medium,td.hide-for-medium,th.hide-for-medium-down,td.hide-for-medium-down,th.hide-for-large-only,td.hide-for-large-only,th.show-for-large-up,td.show-for-large-up,th.hide-for-large,td.hide-for-large,th.hide-for-large-down,td.hide-for-large-down,th.show-for-xlarge-only,td.show-for-xlarge-only,th.show-for-xlarge-up,td.show-for-xlarge-up,th.show-for-xlarge,td.show-for-xlarge,th.show-for-xlarge-down,td.show-for-xlarge-down,th.hide-for-xxlarge-only,td.hide-for-xxlarge-only,th.hide-for-xxlarge-up,td.hide-for-xxlarge-up,th.hide-for-xxlarge,td.hide-for-xxlarge,th.show-for-xxlarge-down,td.show-for-xxlarge-down{display:table-cell !important}}@media only screen and (min-width: 120.063em){.hide-for-small-only,.show-for-small-up,.hide-for-small,.hide-for-small-down,.hide-for-medium-only,.show-for-medium-up,.hide-for-medium,.hide-for-medium-down,.hide-for-large-only,.show-for-large-up,.hide-for-large,.hide-for-large-down,.hide-for-xlarge-only,.show-for-xlarge-up,.hide-for-xlarge,.hide-for-xlarge-down,.show-for-xxlarge-only,.show-for-xxlarge-up,.show-for-xxlarge,.show-for-xxlarge-down{display:inherit !important}.show-for-small-only,.hide-for-small-up,.show-for-small,.show-for-small-down,.show-for-medium-only,.hide-for-medium-up,.show-for-medium,.show-for-medium-down,.show-for-large-only,.hide-for-large-up,.show-for-large,.show-for-large-down,.show-for-xlarge-only,.hide-for-xlarge-up,.show-for-xlarge,.show-for-xlarge-down,.hide-for-xxlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge,.hide-for-xxlarge-down{display:none !important}.hidden-for-small-only,.visible-for-small-up,.hidden-for-small,.hidden-for-small-down,.hidden-for-medium-only,.visible-for-medium-up,.hidden-for-medium,.hidden-for-medium-down,.hidden-for-large-only,.visible-for-large-up,.hidden-for-large,.hidden-for-large-down,.hidden-for-xlarge-only,.visible-for-xlarge-up,.hidden-for-xlarge,.hidden-for-xlarge-down,.visible-for-xxlarge-only,.visible-for-xxlarge-up,.visible-for-xxlarge,.visible-for-xxlarge-down{position:static !important;height:auto;width:auto;overflow:visible;clip:auto}.visible-for-small-only,.hidden-for-small-up,.visible-for-small,.visible-for-small-down,.visible-for-medium-only,.hidden-for-medium-up,.visible-for-medium,.visible-for-medium-down,.visible-for-large-only,.hidden-for-large-up,.visible-for-large,.visible-for-large-down,.visible-for-xlarge-only,.hidden-for-xlarge-up,.visible-for-xlarge,.visible-for-xlarge-down,.hidden-for-xxlarge-only,.hidden-for-xxlarge-up,.hidden-for-xxlarge,.hidden-for-xxlarge-down{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}table.hide-for-small-only,table.show-for-small-up,table.hide-for-small,table.hide-for-small-down,table.hide-for-medium-only,table.show-for-medium-up,table.hide-for-medium,table.hide-for-medium-down,table.hide-for-large-only,table.show-for-large-up,table.hide-for-large,table.hide-for-large-down,table.hide-for-xlarge-only,table.show-for-xlarge-up,table.hide-for-xlarge,table.hide-for-xlarge-down,table.show-for-xxlarge-only,table.show-for-xxlarge-up,table.show-for-xxlarge,table.show-for-xxlarge-down{display:table !important}thead.hide-for-small-only,thead.show-for-small-up,thead.hide-for-small,thead.hide-for-small-down,thead.hide-for-medium-only,thead.show-for-medium-up,thead.hide-for-medium,thead.hide-for-medium-down,thead.hide-for-large-only,thead.show-for-large-up,thead.hide-for-large,thead.hide-for-large-down,thead.hide-for-xlarge-only,thead.show-for-xlarge-up,thead.hide-for-xlarge,thead.hide-for-xlarge-down,thead.show-for-xxlarge-only,thead.show-for-xxlarge-up,thead.show-for-xxlarge,thead.show-for-xxlarge-down{display:table-header-group !important}tbody.hide-for-small-only,tbody.show-for-small-up,tbody.hide-for-small,tbody.hide-for-small-down,tbody.hide-for-medium-only,tbody.show-for-medium-up,tbody.hide-for-medium,tbody.hide-for-medium-down,tbody.hide-for-large-only,tbody.show-for-large-up,tbody.hide-for-large,tbody.hide-for-large-down,tbody.hide-for-xlarge-only,tbody.show-for-xlarge-up,tbody.hide-for-xlarge,tbody.hide-for-xlarge-down,tbody.show-for-xxlarge-only,tbody.show-for-xxlarge-up,tbody.show-for-xxlarge,tbody.show-for-xxlarge-down{display:table-row-group !important}tr.hide-for-small-only,tr.show-for-small-up,tr.hide-for-small,tr.hide-for-small-down,tr.hide-for-medium-only,tr.show-for-medium-up,tr.hide-for-medium,tr.hide-for-medium-down,tr.hide-for-large-only,tr.show-for-large-up,tr.hide-for-large,tr.hide-for-large-down,tr.hide-for-xlarge-only,tr.show-for-xlarge-up,tr.hide-for-xlarge,tr.hide-for-xlarge-down,tr.show-for-xxlarge-only,tr.show-for-xxlarge-up,tr.show-for-xxlarge,tr.show-for-xxlarge-down{display:table-row !important}th.hide-for-small-only,td.hide-for-small-only,th.show-for-small-up,td.show-for-small-up,th.hide-for-small,td.hide-for-small,th.hide-for-small-down,td.hide-for-small-down,th.hide-for-medium-only,td.hide-for-medium-only,th.show-for-medium-up,td.show-for-medium-up,th.hide-for-medium,td.hide-for-medium,th.hide-for-medium-down,td.hide-for-medium-down,th.hide-for-large-only,td.hide-for-large-only,th.show-for-large-up,td.show-for-large-up,th.hide-for-large,td.hide-for-large,th.hide-for-large-down,td.hide-for-large-down,th.hide-for-xlarge-only,td.hide-for-xlarge-only,th.show-for-xlarge-up,td.show-for-xlarge-up,th.hide-for-xlarge,td.hide-for-xlarge,th.hide-for-xlarge-down,td.hide-for-xlarge-down,th.show-for-xxlarge-only,td.show-for-xxlarge-only,th.show-for-xxlarge-up,td.show-for-xxlarge-up,th.show-for-xxlarge,td.show-for-xxlarge,th.show-for-xxlarge-down,td.show-for-xxlarge-down{display:table-cell !important}}.show-for-landscape,.hide-for-portrait{display:inherit !important}.hide-for-landscape,.show-for-portrait{display:none !important}table.hide-for-landscape,table.show-for-portrait{display:table !important}thead.hide-for-landscape,thead.show-for-portrait{display:table-header-group !important}tbody.hide-for-landscape,tbody.show-for-portrait{display:table-row-group !important}tr.hide-for-landscape,tr.show-for-portrait{display:table-row !important}td.hide-for-landscape,td.show-for-portrait,th.hide-for-landscape,th.show-for-portrait{display:table-cell !important}@media only screen and (orientation: landscape){.show-for-landscape,.hide-for-portrait{display:inherit !important}.hide-for-landscape,.show-for-portrait{display:none !important}table.show-for-landscape,table.hide-for-portrait{display:table !important}thead.show-for-landscape,thead.hide-for-portrait{display:table-header-group !important}tbody.show-for-landscape,tbody.hide-for-portrait{display:table-row-group !important}tr.show-for-landscape,tr.hide-for-portrait{display:table-row !important}td.show-for-landscape,td.hide-for-portrait,th.show-for-landscape,th.hide-for-portrait{display:table-cell !important}}@media only screen and (orientation: portrait){.show-for-portrait,.hide-for-landscape{display:inherit !important}.hide-for-portrait,.show-for-landscape{display:none !important}table.show-for-portrait,table.hide-for-landscape{display:table !important}thead.show-for-portrait,thead.hide-for-landscape{display:table-header-group !important}tbody.show-for-portrait,tbody.hide-for-landscape{display:table-row-group !important}tr.show-for-portrait,tr.hide-for-landscape{display:table-row !important}td.show-for-portrait,td.hide-for-landscape,th.show-for-portrait,th.hide-for-landscape{display:table-cell !important}}.show-for-touch{display:none !important}.hide-for-touch{display:inherit !important}.touch .show-for-touch{display:inherit !important}.touch .hide-for-touch{display:none !important}table.hide-for-touch{display:table !important}.touch table.show-for-touch{display:table !important}thead.hide-for-touch{display:table-header-group !important}.touch thead.show-for-touch{display:table-header-group !important}tbody.hide-for-touch{display:table-row-group !important}.touch tbody.show-for-touch{display:table-row-group !important}tr.hide-for-touch{display:table-row !important}.touch tr.show-for-touch{display:table-row !important}td.hide-for-touch{display:table-cell !important}.touch td.show-for-touch{display:table-cell !important}th.hide-for-touch{display:table-cell !important}.touch th.show-for-touch{display:table-cell !important}@media print{.show-for-print{display:block}.hide-for-print{display:none}table.show-for-print{display:table !important}thead.show-for-print{display:table-header-group !important}tbody.show-for-print{display:table-row-group !important}tr.show-for-print{display:table-row !important}td.show-for-print{display:table-cell !important}th.show-for-print{display:table-cell !important}}a,a:link{transition:all .4s}a:visited{border-bottom:#D7D7D7}a:hover{color:#21323b}a:focus{color:#57849e}a:active{color:#0f161a}p{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;-ms-word-break:normal;word-break:normal}p a,article a{font-weight:bold;border-bottom:1px dotted}p a:hover,article a:hover{border-bottom:2px solid}p a.button,.button,.button:hover{border:0;color:#fff}p.button a{border:0;color:#fff;text-shadow:0 1px 3px rgba(0,0,0,0.5)}h1,h2,h3,h4,h5,h6{font-family:"Lato","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:narrow;padding:0}h1{font-size:2.441em;margin-top:0}h2{font-size:1.953em;margin:1.563em 0 0 0}.blog-index h2{margin-top:0}h3{font-size:1.563em;margin:1.152em 0 0 0}h4{font-size:1.25em;margin:1.152em 0 0 0}h5{font-size:1.152em;margin:1em 0 0 0}img{border-radius:3px}img.alignleft,img.left{float:left;margin:5px 15px 5px 0}img.alignright,img.right{float:right;margin:5px 0 5px 15px}img.aligncenter,img.center{display:block;margin:0 auto 10px}figure{margin:0 0 1.875rem 0}#masthead-with-background-color figure,#masthead-with-pattern figure{margin:0}figcaption,.masthead-caption{color:#575757;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:.8125rem;padding-top:.125rem}figcaption a,.masthead-caption a{border-bottom:1px dotted #BEBEBE;color:#575757}figcaption a:hover,.masthead-caption a:hover{border-bottom:2px solid #BA4A00;color:#BA4A00}.masthead-caption{padding-right:10px;text-align:right}td{vertical-align:top}pre{overflow:auto;margin-bottom:1.25rem;padding:5px;background-color:#fef9f1;border-radius:3px}pre code{padding:.125rem .3125rem .0625rem 0;border:0}code{font-size:.875rem;line-height:1.5}ul,ol{margin-left:20px;padding:0}li{margin-left:0}.no-bullet{list-style:none;margin-left:0}li>ul,li>ol{margin-bottom:0}dt:first-child{padding-top:0px}dt{font-weight:bold;padding-top:30px}article dl dt{line-height:1.3}article dl dd{line-height:1.6;margin-bottom:.75rem;margin-left:1.5rem}blockquote{font-style:italic;position:relative;border:none;margin:0 30px 30px 30px;color:#4B4B4B}blockquote p{font-style:italic;color:#575757}blockquote:before{display:block;content:"\00BB";font-size:80px;line-height:0;position:absolute;left:-25px;top:auto;color:#4B4B4B}blockquote:after{display:block;content:"\00AB";font-size:80px;line-height:0;position:absolute;right:-10px;bottom:20px;color:#4B4B4B}blockquote cite:before{content:"— "}blockquote cite a,blockquote cite a:visited{color:#575757}cite{padding-top:5px}button,.button{letter-spacing:1px}mark{background-color:#f3cab2}.subheadline{font-size:1rem;margin:0;text-transform:uppercase}.teaser{font-size:1.25rem}.big-teaser{font-style:italic;font-weight:300}.big-teaser a{font-style:italic;font-weight:400}@media only screen{.big-teaser{font-size:1.25rem}}@media only screen and (min-width: 40.063em){.big-teaser{font-size:1.8125rem}}.sans{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}.serif{font-family:"Scope+One",Georgia,Times,serif}.font-size-h1{font-size:2.441em}.font-size-h2{font-size:1.953em}.font-size-h3{font-size:1.563em}.font-size-h4{font-size:1.25em}.font-size-h5{font-size:1.152em}.font-size-p{font-size:16px}.footnotes:before{content:"";position:absolute;height:1px;width:60px;margin-top:-10px;border-bottom:1px solid #D7D7D7}.footnotes{margin-top:60px}.footnotes ol{font-size:.8em}.footnotes p{font-size:inherit;margin-bottom:0}@font-face{font-family:'iconfont';src:url("../fonts/iconfont.eot");src:url("../fonts/iconfont.eot?#iefix") format("embedded-opentype"),url("../fonts/iconfont.woff") format("woff"),url("../fonts/iconfont.ttf") format("truetype"),url("../fonts/iconfont.svg#svgFontName") format("svg")}.iconfont{font-family:iconfont}.iconfont-48{font-size:48px}[data-icon]:before{content:attr(data-icon)}[data-icon]:before,.icon-archive:before,.icon-browser:before,.icon-calendar:before,.icon-camera:before,.icon-chat:before,.icon-check:before,.icon-chevron-down:before,.icon-chevron-left:before,.icon-chevron-right:before,.icon-chevron-up:before,.icon-circle-with-cross:before,.icon-circle-with-minus:before,.icon-circle-with-plus:before,.icon-cloud:before,.icon-code:before,.icon-cog:before,.icon-dropbox:before,.icon-edit:before,.icon-export:before,.icon-eye:before,.icon-facebook:before,.icon-feather:before,.icon-github:before,.icon-globe:before,.icon-googleplus:before,.icon-heart:before,.icon-heart-outlined:before,.icon-home:before,.icon-instagram:before,.icon-lab-flask:before,.icon-leaf:before,.icon-linkedin:before,.icon-mail:before,.icon-message:before,.icon-mic:before,.icon-network:before,.icon-paper-plane:before,.icon-pinterest:before,.icon-price-tag:before,.icon-rocket:before,.icon-rss:before,.icon-soundcloud:before,.icon-star:before,.icon-star-outlined:before,.icon-thumbs-down:before,.icon-thumbs-up:before,.icon-tree:before,.icon-tumblr:before,.icon-twitter:before,.icon-upload-to-cloud:before,.icon-video:before,.icon-vimeo:before,.icon-warning:before,.icon-xing:before,.icon-youtube:before{display:inline-block;font-family:"iconfont";font-style:normal;font-weight:normal;font-variant:normal;line-height:1;text-decoration:inherit;text-rendering:optimizeLegibility;text-transform:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-smoothing:antialiased}.icon-archive:before{content:"\f100"}.icon-browser:before{content:"\f101"}.icon-calendar:before{content:"\f133"}.icon-camera:before{content:"\f102"}.icon-chat:before{content:"\f103"}.icon-check:before{content:"\f104"}.icon-chevron-down:before{content:"\f105"}.icon-chevron-left:before{content:"\f106"}.icon-chevron-right:before{content:"\f107"}.icon-chevron-up:before{content:"\f108"}.icon-circle-with-cross:before{content:"\f109"}.icon-circle-with-minus:before{content:"\f10a"}.icon-circle-with-plus:before{content:"\f10b"}.icon-cloud:before{content:"\f10c"}.icon-code:before{content:"\f10d"}.icon-cog:before{content:"\f10e"}.icon-dropbox:before{content:"\f10f"}.icon-edit:before{content:"\f110"}.icon-export:before{content:"\f111"}.icon-eye:before{content:"\f112"}.icon-facebook:before{content:"\f113"}.icon-feather:before{content:"\f114"}.icon-github:before{content:"\f115"}.icon-globe:before{content:"\f116"}.icon-googleplus:before{content:"\f136"}.icon-heart:before{content:"\f117"}.icon-heart-outlined:before{content:"\f118"}.icon-home:before{content:"\f119"}.icon-instagram:before{content:"\f11a"}.icon-lab-flask:before{content:"\f11b"}.icon-leaf:before{content:"\f11c"}.icon-linkedin:before{content:"\f11d"}.icon-mail:before{content:"\f11e"}.icon-message:before{content:"\f11f"}.icon-mic:before{content:"\f120"}.icon-network:before{content:"\f121"}.icon-paper-plane:before{content:"\f122"}.icon-pinterest:before{content:"\f123"}.icon-price-tag:before{content:"\f124"}.icon-rocket:before{content:"\f125"}.icon-rss:before{content:"\f126"}.icon-soundcloud:before{content:"\f127"}.icon-star:before{content:"\f128"}.icon-star-outlined:before{content:"\f129"}.icon-thumbs-down:before{content:"\f12a"}.icon-thumbs-up:before{content:"\f12b"}.icon-tree:before{content:"\f134"}.icon-tumblr:before{content:"\f12c"}.icon-twitter:before{content:"\f12d"}.icon-upload-to-cloud:before{content:"\f12e"}.icon-video:before{content:"\f12f"}.icon-vimeo:before{content:"\f130"}.icon-warning:before{content:"\f131"}.icon-xing:before{content:"\f135"}.icon-youtube:before{content:"\f132"}body.video,body.video #masthead-no-image-header{background:#000}body.video #masthead-no-image-header{margin-bottom:60px}body.video h1,body.video h2,body.video h3,body.video h4,body.video h5,body.video h6,body.video p,body.video a,body.video blockquote:before,body.video blockquote:after,body.video cite a{color:#fff}body.video cite a:visited{color:#fff}body.video cite{color:#fff}#navigation{-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,0.2);box-shadow:0 2px 3px 0 rgba(0,0,0,0.2)}#navigation [class^='icon-']:before,#navigation [class*=' icon-']:before{margin-right:.5rem}.no-js form#search{display:none}#masthead{background-color:#FDEBD0}#masthead-no-image-header{background-color:#FDEBD0}#masthead-with-text{text-align:center;font-size:3.375rem;font-family:"Lato","Helvetica Neue",Helvetica,Arial,sans-serif;color:#fff;text-transform:uppercase;text-shadow:0 2px 3px rgba(0,0,0,0.4)}#masthead-no-image-header{height:175px}#masthead-no-image-header #logo img{margin-top:5px;max-height:165px}#slogan{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;color:#BA4A00}.valign-center{position:relative;top:50%}.valign-center>.columns{transform:translateY(-50%);-webkit-transform:translateY(-50%);-o-transform:translateY(-50%);-ms-transform:translateY(-50%)}#masthead h1,h2,h3,h4,h5{margin:0}@media only screen and (max-width: 40em){#logo img{display:none}#masthead{height:200px}#masthead-with-pattern{padding:15px 0}#masthead-with-background-color{padding:15px 0}#masthead-with-text{height:220px;padding:30px 0;font-size:2.25rem}#masthead-no-image-header{display:none}#slogan{font-size:1.5625rem}}@media only screen and (min-width: 40.063em) and (max-width: 64em){#masthead{height:280px}#masthead-with-pattern{padding:20px 0}#masthead-with-background-color{padding:20px 0}#masthead-with-text{padding:60px 0;height:300px}#slogan{font-size:1.5625rem}}@media only screen and (min-width: 64.063em) and (max-width: 90em){#masthead{height:310px}#masthead-with-pattern{padding:30px 0}#masthead-with-background-color{padding:30px 0}#masthead-with-text{height:330px;padding:60px 0}#slogan{font-size:1.875rem}}@media only screen and (min-width: 90.063em){#masthead{height:380px}#masthead-with-pattern{padding:45px 0}#masthead-with-background-color{padding:45px 0}#masthead-with-text{padding:95px 0;height:400px}#slogan{font-size:2.1875rem}}#title-image-small{height:240px}#title-image-large{height:520px}#title-image-index-small{height:120px}#title-image-index-large{height:260px}#breadcrumb{background:#f3f3f3;border-top:1px solid #f0f0f0;border-bottom:1px solid #f0f0f0}.breadcrumbs>.current{font-weight:bold}#page-meta,#page-meta a{color:#A4A4A4}#page-meta .button{background:#A4A4A4;border:0}#page-meta .button{color:#fff}#page-meta .button:hover{background:#BA4A00}.meta-info p{font-size:.8125rem;color:#efefef}.meta-info a{text-decoration:underline;color:#efefef}.meta-info a:hover{text-decoration:none;color:#FDEBD0}#blog-index .blog-meta p{color:#A4A4A4;font-size:.875rem}#blog-index p{margin-bottom:0}#blog-index h4 a{text-decoration:none}.post-meta{font-size:.8125rem;color:#A4A4A4}#up-to-top{padding:160px 0 10px 0}#up-to-top a{font-size:24px;padding:5px;border-radius:3px}#up-to-top a:hover{background:#D7D7D7}#footer-content p,#footer-content li{font-size:.8125rem;font-weight:300}#footer{padding-top:30px;padding-bottom:20px;background:#BA4A00;color:#fdfdfd}#footer a{color:#fdfdfd}#footer h4,#footer h5{letter-spacing:1px;color:#fff;text-transform:uppercase}#subfooter{background:#BA4A00;color:#fdfdfd;padding-top:30px}#subfooter-left ul.inline-list{float:left}.credits a{color:#fdfdfd;border:0;text-transform:uppercase}.credits a:hover{color:#fff}.social-icons{margin-bottom:10px !important}.social-icons li{padding:0 0 20px 0}.social-icons a{font-size:1.4375rem;display:block;width:36px;border-radius:50%;color:#BA4A00;background:#fdfdfd;text-align:center}.social-icons a:hover{background:#BA4A00;color:#fff}.t10{margin-top:10px !important}.t15{margin-top:15px !important}.t20{margin-top:20px !important}.t30{margin-top:30px !important}.t50{margin-top:50px !important}.t60{margin-top:60px !important}.t70{margin-top:70px !important}.t80{margin-top:80px !important}.t90{margin-top:90px !important}.b15{margin-bottom:15px !important}.b20{margin-bottom:20px !important}.b30{margin-bottom:30px !important}.b60{margin-bottom:60px !important}.l15{margin-left:15px !important}.r15{margin-right:15px !important}.pl20{padding-left:20px !important}.pr5{padding-right:5px !important}.pr10{padding-right:10px !important}.pr20{padding-right:20px !important}#toc ul,#toc ul ul,#toc ul ul ul{list-style:none;margin-left:30px}#toc ul{margin-left:0;margin-top:30px}.border-dotted{border:1px dotted #A4A4A4;padding:1.25rem;border-radius:3px}.shadow-no{text-shadow:transparent 0 0 0}.shadow-black{text-shadow:rgba(0,0,0,0.498039) 0px 1px 2px}.shadow-white{text-shadow:rgba(255,255,255,0.498039) 0px 1px 2px}.alert-box{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;text-shadow:0px 1px 1px rgba(0,0,0,0.9)}.alert-box p{margin-bottom:0}.alert-box a{color:#BA4A00;border-bottom:1px dotted #BA4A00}.alert-box a:hover{border-bottom:1px solid #fff}.alert-box.terminal{background:#3E3E3E;color:#fff;border-color:#353535;font-family:"Lucida Console",Monaco,monospace}.alert-box.terminal::before{content:"$ ";color:#A1D044;float:left;margin:.25em .5em 0 0}.alert-box.text{background-color:#D7D7D7;text-shadow:0px 0px 0px rgba(0,0,0,0.9);border-color:#b9b9b9;color:#3E3E3E}button,.button{letter-spacing:1px}button.grey,.button.grey{background:#575757}button.grey:hover,button.grey:focus,.button.grey:hover,.button.grey:focus{background-color:#0B0B0B}.side-nav li.title{text-transform:uppercase}.side-nav li{border-top:1px solid #CBCBCB}.side-nav li a:not(.button){border-bottom:0;padding:0.4375rem 0rem}.side-nav li a:not(.button):hover,.side-nav li a:not(.button):focus{background:#E4E4E4}.homepage p{margin:0;padding:0;color:#575757}dl.accordion{border-top:1px solid #D7D7D7}.accordion dd{border-bottom:1px solid #D7D7D7}dd.accordion-navigation span{padding-right:12px}dd.accordion-navigation span:before{content:""}dd.accordion-navigation.active span:before{content:""}dd.accordion-navigation.active span:before{content:""}/*! Lazy Load XT v1.0.6 2014-11-19 + * http://ressio.github.io/lazy-load-xt + * (C) 2014 RESS.io + * Licensed under MIT */img.lazy{display:none}.lazy-hidden{opacity:0}.lazy-loaded{-webkit-transition:opacity 0.7s;-moz-transition:opacity 0.7s;-ms-transition:opacity 0.7s;-o-transition:opacity 0.7s;transition:opacity 0.7s;opacity:1}.highlight .c{color:#998;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k{font-weight:bold}.highlight .o{font-weight:bold}.highlight .cm{color:#998;font-style:italic}.highlight .cp{color:#999;font-weight:bold}.highlight .c1{color:#998;font-style:italic}.highlight .cs{color:#999;font-weight:bold;font-style:italic}.highlight .gd{color:#000;background-color:#fdd}.highlight .gd .x{color:#000;background-color:#faa}.highlight .ge{font-style:italic}.highlight .gr{color:#a00}.highlight .gh{color:#999}.highlight .gi{color:#000;background-color:#dfd}.highlight .gi .x{color:#000;background-color:#afa}.highlight .go{color:#888}.highlight .gp{color:#555}.highlight .gs{font-weight:bold}.highlight .gu{color:#aaa}.highlight .gt{color:#a00}.highlight .kc{font-weight:bold}.highlight .kd{font-weight:bold}.highlight .kp{font-weight:bold}.highlight .kr{font-weight:bold}.highlight .kt{color:#458;font-weight:bold}.highlight .m{color:#099}.highlight .s{color:#d14}.highlight .na{color:teal}.highlight .nb{color:#0086B3}.highlight .nc{color:#458;font-weight:bold}.highlight .no{color:teal}.highlight .ni{color:purple}.highlight .ne{color:#900;font-weight:bold}.highlight .nf{color:#900;font-weight:bold}.highlight .nn{color:#555}.highlight .nt{color:navy}.highlight .nv{color:teal}.highlight .ow{font-weight:bold}.highlight .w{color:#bbb}.highlight .mf{color:#099}.highlight .mh{color:#099}.highlight .mi{color:#099}.highlight .mo{color:#099}.highlight .sb{color:#d14}.highlight .sc{color:#d14}.highlight .sd{color:#d14}.highlight .s2{color:#d14}.highlight .se{color:#d14}.highlight .sh{color:#d14}.highlight .si{color:#d14}.highlight .sx{color:#d14}.highlight .sr{color:#009926}.highlight .s1{color:#d14}.highlight .ss{color:#990073}.highlight .bp{color:#999}.highlight .vc{color:teal}.highlight .vg{color:teal}.highlight .vi{color:teal}.highlight .il{color:#099} diff --git a/assets/fonts/academicons.eot b/assets/fonts/academicons.eot new file mode 100755 index 000000000..aeac7091e Binary files /dev/null and b/assets/fonts/academicons.eot differ diff --git a/assets/fonts/academicons.svg b/assets/fonts/academicons.svg new file mode 100755 index 000000000..2599b714b --- /dev/null +++ b/assets/fonts/academicons.svg @@ -0,0 +1,107 @@ + + + + + + +{ + "fontFamily": "Academicons", + "majorVersion": 1, + "minorVersion": 8, + "fontURL": "https://jpswalsh.github.io/academicons/", + "description": "Font generated by IcoMoon.", + "designer": "James Walsh and Katja Bercic", + "designerURL": "http://jpswalsh.com", + "license": "SIL OFL 1.1", + "licenseURL": "http://scripts.sil.org/OFL", + "version": "Version 1.8", + "fontId": "Academicons", + "psName": "Academicons", + "subFamily": "Regular", + "fullName": "Academicons" +} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/academicons.ttf b/assets/fonts/academicons.ttf new file mode 100755 index 000000000..4f42f958c Binary files /dev/null and b/assets/fonts/academicons.ttf differ diff --git a/assets/fonts/academicons.woff b/assets/fonts/academicons.woff new file mode 100755 index 000000000..11bb0c8ca Binary files /dev/null and b/assets/fonts/academicons.woff differ diff --git a/assets/fonts/fontcustom.yml b/assets/fonts/fontcustom.yml new file mode 100644 index 000000000..ccc911c23 --- /dev/null +++ b/assets/fonts/fontcustom.yml @@ -0,0 +1,96 @@ +# ============================================================================= +# Font Custom Configuration +# This file should live in the directory where you run `fontcustom compile`. +# For more info, visit . +# ============================================================================= + + +# ----------------------------------------------------------------------------- +# Project Info +# ----------------------------------------------------------------------------- + +# The font's name. Also determines the file names of generated templates. +font_name: iconfont + +# Format of CSS selectors. {{glyph}} is substituted for the glyph name. +css_selector: .icon-{{glyph}} + +# Generate fonts without asset-busting hashes. +no_hash: true + +# Encode WOFF fonts into the generated CSS. +#base64: true + +# Forces compilation, even if inputs have not changed +#force: true + +# Display (possibly useful) debugging messages. +#debug: true + +# Hide status messages. +#quiet: true + + +# ----------------------------------------------------------------------------- +# Input / Output Locations +# You can save generated fonts, CSS, and other files to different locations +# here. Font Custom can also read input vectors and templates from different +# places. +# +# NOTE: +# - Be sure to preserve the whitespace in these YAML hashes. +# - INPUT[:vectors] and OUTPUT[:fonts] are required. Everything else is +# optional. +# - Specify output locations for custom templates by including their file +# names as the key. +# ----------------------------------------------------------------------------- + +input: + vectors: svg-files-for-custom-font +# templates: my/templates + +output: + fonts: . + css: . +# preview: app/views/styleguide +# my-custom-template.yml: path/to/template/output + + +# ----------------------------------------------------------------------------- +# Templates +# A YAML array of templates and files to generate alongside fonts. Custom +# templates should be saved in the INPUT[:templates] directory and referenced +# by their base file name. +# +# For Rails and Compass templates, set `preprocessor_path` as the relative +# path from OUTPUT[:css] to OUTPUT[:fonts]. By default, these are the same +# directory. +# +# Included in Font Custom: preview, css, scss, scss-rails +# Default: css, preview +# ----------------------------------------------------------------------------- + +#templates: +#- scss-rails +#- preview +#- my-custom-template.yml + +#preprocessor_path: ../fonts/ + + +# ----------------------------------------------------------------------------- +# Font Settings (defaults shown) +# ----------------------------------------------------------------------------- + +# Size (in pica points) for which your font is designed. +font_design_size: 20 + +# The em size. Setting this will scale the entire font to the given size. +#font_em: 512 + +# The font's ascent and descent. Used to calculate the baseline. +#font_ascent: 448 +#font_descent: 64 + +# Horizontally fit glyphs to their individual vector widths. +#autowidth: false diff --git a/assets/fonts/iconfont-preview.html b/assets/fonts/iconfont-preview.html new file mode 100644 index 000000000..ecb190222 --- /dev/null +++ b/assets/fonts/iconfont-preview.html @@ -0,0 +1,1028 @@ + + + + iconfont glyphs preview + + + + + + + + + +
+
+

iconfont contains 55 glyphs:

+ Toggle Preview Characters +
+ + +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ + + +
+ + diff --git a/assets/fonts/iconfont.css b/assets/fonts/iconfont.css new file mode 100644 index 000000000..a748578f8 --- /dev/null +++ b/assets/fonts/iconfont.css @@ -0,0 +1,149 @@ +/* + Icon Font: iconfont +*/ + +@font-face { + font-family: "iconfont"; + src: url("./iconfont.eot"); + src: url("./iconfont.eot?#iefix") format("embedded-opentype"), + url("./iconfont.woff") format("woff"), + url("./iconfont.ttf") format("truetype"), + url("./iconfont.svg#iconfont") format("svg"); + font-weight: normal; + font-style: normal; +} + +@media screen and (-webkit-min-device-pixel-ratio:0) { + @font-face { + font-family: "iconfont"; + src: url("./iconfont.svg#iconfont") format("svg"); + } +} + +[data-icon]:before { content: attr(data-icon); } + +[data-icon]:before, +.icon-archive:before, +.icon-browser:before, +.icon-calendar:before, +.icon-camera:before, +.icon-chat:before, +.icon-check:before, +.icon-chevron-down:before, +.icon-chevron-left:before, +.icon-chevron-right:before, +.icon-chevron-up:before, +.icon-circle-with-cross:before, +.icon-circle-with-minus:before, +.icon-circle-with-plus:before, +.icon-cloud:before, +.icon-code:before, +.icon-cog:before, +.icon-dropbox:before, +.icon-edit:before, +.icon-export:before, +.icon-eye:before, +.icon-facebook:before, +.icon-feather:before, +.icon-github:before, +.icon-globe:before, +.icon-googleplus:before, +.icon-heart:before, +.icon-heart-outlined:before, +.icon-home:before, +.icon-instagram:before, +.icon-lab-flask:before, +.icon-leaf:before, +.icon-linkedin:before, +.icon-mail:before, +.icon-message:before, +.icon-mic:before, +.icon-network:before, +.icon-paper-plane:before, +.icon-pinterest:before, +.icon-price-tag:before, +.icon-rocket:before, +.icon-rss:before, +.icon-soundcloud:before, +.icon-star:before, +.icon-star-outlined:before, +.icon-thumbs-down:before, +.icon-thumbs-up:before, +.icon-tree:before, +.icon-tumblr:before, +.icon-twitter:before, +.icon-upload-to-cloud:before, +.icon-video:before, +.icon-vimeo:before, +.icon-warning:before, +.icon-xing:before, +.icon-youtube:before { + display: inline-block; + font-family: "iconfont"; + font-style: normal; + font-weight: normal; + font-variant: normal; + line-height: 1; + text-decoration: inherit; + text-rendering: optimizeLegibility; + text-transform: none; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + font-smoothing: antialiased; +} + +.icon-archive:before { content: "\f100"; } +.icon-browser:before { content: "\f101"; } +.icon-calendar:before { content: "\f133"; } +.icon-camera:before { content: "\f102"; } +.icon-chat:before { content: "\f103"; } +.icon-check:before { content: "\f104"; } +.icon-chevron-down:before { content: "\f105"; } +.icon-chevron-left:before { content: "\f106"; } +.icon-chevron-right:before { content: "\f107"; } +.icon-chevron-up:before { content: "\f108"; } +.icon-circle-with-cross:before { content: "\f109"; } +.icon-circle-with-minus:before { content: "\f10a"; } +.icon-circle-with-plus:before { content: "\f10b"; } +.icon-cloud:before { content: "\f10c"; } +.icon-code:before { content: "\f10d"; } +.icon-cog:before { content: "\f10e"; } +.icon-dropbox:before { content: "\f10f"; } +.icon-edit:before { content: "\f110"; } +.icon-export:before { content: "\f111"; } +.icon-eye:before { content: "\f112"; } +.icon-facebook:before { content: "\f113"; } +.icon-feather:before { content: "\f114"; } +.icon-github:before { content: "\f115"; } +.icon-globe:before { content: "\f116"; } +.icon-googleplus:before { content: "\f136"; } +.icon-heart:before { content: "\f117"; } +.icon-heart-outlined:before { content: "\f118"; } +.icon-home:before { content: "\f119"; } +.icon-instagram:before { content: "\f11a"; } +.icon-lab-flask:before { content: "\f11b"; } +.icon-leaf:before { content: "\f11c"; } +.icon-linkedin:before { content: "\f11d"; } +.icon-mail:before { content: "\f11e"; } +.icon-message:before { content: "\f11f"; } +.icon-mic:before { content: "\f120"; } +.icon-network:before { content: "\f121"; } +.icon-paper-plane:before { content: "\f122"; } +.icon-pinterest:before { content: "\f123"; } +.icon-price-tag:before { content: "\f124"; } +.icon-rocket:before { content: "\f125"; } +.icon-rss:before { content: "\f126"; } +.icon-soundcloud:before { content: "\f127"; } +.icon-star:before { content: "\f128"; } +.icon-star-outlined:before { content: "\f129"; } +.icon-thumbs-down:before { content: "\f12a"; } +.icon-thumbs-up:before { content: "\f12b"; } +.icon-tree:before { content: "\f134"; } +.icon-tumblr:before { content: "\f12c"; } +.icon-twitter:before { content: "\f12d"; } +.icon-upload-to-cloud:before { content: "\f12e"; } +.icon-video:before { content: "\f12f"; } +.icon-vimeo:before { content: "\f130"; } +.icon-warning:before { content: "\f131"; } +.icon-xing:before { content: "\f135"; } +.icon-youtube:before { content: "\f132"; } diff --git a/assets/fonts/iconfont.eot b/assets/fonts/iconfont.eot new file mode 100644 index 000000000..af95ebd3c Binary files /dev/null and b/assets/fonts/iconfont.eot differ diff --git a/assets/fonts/iconfont.svg b/assets/fonts/iconfont.svg new file mode 100644 index 000000000..b9e507c29 --- /dev/null +++ b/assets/fonts/iconfont.svg @@ -0,0 +1,273 @@ + + + + + +Created by FontForge 20120731 at Wed Jan 20 15:09:53 2016 + By Andrey Fedorov,,, +Created by Andrey Fedorov,,, with FontForge 2.0 (http://fontforge.sf.net) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/fonts/iconfont.ttf b/assets/fonts/iconfont.ttf new file mode 100644 index 000000000..2dab176b6 Binary files /dev/null and b/assets/fonts/iconfont.ttf differ diff --git a/assets/fonts/iconfont.woff b/assets/fonts/iconfont.woff new file mode 100644 index 000000000..965649eaf Binary files /dev/null and b/assets/fonts/iconfont.woff differ diff --git a/assets/fonts/svg-files-for-custom-font/archive.svg b/assets/fonts/svg-files-for-custom-font/archive.svg new file mode 100644 index 000000000..00f9e8c90 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/archive.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/browser.svg b/assets/fonts/svg-files-for-custom-font/browser.svg new file mode 100644 index 000000000..ca8c89d56 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/browser.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/calendar.svg b/assets/fonts/svg-files-for-custom-font/calendar.svg new file mode 100644 index 000000000..f654214b3 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/calendar.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/camera.svg b/assets/fonts/svg-files-for-custom-font/camera.svg new file mode 100644 index 000000000..0f11476cb --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/camera.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/chat.svg b/assets/fonts/svg-files-for-custom-font/chat.svg new file mode 100644 index 000000000..65b561246 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/chat.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/check.svg b/assets/fonts/svg-files-for-custom-font/check.svg new file mode 100644 index 000000000..08ee56d87 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/check.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/chevron-down.svg b/assets/fonts/svg-files-for-custom-font/chevron-down.svg new file mode 100644 index 000000000..7604d8905 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/chevron-down.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/chevron-left.svg b/assets/fonts/svg-files-for-custom-font/chevron-left.svg new file mode 100644 index 000000000..7fda04026 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/chevron-left.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/chevron-right.svg b/assets/fonts/svg-files-for-custom-font/chevron-right.svg new file mode 100644 index 000000000..0b2251cbb --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/chevron-right.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/chevron-up.svg b/assets/fonts/svg-files-for-custom-font/chevron-up.svg new file mode 100644 index 000000000..eb3c9c52e --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/chevron-up.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/circle-with-cross.svg b/assets/fonts/svg-files-for-custom-font/circle-with-cross.svg new file mode 100644 index 000000000..cf71b4024 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/circle-with-cross.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/circle-with-minus.svg b/assets/fonts/svg-files-for-custom-font/circle-with-minus.svg new file mode 100644 index 000000000..065344d6f --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/circle-with-minus.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/circle-with-plus.svg b/assets/fonts/svg-files-for-custom-font/circle-with-plus.svg new file mode 100644 index 000000000..f4f815c88 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/circle-with-plus.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/cloud.svg b/assets/fonts/svg-files-for-custom-font/cloud.svg new file mode 100644 index 000000000..a009fe53e --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/cloud.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/code.svg b/assets/fonts/svg-files-for-custom-font/code.svg new file mode 100644 index 000000000..33a99fd5d --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/code.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/cog.svg b/assets/fonts/svg-files-for-custom-font/cog.svg new file mode 100644 index 000000000..bc6fcfa1e --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/cog.svg @@ -0,0 +1,16 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/dropbox.svg b/assets/fonts/svg-files-for-custom-font/dropbox.svg new file mode 100644 index 000000000..61f72c2fd --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/dropbox.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/edit.svg b/assets/fonts/svg-files-for-custom-font/edit.svg new file mode 100644 index 000000000..bda9f0e37 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/edit.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/export.svg b/assets/fonts/svg-files-for-custom-font/export.svg new file mode 100644 index 000000000..ebcfc1fad --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/export.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/eye.svg b/assets/fonts/svg-files-for-custom-font/eye.svg new file mode 100644 index 000000000..a735aa941 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/eye.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/facebook.svg b/assets/fonts/svg-files-for-custom-font/facebook.svg new file mode 100644 index 000000000..dd1431874 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/facebook.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/feather.svg b/assets/fonts/svg-files-for-custom-font/feather.svg new file mode 100644 index 000000000..fcff3c19b --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/feather.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/github.svg b/assets/fonts/svg-files-for-custom-font/github.svg new file mode 100644 index 000000000..0ed94d327 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/github.svg @@ -0,0 +1,15 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/globe.svg b/assets/fonts/svg-files-for-custom-font/globe.svg new file mode 100644 index 000000000..59b1570b5 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/globe.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/heart-outlined.svg b/assets/fonts/svg-files-for-custom-font/heart-outlined.svg new file mode 100644 index 000000000..b1cec2f4f --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/heart-outlined.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/heart.svg b/assets/fonts/svg-files-for-custom-font/heart.svg new file mode 100644 index 000000000..5156b11c3 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/heart.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/home.svg b/assets/fonts/svg-files-for-custom-font/home.svg new file mode 100644 index 000000000..63e8a4e20 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/home.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/instagram.svg b/assets/fonts/svg-files-for-custom-font/instagram.svg new file mode 100644 index 000000000..9f7b527a4 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/instagram.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/lab-flask.svg b/assets/fonts/svg-files-for-custom-font/lab-flask.svg new file mode 100644 index 000000000..d40e70ed3 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/lab-flask.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/leaf.svg b/assets/fonts/svg-files-for-custom-font/leaf.svg new file mode 100644 index 000000000..27be54666 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/leaf.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/linkedin.svg b/assets/fonts/svg-files-for-custom-font/linkedin.svg new file mode 100644 index 000000000..4541e3cc9 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/linkedin.svg @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/mail.svg b/assets/fonts/svg-files-for-custom-font/mail.svg new file mode 100644 index 000000000..5988c16f5 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/mail.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/message.svg b/assets/fonts/svg-files-for-custom-font/message.svg new file mode 100644 index 000000000..cae288b56 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/message.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/mic.svg b/assets/fonts/svg-files-for-custom-font/mic.svg new file mode 100644 index 000000000..81f58e14c --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/mic.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/network.svg b/assets/fonts/svg-files-for-custom-font/network.svg new file mode 100644 index 000000000..977de033a --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/network.svg @@ -0,0 +1,24 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/paper-plane.svg b/assets/fonts/svg-files-for-custom-font/paper-plane.svg new file mode 100644 index 000000000..57919d550 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/paper-plane.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/pinterest.svg b/assets/fonts/svg-files-for-custom-font/pinterest.svg new file mode 100644 index 000000000..b5f6f6e23 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/pinterest.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/price-tag.svg b/assets/fonts/svg-files-for-custom-font/price-tag.svg new file mode 100644 index 000000000..1c7fa4f2c --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/price-tag.svg @@ -0,0 +1,16 @@ + + + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/rocket.svg b/assets/fonts/svg-files-for-custom-font/rocket.svg new file mode 100644 index 000000000..3eb7415af --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/rocket.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/rss.svg b/assets/fonts/svg-files-for-custom-font/rss.svg new file mode 100644 index 000000000..f8f6033aa --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/rss.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/soundcloud.svg b/assets/fonts/svg-files-for-custom-font/soundcloud.svg new file mode 100644 index 000000000..3b3847179 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/soundcloud.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/star-outlined.svg b/assets/fonts/svg-files-for-custom-font/star-outlined.svg new file mode 100644 index 000000000..4759c4050 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/star-outlined.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/star.svg b/assets/fonts/svg-files-for-custom-font/star.svg new file mode 100644 index 000000000..d5d321afa --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/star.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/thumbs-down.svg b/assets/fonts/svg-files-for-custom-font/thumbs-down.svg new file mode 100644 index 000000000..171e2aa9e --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/thumbs-down.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/thumbs-up.svg b/assets/fonts/svg-files-for-custom-font/thumbs-up.svg new file mode 100644 index 000000000..dee3008ea --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/thumbs-up.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/tree.svg b/assets/fonts/svg-files-for-custom-font/tree.svg new file mode 100644 index 000000000..45a25805b --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/tree.svg @@ -0,0 +1,17 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/tumblr.svg b/assets/fonts/svg-files-for-custom-font/tumblr.svg new file mode 100644 index 000000000..7bc635013 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/tumblr.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/twitter.svg b/assets/fonts/svg-files-for-custom-font/twitter.svg new file mode 100644 index 000000000..136d22963 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/twitter.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/upload-to-cloud.svg b/assets/fonts/svg-files-for-custom-font/upload-to-cloud.svg new file mode 100644 index 000000000..078684721 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/upload-to-cloud.svg @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/video.svg b/assets/fonts/svg-files-for-custom-font/video.svg new file mode 100644 index 000000000..f54ba0081 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/video.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/vimeo.svg b/assets/fonts/svg-files-for-custom-font/vimeo.svg new file mode 100644 index 000000000..81ed1c0b8 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/vimeo.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/warning.svg b/assets/fonts/svg-files-for-custom-font/warning.svg new file mode 100644 index 000000000..a571a2521 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/warning.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/xing.svg b/assets/fonts/svg-files-for-custom-font/xing.svg new file mode 100644 index 000000000..ca14ad7be --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/xing.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/youtube.svg b/assets/fonts/svg-files-for-custom-font/youtube.svg new file mode 100644 index 000000000..8dbfef6ec --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/youtube.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/img/Badge_Carpentries.png b/assets/img/Badge_Carpentries.png new file mode 100644 index 000000000..f883ece8a Binary files /dev/null and b/assets/img/Badge_Carpentries.png differ diff --git a/assets/img/HPC-Carpentry-opengraph.png b/assets/img/HPC-Carpentry-opengraph.png new file mode 100644 index 000000000..816afe8fa Binary files /dev/null and b/assets/img/HPC-Carpentry-opengraph.png differ diff --git a/assets/img/SWC_DC.png b/assets/img/SWC_DC.png new file mode 100644 index 000000000..da05fc705 Binary files /dev/null and b/assets/img/SWC_DC.png differ diff --git a/assets/img/TheCarpentries.png b/assets/img/TheCarpentries.png new file mode 100644 index 000000000..824187f2f Binary files /dev/null and b/assets/img/TheCarpentries.png differ diff --git a/assets/img/TheCarpentries.svg b/assets/img/TheCarpentries.svg new file mode 100644 index 000000000..34cceed92 --- /dev/null +++ b/assets/img/TheCarpentries.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/img/android-chrome-192x192.png b/assets/img/android-chrome-192x192.png new file mode 100644 index 000000000..4e62a39b5 Binary files /dev/null and b/assets/img/android-chrome-192x192.png differ diff --git a/assets/img/android-chrome-384x384.png b/assets/img/android-chrome-384x384.png new file mode 100644 index 000000000..4e62a39b5 Binary files /dev/null and b/assets/img/android-chrome-384x384.png differ diff --git a/assets/img/apple-touch-icon-114x114.png b/assets/img/apple-touch-icon-114x114.png new file mode 100644 index 000000000..3a3b5c817 Binary files /dev/null and b/assets/img/apple-touch-icon-114x114.png differ diff --git a/assets/img/apple-touch-icon-120x120.png b/assets/img/apple-touch-icon-120x120.png new file mode 100644 index 000000000..3a3b5c817 Binary files /dev/null and b/assets/img/apple-touch-icon-120x120.png differ diff --git a/assets/img/apple-touch-icon-144x144.png b/assets/img/apple-touch-icon-144x144.png new file mode 100644 index 000000000..3a3b5c817 Binary files /dev/null and b/assets/img/apple-touch-icon-144x144.png differ diff --git a/assets/img/apple-touch-icon-152x152.png b/assets/img/apple-touch-icon-152x152.png new file mode 100644 index 000000000..3a3b5c817 Binary files /dev/null and b/assets/img/apple-touch-icon-152x152.png differ diff --git a/assets/img/apple-touch-icon-72x72.png b/assets/img/apple-touch-icon-72x72.png new file mode 100644 index 000000000..3a3b5c817 Binary files /dev/null and b/assets/img/apple-touch-icon-72x72.png differ diff --git a/assets/img/apple-touch-icon-76x76.png b/assets/img/apple-touch-icon-76x76.png new file mode 100644 index 000000000..3a3b5c817 Binary files /dev/null and b/assets/img/apple-touch-icon-76x76.png differ diff --git a/assets/img/apple-touch-icon.png b/assets/img/apple-touch-icon.png new file mode 100644 index 000000000..4e62a39b5 Binary files /dev/null and b/assets/img/apple-touch-icon.png differ diff --git a/assets/img/browserconfig.xml b/assets/img/browserconfig.xml new file mode 100644 index 000000000..249c5c172 --- /dev/null +++ b/assets/img/browserconfig.xml @@ -0,0 +1,9 @@ + + + + + + #ffc40d + + + diff --git a/assets/img/favicon-16x16.png b/assets/img/favicon-16x16.png new file mode 100644 index 000000000..4e62a39b5 Binary files /dev/null and b/assets/img/favicon-16x16.png differ diff --git a/assets/img/favicon-32x32.png b/assets/img/favicon-32x32.png new file mode 100644 index 000000000..4e62a39b5 Binary files /dev/null and b/assets/img/favicon-32x32.png differ diff --git a/assets/img/favicon.ico b/assets/img/favicon.ico new file mode 100644 index 000000000..c64114c4a Binary files /dev/null and b/assets/img/favicon.ico differ diff --git a/assets/img/favicon.png b/assets/img/favicon.png new file mode 100644 index 000000000..4e62a39b5 Binary files /dev/null and b/assets/img/favicon.png differ diff --git a/assets/img/flags/24/ad.png b/assets/img/flags/24/ad.png new file mode 100644 index 000000000..6345f6641 Binary files /dev/null and b/assets/img/flags/24/ad.png differ diff --git a/assets/img/flags/24/ae.png b/assets/img/flags/24/ae.png new file mode 100644 index 000000000..6c2a7dbfb Binary files /dev/null and b/assets/img/flags/24/ae.png differ diff --git a/assets/img/flags/24/af.png b/assets/img/flags/24/af.png new file mode 100644 index 000000000..cd325bf34 Binary files /dev/null and b/assets/img/flags/24/af.png differ diff --git a/assets/img/flags/24/ag.png b/assets/img/flags/24/ag.png new file mode 100644 index 000000000..5068b43d1 Binary files /dev/null and b/assets/img/flags/24/ag.png differ diff --git a/assets/img/flags/24/ai.png b/assets/img/flags/24/ai.png new file mode 100644 index 000000000..a66d2f101 Binary files /dev/null and b/assets/img/flags/24/ai.png differ diff --git a/assets/img/flags/24/al.png b/assets/img/flags/24/al.png new file mode 100644 index 000000000..d5aacd9e3 Binary files /dev/null and b/assets/img/flags/24/al.png differ diff --git a/assets/img/flags/24/am.png b/assets/img/flags/24/am.png new file mode 100644 index 000000000..5864fc877 Binary files /dev/null and b/assets/img/flags/24/am.png differ diff --git a/assets/img/flags/24/an.png b/assets/img/flags/24/an.png new file mode 100644 index 000000000..febec63de Binary files /dev/null and b/assets/img/flags/24/an.png differ diff --git a/assets/img/flags/24/ao.png b/assets/img/flags/24/ao.png new file mode 100644 index 000000000..277f9405e Binary files /dev/null and b/assets/img/flags/24/ao.png differ diff --git a/assets/img/flags/24/aq.png b/assets/img/flags/24/aq.png new file mode 100644 index 000000000..16bb335f7 Binary files /dev/null and b/assets/img/flags/24/aq.png differ diff --git a/assets/img/flags/24/ar.png b/assets/img/flags/24/ar.png new file mode 100644 index 000000000..5565e71fe Binary files /dev/null and b/assets/img/flags/24/ar.png differ diff --git a/assets/img/flags/24/as.png b/assets/img/flags/24/as.png new file mode 100644 index 000000000..ccd153ed7 Binary files /dev/null and b/assets/img/flags/24/as.png differ diff --git a/assets/img/flags/24/at.png b/assets/img/flags/24/at.png new file mode 100644 index 000000000..32ec53b13 Binary files /dev/null and b/assets/img/flags/24/at.png differ diff --git a/assets/img/flags/24/au.png b/assets/img/flags/24/au.png new file mode 100644 index 000000000..b2fcce5e5 Binary files /dev/null and b/assets/img/flags/24/au.png differ diff --git a/assets/img/flags/24/aw.png b/assets/img/flags/24/aw.png new file mode 100644 index 000000000..d6eb41840 Binary files /dev/null and b/assets/img/flags/24/aw.png differ diff --git a/assets/img/flags/24/az.png b/assets/img/flags/24/az.png new file mode 100644 index 000000000..d76fab8fc Binary files /dev/null and b/assets/img/flags/24/az.png differ diff --git a/assets/img/flags/24/ba.png b/assets/img/flags/24/ba.png new file mode 100644 index 000000000..16da3c1f5 Binary files /dev/null and b/assets/img/flags/24/ba.png differ diff --git a/assets/img/flags/24/bb.png b/assets/img/flags/24/bb.png new file mode 100644 index 000000000..1fd3d827a Binary files /dev/null and b/assets/img/flags/24/bb.png differ diff --git a/assets/img/flags/24/bd.png b/assets/img/flags/24/bd.png new file mode 100644 index 000000000..accbbe386 Binary files /dev/null and b/assets/img/flags/24/bd.png differ diff --git a/assets/img/flags/24/be.png b/assets/img/flags/24/be.png new file mode 100644 index 000000000..5b5340242 Binary files /dev/null and b/assets/img/flags/24/be.png differ diff --git a/assets/img/flags/24/bf.png b/assets/img/flags/24/bf.png new file mode 100644 index 000000000..ad9906675 Binary files /dev/null and b/assets/img/flags/24/bf.png differ diff --git a/assets/img/flags/24/bg.png b/assets/img/flags/24/bg.png new file mode 100644 index 000000000..ef1131409 Binary files /dev/null and b/assets/img/flags/24/bg.png differ diff --git a/assets/img/flags/24/bh.png b/assets/img/flags/24/bh.png new file mode 100644 index 000000000..b82eb7ac1 Binary files /dev/null and b/assets/img/flags/24/bh.png differ diff --git a/assets/img/flags/24/bi.png b/assets/img/flags/24/bi.png new file mode 100644 index 000000000..5dc84b83b Binary files /dev/null and b/assets/img/flags/24/bi.png differ diff --git a/assets/img/flags/24/bj.png b/assets/img/flags/24/bj.png new file mode 100644 index 000000000..0871ec959 Binary files /dev/null and b/assets/img/flags/24/bj.png differ diff --git a/assets/img/flags/24/bm.png b/assets/img/flags/24/bm.png new file mode 100644 index 000000000..6da6c0082 Binary files /dev/null and b/assets/img/flags/24/bm.png differ diff --git a/assets/img/flags/24/bn.png b/assets/img/flags/24/bn.png new file mode 100644 index 000000000..71975557a Binary files /dev/null and b/assets/img/flags/24/bn.png differ diff --git a/assets/img/flags/24/bo.png b/assets/img/flags/24/bo.png new file mode 100644 index 000000000..8e9131043 Binary files /dev/null and b/assets/img/flags/24/bo.png differ diff --git a/assets/img/flags/24/br.png b/assets/img/flags/24/br.png new file mode 100644 index 000000000..78c57dea2 Binary files /dev/null and b/assets/img/flags/24/br.png differ diff --git a/assets/img/flags/24/bs.png b/assets/img/flags/24/bs.png new file mode 100644 index 000000000..7dfc7b31c Binary files /dev/null and b/assets/img/flags/24/bs.png differ diff --git a/assets/img/flags/24/bt.png b/assets/img/flags/24/bt.png new file mode 100644 index 000000000..652d1286a Binary files /dev/null and b/assets/img/flags/24/bt.png differ diff --git a/assets/img/flags/24/bw.png b/assets/img/flags/24/bw.png new file mode 100644 index 000000000..cd210e93b Binary files /dev/null and b/assets/img/flags/24/bw.png differ diff --git a/assets/img/flags/24/by.png b/assets/img/flags/24/by.png new file mode 100644 index 000000000..b61188078 Binary files /dev/null and b/assets/img/flags/24/by.png differ diff --git a/assets/img/flags/24/bz.png b/assets/img/flags/24/bz.png new file mode 100644 index 000000000..08726c802 Binary files /dev/null and b/assets/img/flags/24/bz.png differ diff --git a/assets/img/flags/24/ca.png b/assets/img/flags/24/ca.png new file mode 100644 index 000000000..bc3371cb9 Binary files /dev/null and b/assets/img/flags/24/ca.png differ diff --git a/assets/img/flags/24/cd.png b/assets/img/flags/24/cd.png new file mode 100644 index 000000000..97be18e69 Binary files /dev/null and b/assets/img/flags/24/cd.png differ diff --git a/assets/img/flags/24/cf.png b/assets/img/flags/24/cf.png new file mode 100644 index 000000000..6266f4046 Binary files /dev/null and b/assets/img/flags/24/cf.png differ diff --git a/assets/img/flags/24/cg.png b/assets/img/flags/24/cg.png new file mode 100644 index 000000000..1e37c7d66 Binary files /dev/null and b/assets/img/flags/24/cg.png differ diff --git a/assets/img/flags/24/ch.png b/assets/img/flags/24/ch.png new file mode 100644 index 000000000..0732b0916 Binary files /dev/null and b/assets/img/flags/24/ch.png differ diff --git a/assets/img/flags/24/ci.png b/assets/img/flags/24/ci.png new file mode 100644 index 000000000..b40bf0a8f Binary files /dev/null and b/assets/img/flags/24/ci.png differ diff --git a/assets/img/flags/24/ck.png b/assets/img/flags/24/ck.png new file mode 100644 index 000000000..e4b177313 Binary files /dev/null and b/assets/img/flags/24/ck.png differ diff --git a/assets/img/flags/24/cl.png b/assets/img/flags/24/cl.png new file mode 100644 index 000000000..4d149df14 Binary files /dev/null and b/assets/img/flags/24/cl.png differ diff --git a/assets/img/flags/24/cm.png b/assets/img/flags/24/cm.png new file mode 100644 index 000000000..3560c7bc2 Binary files /dev/null and b/assets/img/flags/24/cm.png differ diff --git a/assets/img/flags/24/cn.png b/assets/img/flags/24/cn.png new file mode 100644 index 000000000..4836b0fe3 Binary files /dev/null and b/assets/img/flags/24/cn.png differ diff --git a/assets/img/flags/24/co.png b/assets/img/flags/24/co.png new file mode 100644 index 000000000..4823ad0ac Binary files /dev/null and b/assets/img/flags/24/co.png differ diff --git a/assets/img/flags/24/cr.png b/assets/img/flags/24/cr.png new file mode 100644 index 000000000..f1a97839d Binary files /dev/null and b/assets/img/flags/24/cr.png differ diff --git a/assets/img/flags/24/cu.png b/assets/img/flags/24/cu.png new file mode 100644 index 000000000..33817395f Binary files /dev/null and b/assets/img/flags/24/cu.png differ diff --git a/assets/img/flags/24/cv.png b/assets/img/flags/24/cv.png new file mode 100644 index 000000000..66c8f07a4 Binary files /dev/null and b/assets/img/flags/24/cv.png differ diff --git a/assets/img/flags/24/cy.png b/assets/img/flags/24/cy.png new file mode 100644 index 000000000..18847ce2d Binary files /dev/null and b/assets/img/flags/24/cy.png differ diff --git a/assets/img/flags/24/cz.png b/assets/img/flags/24/cz.png new file mode 100644 index 000000000..9e2cef20a Binary files /dev/null and b/assets/img/flags/24/cz.png differ diff --git a/assets/img/flags/24/de.png b/assets/img/flags/24/de.png new file mode 100644 index 000000000..e840992d9 Binary files /dev/null and b/assets/img/flags/24/de.png differ diff --git a/assets/img/flags/24/dj.png b/assets/img/flags/24/dj.png new file mode 100644 index 000000000..3162e235e Binary files /dev/null and b/assets/img/flags/24/dj.png differ diff --git a/assets/img/flags/24/dk.png b/assets/img/flags/24/dk.png new file mode 100644 index 000000000..cab553dae Binary files /dev/null and b/assets/img/flags/24/dk.png differ diff --git a/assets/img/flags/24/dm.png b/assets/img/flags/24/dm.png new file mode 100644 index 000000000..251d5721c Binary files /dev/null and b/assets/img/flags/24/dm.png differ diff --git a/assets/img/flags/24/do.png b/assets/img/flags/24/do.png new file mode 100644 index 000000000..c1e310c9e Binary files /dev/null and b/assets/img/flags/24/do.png differ diff --git a/assets/img/flags/24/dz.png b/assets/img/flags/24/dz.png new file mode 100644 index 000000000..187aa0fca Binary files /dev/null and b/assets/img/flags/24/dz.png differ diff --git a/assets/img/flags/24/ec.png b/assets/img/flags/24/ec.png new file mode 100644 index 000000000..79ddc253c Binary files /dev/null and b/assets/img/flags/24/ec.png differ diff --git a/assets/img/flags/24/ee.png b/assets/img/flags/24/ee.png new file mode 100644 index 000000000..20bfc87c0 Binary files /dev/null and b/assets/img/flags/24/ee.png differ diff --git a/assets/img/flags/24/eg.png b/assets/img/flags/24/eg.png new file mode 100644 index 000000000..d96fd30dc Binary files /dev/null and b/assets/img/flags/24/eg.png differ diff --git a/assets/img/flags/24/eh.png b/assets/img/flags/24/eh.png new file mode 100644 index 000000000..ce9ee8303 Binary files /dev/null and b/assets/img/flags/24/eh.png differ diff --git a/assets/img/flags/24/er.png b/assets/img/flags/24/er.png new file mode 100644 index 000000000..87bc7b081 Binary files /dev/null and b/assets/img/flags/24/er.png differ diff --git a/assets/img/flags/24/es.png b/assets/img/flags/24/es.png new file mode 100644 index 000000000..2fe8dafb4 Binary files /dev/null and b/assets/img/flags/24/es.png differ diff --git a/assets/img/flags/24/et.png b/assets/img/flags/24/et.png new file mode 100644 index 000000000..e5e5c7381 Binary files /dev/null and b/assets/img/flags/24/et.png differ diff --git a/assets/img/flags/24/fi.png b/assets/img/flags/24/fi.png new file mode 100644 index 000000000..453781e44 Binary files /dev/null and b/assets/img/flags/24/fi.png differ diff --git a/assets/img/flags/24/fj.png b/assets/img/flags/24/fj.png new file mode 100644 index 000000000..51aa3f1c2 Binary files /dev/null and b/assets/img/flags/24/fj.png differ diff --git a/assets/img/flags/24/fm.png b/assets/img/flags/24/fm.png new file mode 100644 index 000000000..72824685c Binary files /dev/null and b/assets/img/flags/24/fm.png differ diff --git a/assets/img/flags/24/fo.png b/assets/img/flags/24/fo.png new file mode 100644 index 000000000..95da08324 Binary files /dev/null and b/assets/img/flags/24/fo.png differ diff --git a/assets/img/flags/24/fr.png b/assets/img/flags/24/fr.png new file mode 100644 index 000000000..fd40c4116 Binary files /dev/null and b/assets/img/flags/24/fr.png differ diff --git a/assets/img/flags/24/ga.png b/assets/img/flags/24/ga.png new file mode 100644 index 000000000..b8781c42c Binary files /dev/null and b/assets/img/flags/24/ga.png differ diff --git a/assets/img/flags/24/gb.png b/assets/img/flags/24/gb.png new file mode 100644 index 000000000..51a27cf1d Binary files /dev/null and b/assets/img/flags/24/gb.png differ diff --git a/assets/img/flags/24/gd.png b/assets/img/flags/24/gd.png new file mode 100644 index 000000000..4c4f8c0d5 Binary files /dev/null and b/assets/img/flags/24/gd.png differ diff --git a/assets/img/flags/24/ge.png b/assets/img/flags/24/ge.png new file mode 100644 index 000000000..3f5baa64f Binary files /dev/null and b/assets/img/flags/24/ge.png differ diff --git a/assets/img/flags/24/gg.png b/assets/img/flags/24/gg.png new file mode 100644 index 000000000..e3e4f5465 Binary files /dev/null and b/assets/img/flags/24/gg.png differ diff --git a/assets/img/flags/24/gh.png b/assets/img/flags/24/gh.png new file mode 100644 index 000000000..47d5cf0f9 Binary files /dev/null and b/assets/img/flags/24/gh.png differ diff --git a/assets/img/flags/24/gi.png b/assets/img/flags/24/gi.png new file mode 100644 index 000000000..0cd716f8b Binary files /dev/null and b/assets/img/flags/24/gi.png differ diff --git a/assets/img/flags/24/gl.png b/assets/img/flags/24/gl.png new file mode 100644 index 000000000..bc12e81ff Binary files /dev/null and b/assets/img/flags/24/gl.png differ diff --git a/assets/img/flags/24/gm.png b/assets/img/flags/24/gm.png new file mode 100644 index 000000000..2c9b4e18d Binary files /dev/null and b/assets/img/flags/24/gm.png differ diff --git a/assets/img/flags/24/gn.png b/assets/img/flags/24/gn.png new file mode 100644 index 000000000..37b938301 Binary files /dev/null and b/assets/img/flags/24/gn.png differ diff --git a/assets/img/flags/24/gp.png b/assets/img/flags/24/gp.png new file mode 100644 index 000000000..7ae1c22e1 Binary files /dev/null and b/assets/img/flags/24/gp.png differ diff --git a/assets/img/flags/24/gq.png b/assets/img/flags/24/gq.png new file mode 100644 index 000000000..9064e4550 Binary files /dev/null and b/assets/img/flags/24/gq.png differ diff --git a/assets/img/flags/24/gr.png b/assets/img/flags/24/gr.png new file mode 100644 index 000000000..674ef07f3 Binary files /dev/null and b/assets/img/flags/24/gr.png differ diff --git a/assets/img/flags/24/group.png b/assets/img/flags/24/group.png new file mode 100644 index 000000000..4bc302e37 Binary files /dev/null and b/assets/img/flags/24/group.png differ diff --git a/assets/img/flags/24/gt.png b/assets/img/flags/24/gt.png new file mode 100644 index 000000000..b9c564c07 Binary files /dev/null and b/assets/img/flags/24/gt.png differ diff --git a/assets/img/flags/24/gu.png b/assets/img/flags/24/gu.png new file mode 100644 index 000000000..d92fabcfe Binary files /dev/null and b/assets/img/flags/24/gu.png differ diff --git a/assets/img/flags/24/gw.png b/assets/img/flags/24/gw.png new file mode 100644 index 000000000..3f5dc708c Binary files /dev/null and b/assets/img/flags/24/gw.png differ diff --git a/assets/img/flags/24/gy.png b/assets/img/flags/24/gy.png new file mode 100644 index 000000000..25e4f4b9c Binary files /dev/null and b/assets/img/flags/24/gy.png differ diff --git a/assets/img/flags/24/hk.png b/assets/img/flags/24/hk.png new file mode 100644 index 000000000..30e902889 Binary files /dev/null and b/assets/img/flags/24/hk.png differ diff --git a/assets/img/flags/24/hn.png b/assets/img/flags/24/hn.png new file mode 100644 index 000000000..c1d7bcb39 Binary files /dev/null and b/assets/img/flags/24/hn.png differ diff --git a/assets/img/flags/24/hr.png b/assets/img/flags/24/hr.png new file mode 100644 index 000000000..5cca39ee9 Binary files /dev/null and b/assets/img/flags/24/hr.png differ diff --git a/assets/img/flags/24/ht.png b/assets/img/flags/24/ht.png new file mode 100644 index 000000000..c3fa0f70e Binary files /dev/null and b/assets/img/flags/24/ht.png differ diff --git a/assets/img/flags/24/hu.png b/assets/img/flags/24/hu.png new file mode 100644 index 000000000..5d23ba4a4 Binary files /dev/null and b/assets/img/flags/24/hu.png differ diff --git a/assets/img/flags/24/id.png b/assets/img/flags/24/id.png new file mode 100644 index 000000000..704c21aeb Binary files /dev/null and b/assets/img/flags/24/id.png differ diff --git a/assets/img/flags/24/ie.png b/assets/img/flags/24/ie.png new file mode 100644 index 000000000..505964b9f Binary files /dev/null and b/assets/img/flags/24/ie.png differ diff --git a/assets/img/flags/24/il.png b/assets/img/flags/24/il.png new file mode 100644 index 000000000..39ade9b78 Binary files /dev/null and b/assets/img/flags/24/il.png differ diff --git a/assets/img/flags/24/im.png b/assets/img/flags/24/im.png new file mode 100644 index 000000000..d3e8da787 Binary files /dev/null and b/assets/img/flags/24/im.png differ diff --git a/assets/img/flags/24/in.png b/assets/img/flags/24/in.png new file mode 100644 index 000000000..2467d4151 Binary files /dev/null and b/assets/img/flags/24/in.png differ diff --git a/assets/img/flags/24/iq.png b/assets/img/flags/24/iq.png new file mode 100644 index 000000000..a44a93b09 Binary files /dev/null and b/assets/img/flags/24/iq.png differ diff --git a/assets/img/flags/24/ir.png b/assets/img/flags/24/ir.png new file mode 100644 index 000000000..c76443bc3 Binary files /dev/null and b/assets/img/flags/24/ir.png differ diff --git a/assets/img/flags/24/is.png b/assets/img/flags/24/is.png new file mode 100644 index 000000000..40da30f7d Binary files /dev/null and b/assets/img/flags/24/is.png differ diff --git a/assets/img/flags/24/it.png b/assets/img/flags/24/it.png new file mode 100644 index 000000000..5951ae064 Binary files /dev/null and b/assets/img/flags/24/it.png differ diff --git a/assets/img/flags/24/je.png b/assets/img/flags/24/je.png new file mode 100644 index 000000000..03786eae7 Binary files /dev/null and b/assets/img/flags/24/je.png differ diff --git a/assets/img/flags/24/jm.png b/assets/img/flags/24/jm.png new file mode 100644 index 000000000..846255222 Binary files /dev/null and b/assets/img/flags/24/jm.png differ diff --git a/assets/img/flags/24/jo.png b/assets/img/flags/24/jo.png new file mode 100644 index 000000000..4a0fa27dd Binary files /dev/null and b/assets/img/flags/24/jo.png differ diff --git a/assets/img/flags/24/jp.png b/assets/img/flags/24/jp.png new file mode 100644 index 000000000..0210320f0 Binary files /dev/null and b/assets/img/flags/24/jp.png differ diff --git a/assets/img/flags/24/ke.png b/assets/img/flags/24/ke.png new file mode 100644 index 000000000..916385235 Binary files /dev/null and b/assets/img/flags/24/ke.png differ diff --git a/assets/img/flags/24/kg.png b/assets/img/flags/24/kg.png new file mode 100644 index 000000000..db8061fd9 Binary files /dev/null and b/assets/img/flags/24/kg.png differ diff --git a/assets/img/flags/24/kh.png b/assets/img/flags/24/kh.png new file mode 100644 index 000000000..5f4321d07 Binary files /dev/null and b/assets/img/flags/24/kh.png differ diff --git a/assets/img/flags/24/ki.png b/assets/img/flags/24/ki.png new file mode 100644 index 000000000..c91aa3ac1 Binary files /dev/null and b/assets/img/flags/24/ki.png differ diff --git a/assets/img/flags/24/km.png b/assets/img/flags/24/km.png new file mode 100644 index 000000000..0dc3c09d9 Binary files /dev/null and b/assets/img/flags/24/km.png differ diff --git a/assets/img/flags/24/kn.png b/assets/img/flags/24/kn.png new file mode 100644 index 000000000..9953aacfc Binary files /dev/null and b/assets/img/flags/24/kn.png differ diff --git a/assets/img/flags/24/kp.png b/assets/img/flags/24/kp.png new file mode 100644 index 000000000..4524ac691 Binary files /dev/null and b/assets/img/flags/24/kp.png differ diff --git a/assets/img/flags/24/kr.png b/assets/img/flags/24/kr.png new file mode 100644 index 000000000..321f5dc6d Binary files /dev/null and b/assets/img/flags/24/kr.png differ diff --git a/assets/img/flags/24/kw.png b/assets/img/flags/24/kw.png new file mode 100644 index 000000000..e8c7323e1 Binary files /dev/null and b/assets/img/flags/24/kw.png differ diff --git a/assets/img/flags/24/ky.png b/assets/img/flags/24/ky.png new file mode 100644 index 000000000..9c9182133 Binary files /dev/null and b/assets/img/flags/24/ky.png differ diff --git a/assets/img/flags/24/kz.png b/assets/img/flags/24/kz.png new file mode 100644 index 000000000..5a05cf273 Binary files /dev/null and b/assets/img/flags/24/kz.png differ diff --git a/assets/img/flags/24/la.png b/assets/img/flags/24/la.png new file mode 100644 index 000000000..b0ecc4d19 Binary files /dev/null and b/assets/img/flags/24/la.png differ diff --git a/assets/img/flags/24/lb.png b/assets/img/flags/24/lb.png new file mode 100644 index 000000000..000d1f750 Binary files /dev/null and b/assets/img/flags/24/lb.png differ diff --git a/assets/img/flags/24/lc.png b/assets/img/flags/24/lc.png new file mode 100644 index 000000000..52eb6d0f8 Binary files /dev/null and b/assets/img/flags/24/lc.png differ diff --git a/assets/img/flags/24/li.png b/assets/img/flags/24/li.png new file mode 100644 index 000000000..5a57cd9ce Binary files /dev/null and b/assets/img/flags/24/li.png differ diff --git a/assets/img/flags/24/lk.png b/assets/img/flags/24/lk.png new file mode 100644 index 000000000..3b4d17c1e Binary files /dev/null and b/assets/img/flags/24/lk.png differ diff --git a/assets/img/flags/24/lr.png b/assets/img/flags/24/lr.png new file mode 100644 index 000000000..302435df7 Binary files /dev/null and b/assets/img/flags/24/lr.png differ diff --git a/assets/img/flags/24/ls.png b/assets/img/flags/24/ls.png new file mode 100644 index 000000000..879dfb490 Binary files /dev/null and b/assets/img/flags/24/ls.png differ diff --git a/assets/img/flags/24/lt.png b/assets/img/flags/24/lt.png new file mode 100644 index 000000000..74ca688dd Binary files /dev/null and b/assets/img/flags/24/lt.png differ diff --git a/assets/img/flags/24/lu.png b/assets/img/flags/24/lu.png new file mode 100644 index 000000000..09cbf3179 Binary files /dev/null and b/assets/img/flags/24/lu.png differ diff --git a/assets/img/flags/24/lv.png b/assets/img/flags/24/lv.png new file mode 100644 index 000000000..d70b0f106 Binary files /dev/null and b/assets/img/flags/24/lv.png differ diff --git a/assets/img/flags/24/ly.png b/assets/img/flags/24/ly.png new file mode 100644 index 000000000..79f6aacb6 Binary files /dev/null and b/assets/img/flags/24/ly.png differ diff --git a/assets/img/flags/24/ma.png b/assets/img/flags/24/ma.png new file mode 100644 index 000000000..f5cb1990b Binary files /dev/null and b/assets/img/flags/24/ma.png differ diff --git a/assets/img/flags/24/mc.png b/assets/img/flags/24/mc.png new file mode 100644 index 000000000..704c21aeb Binary files /dev/null and b/assets/img/flags/24/mc.png differ diff --git a/assets/img/flags/24/md.png b/assets/img/flags/24/md.png new file mode 100644 index 000000000..57ca75f38 Binary files /dev/null and b/assets/img/flags/24/md.png differ diff --git a/assets/img/flags/24/me.png b/assets/img/flags/24/me.png new file mode 100644 index 000000000..435e728dc Binary files /dev/null and b/assets/img/flags/24/me.png differ diff --git a/assets/img/flags/24/mg.png b/assets/img/flags/24/mg.png new file mode 100644 index 000000000..966b068e6 Binary files /dev/null and b/assets/img/flags/24/mg.png differ diff --git a/assets/img/flags/24/mh.png b/assets/img/flags/24/mh.png new file mode 100644 index 000000000..3c0a3c9a3 Binary files /dev/null and b/assets/img/flags/24/mh.png differ diff --git a/assets/img/flags/24/mk.png b/assets/img/flags/24/mk.png new file mode 100644 index 000000000..4832f1dc6 Binary files /dev/null and b/assets/img/flags/24/mk.png differ diff --git a/assets/img/flags/24/ml.png b/assets/img/flags/24/ml.png new file mode 100644 index 000000000..27119373e Binary files /dev/null and b/assets/img/flags/24/ml.png differ diff --git a/assets/img/flags/24/mm.png b/assets/img/flags/24/mm.png new file mode 100644 index 000000000..9f56ef633 Binary files /dev/null and b/assets/img/flags/24/mm.png differ diff --git a/assets/img/flags/24/mn.png b/assets/img/flags/24/mn.png new file mode 100644 index 000000000..58b3240ef Binary files /dev/null and b/assets/img/flags/24/mn.png differ diff --git a/assets/img/flags/24/mo.png b/assets/img/flags/24/mo.png new file mode 100644 index 000000000..6248cdbd2 Binary files /dev/null and b/assets/img/flags/24/mo.png differ diff --git a/assets/img/flags/24/mq.png b/assets/img/flags/24/mq.png new file mode 100644 index 000000000..a6e45c409 Binary files /dev/null and b/assets/img/flags/24/mq.png differ diff --git a/assets/img/flags/24/mr.png b/assets/img/flags/24/mr.png new file mode 100644 index 000000000..47805d2dd Binary files /dev/null and b/assets/img/flags/24/mr.png differ diff --git a/assets/img/flags/24/ms.png b/assets/img/flags/24/ms.png new file mode 100644 index 000000000..5058884ab Binary files /dev/null and b/assets/img/flags/24/ms.png differ diff --git a/assets/img/flags/24/mt.png b/assets/img/flags/24/mt.png new file mode 100644 index 000000000..7982877f2 Binary files /dev/null and b/assets/img/flags/24/mt.png differ diff --git a/assets/img/flags/24/mu.png b/assets/img/flags/24/mu.png new file mode 100644 index 000000000..ee1f263c6 Binary files /dev/null and b/assets/img/flags/24/mu.png differ diff --git a/assets/img/flags/24/mv.png b/assets/img/flags/24/mv.png new file mode 100644 index 000000000..ee817d4a6 Binary files /dev/null and b/assets/img/flags/24/mv.png differ diff --git a/assets/img/flags/24/mw.png b/assets/img/flags/24/mw.png new file mode 100644 index 000000000..6b7e3344a Binary files /dev/null and b/assets/img/flags/24/mw.png differ diff --git a/assets/img/flags/24/mx.png b/assets/img/flags/24/mx.png new file mode 100644 index 000000000..9776632cd Binary files /dev/null and b/assets/img/flags/24/mx.png differ diff --git a/assets/img/flags/24/my.png b/assets/img/flags/24/my.png new file mode 100644 index 000000000..b303c9ae3 Binary files /dev/null and b/assets/img/flags/24/my.png differ diff --git a/assets/img/flags/24/mz.png b/assets/img/flags/24/mz.png new file mode 100644 index 000000000..b239a1c42 Binary files /dev/null and b/assets/img/flags/24/mz.png differ diff --git a/assets/img/flags/24/na.png b/assets/img/flags/24/na.png new file mode 100644 index 000000000..1fe156fde Binary files /dev/null and b/assets/img/flags/24/na.png differ diff --git a/assets/img/flags/24/nc.png b/assets/img/flags/24/nc.png new file mode 100644 index 000000000..86f95a185 Binary files /dev/null and b/assets/img/flags/24/nc.png differ diff --git a/assets/img/flags/24/ne.png b/assets/img/flags/24/ne.png new file mode 100644 index 000000000..2de314933 Binary files /dev/null and b/assets/img/flags/24/ne.png differ diff --git a/assets/img/flags/24/ng.png b/assets/img/flags/24/ng.png new file mode 100644 index 000000000..3cd82fcfa Binary files /dev/null and b/assets/img/flags/24/ng.png differ diff --git a/assets/img/flags/24/ni.png b/assets/img/flags/24/ni.png new file mode 100644 index 000000000..a5b4892c6 Binary files /dev/null and b/assets/img/flags/24/ni.png differ diff --git a/assets/img/flags/24/nl.png b/assets/img/flags/24/nl.png new file mode 100644 index 000000000..362c9f06c Binary files /dev/null and b/assets/img/flags/24/nl.png differ diff --git a/assets/img/flags/24/no.png b/assets/img/flags/24/no.png new file mode 100644 index 000000000..60939dc74 Binary files /dev/null and b/assets/img/flags/24/no.png differ diff --git a/assets/img/flags/24/np.png b/assets/img/flags/24/np.png new file mode 100644 index 000000000..f59084d34 Binary files /dev/null and b/assets/img/flags/24/np.png differ diff --git a/assets/img/flags/24/nr.png b/assets/img/flags/24/nr.png new file mode 100644 index 000000000..2531ee5c8 Binary files /dev/null and b/assets/img/flags/24/nr.png differ diff --git a/assets/img/flags/24/nz.png b/assets/img/flags/24/nz.png new file mode 100644 index 000000000..8530e0cf4 Binary files /dev/null and b/assets/img/flags/24/nz.png differ diff --git a/assets/img/flags/24/om.png b/assets/img/flags/24/om.png new file mode 100644 index 000000000..de999aab0 Binary files /dev/null and b/assets/img/flags/24/om.png differ diff --git a/assets/img/flags/24/pa.png b/assets/img/flags/24/pa.png new file mode 100644 index 000000000..987336b6f Binary files /dev/null and b/assets/img/flags/24/pa.png differ diff --git a/assets/img/flags/24/pe.png b/assets/img/flags/24/pe.png new file mode 100644 index 000000000..0c1951f77 Binary files /dev/null and b/assets/img/flags/24/pe.png differ diff --git a/assets/img/flags/24/pf.png b/assets/img/flags/24/pf.png new file mode 100644 index 000000000..ac589d633 Binary files /dev/null and b/assets/img/flags/24/pf.png differ diff --git a/assets/img/flags/24/pg.png b/assets/img/flags/24/pg.png new file mode 100644 index 000000000..f612008a9 Binary files /dev/null and b/assets/img/flags/24/pg.png differ diff --git a/assets/img/flags/24/ph.png b/assets/img/flags/24/ph.png new file mode 100644 index 000000000..96979ebf6 Binary files /dev/null and b/assets/img/flags/24/ph.png differ diff --git a/assets/img/flags/24/pk.png b/assets/img/flags/24/pk.png new file mode 100644 index 000000000..887dce54c Binary files /dev/null and b/assets/img/flags/24/pk.png differ diff --git a/assets/img/flags/24/pl.png b/assets/img/flags/24/pl.png new file mode 100644 index 000000000..cfa3f0206 Binary files /dev/null and b/assets/img/flags/24/pl.png differ diff --git a/assets/img/flags/24/pr.png b/assets/img/flags/24/pr.png new file mode 100644 index 000000000..98f18c886 Binary files /dev/null and b/assets/img/flags/24/pr.png differ diff --git a/assets/img/flags/24/ps.png b/assets/img/flags/24/ps.png new file mode 100644 index 000000000..4691919fd Binary files /dev/null and b/assets/img/flags/24/ps.png differ diff --git a/assets/img/flags/24/pt.png b/assets/img/flags/24/pt.png new file mode 100644 index 000000000..5a94de545 Binary files /dev/null and b/assets/img/flags/24/pt.png differ diff --git a/assets/img/flags/24/pw.png b/assets/img/flags/24/pw.png new file mode 100644 index 000000000..4fcda7163 Binary files /dev/null and b/assets/img/flags/24/pw.png differ diff --git a/assets/img/flags/24/py.png b/assets/img/flags/24/py.png new file mode 100644 index 000000000..e81e74629 Binary files /dev/null and b/assets/img/flags/24/py.png differ diff --git a/assets/img/flags/24/qa.png b/assets/img/flags/24/qa.png new file mode 100644 index 000000000..49a1e54fd Binary files /dev/null and b/assets/img/flags/24/qa.png differ diff --git a/assets/img/flags/24/re.png b/assets/img/flags/24/re.png new file mode 100644 index 000000000..5c8749de8 Binary files /dev/null and b/assets/img/flags/24/re.png differ diff --git a/assets/img/flags/24/ro.png b/assets/img/flags/24/ro.png new file mode 100644 index 000000000..cbffc98a6 Binary files /dev/null and b/assets/img/flags/24/ro.png differ diff --git a/assets/img/flags/24/rs.png b/assets/img/flags/24/rs.png new file mode 100644 index 000000000..6e1086c1d Binary files /dev/null and b/assets/img/flags/24/rs.png differ diff --git a/assets/img/flags/24/ru.png b/assets/img/flags/24/ru.png new file mode 100644 index 000000000..ca1a08755 Binary files /dev/null and b/assets/img/flags/24/ru.png differ diff --git a/assets/img/flags/24/rw.png b/assets/img/flags/24/rw.png new file mode 100644 index 000000000..22d96eee1 Binary files /dev/null and b/assets/img/flags/24/rw.png differ diff --git a/assets/img/flags/24/sa.png b/assets/img/flags/24/sa.png new file mode 100644 index 000000000..032bb1478 Binary files /dev/null and b/assets/img/flags/24/sa.png differ diff --git a/assets/img/flags/24/sb.png b/assets/img/flags/24/sb.png new file mode 100644 index 000000000..244a5702a Binary files /dev/null and b/assets/img/flags/24/sb.png differ diff --git a/assets/img/flags/24/sc.png b/assets/img/flags/24/sc.png new file mode 100644 index 000000000..dbface8d2 Binary files /dev/null and b/assets/img/flags/24/sc.png differ diff --git a/assets/img/flags/24/sd.png b/assets/img/flags/24/sd.png new file mode 100644 index 000000000..d9867d970 Binary files /dev/null and b/assets/img/flags/24/sd.png differ diff --git a/assets/img/flags/24/se.png b/assets/img/flags/24/se.png new file mode 100644 index 000000000..975a2e8c0 Binary files /dev/null and b/assets/img/flags/24/se.png differ diff --git a/assets/img/flags/24/sg.png b/assets/img/flags/24/sg.png new file mode 100644 index 000000000..3329013a0 Binary files /dev/null and b/assets/img/flags/24/sg.png differ diff --git a/assets/img/flags/24/si.png b/assets/img/flags/24/si.png new file mode 100644 index 000000000..9c588f289 Binary files /dev/null and b/assets/img/flags/24/si.png differ diff --git a/assets/img/flags/24/sk.png b/assets/img/flags/24/sk.png new file mode 100644 index 000000000..291e60527 Binary files /dev/null and b/assets/img/flags/24/sk.png differ diff --git a/assets/img/flags/24/sl.png b/assets/img/flags/24/sl.png new file mode 100644 index 000000000..d0a6a7b67 Binary files /dev/null and b/assets/img/flags/24/sl.png differ diff --git a/assets/img/flags/24/sm.png b/assets/img/flags/24/sm.png new file mode 100644 index 000000000..b93ac3dd2 Binary files /dev/null and b/assets/img/flags/24/sm.png differ diff --git a/assets/img/flags/24/sn.png b/assets/img/flags/24/sn.png new file mode 100644 index 000000000..b713c4df3 Binary files /dev/null and b/assets/img/flags/24/sn.png differ diff --git a/assets/img/flags/24/so.png b/assets/img/flags/24/so.png new file mode 100644 index 000000000..4bbb46646 Binary files /dev/null and b/assets/img/flags/24/so.png differ diff --git a/assets/img/flags/24/sr.png b/assets/img/flags/24/sr.png new file mode 100644 index 000000000..5f18df099 Binary files /dev/null and b/assets/img/flags/24/sr.png differ diff --git a/assets/img/flags/24/st.png b/assets/img/flags/24/st.png new file mode 100644 index 000000000..c6bac56ac Binary files /dev/null and b/assets/img/flags/24/st.png differ diff --git a/assets/img/flags/24/sv.png b/assets/img/flags/24/sv.png new file mode 100644 index 000000000..e03b7bf41 Binary files /dev/null and b/assets/img/flags/24/sv.png differ diff --git a/assets/img/flags/24/sy.png b/assets/img/flags/24/sy.png new file mode 100644 index 000000000..2f270817f Binary files /dev/null and b/assets/img/flags/24/sy.png differ diff --git a/assets/img/flags/24/sz.png b/assets/img/flags/24/sz.png new file mode 100644 index 000000000..ca3a13953 Binary files /dev/null and b/assets/img/flags/24/sz.png differ diff --git a/assets/img/flags/24/tc.png b/assets/img/flags/24/tc.png new file mode 100644 index 000000000..efe267dc3 Binary files /dev/null and b/assets/img/flags/24/tc.png differ diff --git a/assets/img/flags/24/td.png b/assets/img/flags/24/td.png new file mode 100644 index 000000000..b4904f9a6 Binary files /dev/null and b/assets/img/flags/24/td.png differ diff --git a/assets/img/flags/24/tg.png b/assets/img/flags/24/tg.png new file mode 100644 index 000000000..98e7c3821 Binary files /dev/null and b/assets/img/flags/24/tg.png differ diff --git a/assets/img/flags/24/th.png b/assets/img/flags/24/th.png new file mode 100644 index 000000000..f28262828 Binary files /dev/null and b/assets/img/flags/24/th.png differ diff --git a/assets/img/flags/24/tj.png b/assets/img/flags/24/tj.png new file mode 100644 index 000000000..dde2aef83 Binary files /dev/null and b/assets/img/flags/24/tj.png differ diff --git a/assets/img/flags/24/tl.png b/assets/img/flags/24/tl.png new file mode 100644 index 000000000..d8c0469d4 Binary files /dev/null and b/assets/img/flags/24/tl.png differ diff --git a/assets/img/flags/24/tm.png b/assets/img/flags/24/tm.png new file mode 100644 index 000000000..7f07f1fd5 Binary files /dev/null and b/assets/img/flags/24/tm.png differ diff --git a/assets/img/flags/24/tn.png b/assets/img/flags/24/tn.png new file mode 100644 index 000000000..4936cdf4c Binary files /dev/null and b/assets/img/flags/24/tn.png differ diff --git a/assets/img/flags/24/to.png b/assets/img/flags/24/to.png new file mode 100644 index 000000000..7ac1ab428 Binary files /dev/null and b/assets/img/flags/24/to.png differ diff --git a/assets/img/flags/24/tr.png b/assets/img/flags/24/tr.png new file mode 100644 index 000000000..da41737d5 Binary files /dev/null and b/assets/img/flags/24/tr.png differ diff --git a/assets/img/flags/24/tt.png b/assets/img/flags/24/tt.png new file mode 100644 index 000000000..a30ccb440 Binary files /dev/null and b/assets/img/flags/24/tt.png differ diff --git a/assets/img/flags/24/tv.png b/assets/img/flags/24/tv.png new file mode 100644 index 000000000..5b1360849 Binary files /dev/null and b/assets/img/flags/24/tv.png differ diff --git a/assets/img/flags/24/tw.png b/assets/img/flags/24/tw.png new file mode 100644 index 000000000..faa796c05 Binary files /dev/null and b/assets/img/flags/24/tw.png differ diff --git a/assets/img/flags/24/tz.png b/assets/img/flags/24/tz.png new file mode 100644 index 000000000..3fb8b23d8 Binary files /dev/null and b/assets/img/flags/24/tz.png differ diff --git a/assets/img/flags/24/ua.png b/assets/img/flags/24/ua.png new file mode 100644 index 000000000..f6a492aae Binary files /dev/null and b/assets/img/flags/24/ua.png differ diff --git a/assets/img/flags/24/ug.png b/assets/img/flags/24/ug.png new file mode 100644 index 000000000..f2e1ae727 Binary files /dev/null and b/assets/img/flags/24/ug.png differ diff --git a/assets/img/flags/24/us.png b/assets/img/flags/24/us.png new file mode 100644 index 000000000..f9337dc5d Binary files /dev/null and b/assets/img/flags/24/us.png differ diff --git a/assets/img/flags/24/uy.png b/assets/img/flags/24/uy.png new file mode 100644 index 000000000..a8faab23c Binary files /dev/null and b/assets/img/flags/24/uy.png differ diff --git a/assets/img/flags/24/uz.png b/assets/img/flags/24/uz.png new file mode 100644 index 000000000..b4af75022 Binary files /dev/null and b/assets/img/flags/24/uz.png differ diff --git a/assets/img/flags/24/va.png b/assets/img/flags/24/va.png new file mode 100644 index 000000000..67e74ca79 Binary files /dev/null and b/assets/img/flags/24/va.png differ diff --git a/assets/img/flags/24/vc.png b/assets/img/flags/24/vc.png new file mode 100644 index 000000000..cb96a6725 Binary files /dev/null and b/assets/img/flags/24/vc.png differ diff --git a/assets/img/flags/24/ve.png b/assets/img/flags/24/ve.png new file mode 100644 index 000000000..9e0547a84 Binary files /dev/null and b/assets/img/flags/24/ve.png differ diff --git a/assets/img/flags/24/vg.png b/assets/img/flags/24/vg.png new file mode 100644 index 000000000..c77696db3 Binary files /dev/null and b/assets/img/flags/24/vg.png differ diff --git a/assets/img/flags/24/vi.png b/assets/img/flags/24/vi.png new file mode 100644 index 000000000..afbef9458 Binary files /dev/null and b/assets/img/flags/24/vi.png differ diff --git a/assets/img/flags/24/vn.png b/assets/img/flags/24/vn.png new file mode 100644 index 000000000..1090f2bc8 Binary files /dev/null and b/assets/img/flags/24/vn.png differ diff --git a/assets/img/flags/24/vu.png b/assets/img/flags/24/vu.png new file mode 100644 index 000000000..cfbe75a97 Binary files /dev/null and b/assets/img/flags/24/vu.png differ diff --git a/assets/img/flags/24/w3.png b/assets/img/flags/24/w3.png new file mode 100644 index 000000000..fdabdb662 Binary files /dev/null and b/assets/img/flags/24/w3.png differ diff --git a/assets/img/flags/24/ws.png b/assets/img/flags/24/ws.png new file mode 100644 index 000000000..a71a58549 Binary files /dev/null and b/assets/img/flags/24/ws.png differ diff --git a/assets/img/flags/24/ye.png b/assets/img/flags/24/ye.png new file mode 100644 index 000000000..4a86685e0 Binary files /dev/null and b/assets/img/flags/24/ye.png differ diff --git a/assets/img/flags/24/za.png b/assets/img/flags/24/za.png new file mode 100644 index 000000000..10ee332a1 Binary files /dev/null and b/assets/img/flags/24/za.png differ diff --git a/assets/img/flags/24/zm.png b/assets/img/flags/24/zm.png new file mode 100644 index 000000000..a93f81b76 Binary files /dev/null and b/assets/img/flags/24/zm.png differ diff --git a/assets/img/flags/24/zw.png b/assets/img/flags/24/zw.png new file mode 100644 index 000000000..8bbd802ed Binary files /dev/null and b/assets/img/flags/24/zw.png differ diff --git a/assets/img/hpc-carpentry-large.png b/assets/img/hpc-carpentry-large.png new file mode 100644 index 000000000..427d108a4 Binary files /dev/null and b/assets/img/hpc-carpentry-large.png differ diff --git a/assets/img/hpc-carpentry-vertical.png b/assets/img/hpc-carpentry-vertical.png new file mode 100644 index 000000000..e20c68778 Binary files /dev/null and b/assets/img/hpc-carpentry-vertical.png differ diff --git a/assets/img/hpc-carpentry.png b/assets/img/hpc-carpentry.png new file mode 100644 index 000000000..816afe8fa Binary files /dev/null and b/assets/img/hpc-carpentry.png differ diff --git a/assets/img/hpc-carpentry.svg b/assets/img/hpc-carpentry.svg new file mode 100644 index 000000000..1edd041e9 --- /dev/null +++ b/assets/img/hpc-carpentry.svg @@ -0,0 +1,372 @@ + + + +image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/img/logo.png b/assets/img/logo.png new file mode 100644 index 000000000..998a3c937 Binary files /dev/null and b/assets/img/logo.png differ diff --git a/assets/img/logos/cp-unknown.svg b/assets/img/logos/cp-unknown.svg new file mode 100644 index 000000000..29d622e24 --- /dev/null +++ b/assets/img/logos/cp-unknown.svg @@ -0,0 +1,82 @@ + + + + + + image/svg+xml + + + + + + + + + + + + ? + diff --git a/assets/img/logos/cp.svg b/assets/img/logos/cp.svg new file mode 100644 index 000000000..da70d40ee --- /dev/null +++ b/assets/img/logos/cp.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/assets/img/logos/dc.png b/assets/img/logos/dc.png new file mode 100644 index 000000000..b21ac3f78 Binary files /dev/null and b/assets/img/logos/dc.png differ diff --git a/assets/img/logos/dc.svg b/assets/img/logos/dc.svg new file mode 100644 index 000000000..7359de290 --- /dev/null +++ b/assets/img/logos/dc.svg @@ -0,0 +1,61 @@ + + + + + + + + image/svg+xml + + + + + + + + diff --git a/assets/img/logos/hpc.svg b/assets/img/logos/hpc.svg new file mode 100644 index 000000000..379d9e2cb --- /dev/null +++ b/assets/img/logos/hpc.svg @@ -0,0 +1,319 @@ + + + +image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/img/logos/lc.png b/assets/img/logos/lc.png new file mode 100644 index 000000000..eae2c9060 Binary files /dev/null and b/assets/img/logos/lc.png differ diff --git a/assets/img/logos/lc.svg b/assets/img/logos/lc.svg new file mode 100644 index 000000000..5e0bdd6a0 --- /dev/null +++ b/assets/img/logos/lc.svg @@ -0,0 +1,61 @@ + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/assets/img/logos/swc.png b/assets/img/logos/swc.png new file mode 100644 index 000000000..a647ac6df Binary files /dev/null and b/assets/img/logos/swc.png differ diff --git a/assets/img/logos/swc.svg b/assets/img/logos/swc.svg new file mode 100644 index 000000000..7d9e21ba9 --- /dev/null +++ b/assets/img/logos/swc.svg @@ -0,0 +1,66 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/assets/img/mstile-150x150.png b/assets/img/mstile-150x150.png new file mode 100644 index 000000000..4e62a39b5 Binary files /dev/null and b/assets/img/mstile-150x150.png differ diff --git a/assets/img/safari-pinned-tab.svg b/assets/img/safari-pinned-tab.svg new file mode 100644 index 000000000..4ca923197 --- /dev/null +++ b/assets/img/safari-pinned-tab.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + diff --git a/assets/img/site.webmanifest b/assets/img/site.webmanifest new file mode 100644 index 000000000..92a52e2e5 --- /dev/null +++ b/assets/img/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "The Carpentries", + "short_name": "The Carpentries", + "icons": [ + { + "src": "/assets/img/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/assets/img/android-chrome-384x384.png", + "sizes": "384x384", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} diff --git a/assets/js/javascript.js b/assets/js/javascript.js new file mode 100755 index 000000000..9146e3536 --- /dev/null +++ b/assets/js/javascript.js @@ -0,0 +1,3349 @@ +/*! + * jQuery JavaScript Library v2.1.1 + * http://jquery.com/ + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * + * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2014-05-01T17:11Z + */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){function c(a){var b=a.length,c=_.type(a);return"function"===c||_.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}function d(a,b,c){if(_.isFunction(b))return _.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return _.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(hb.test(b))return _.filter(b,a,c);b=_.filter(b,a)}return _.grep(a,function(a){return U.call(b,a)>=0!==c})}function e(a,b){for(;(a=a[b])&&1!==a.nodeType;);return a}function f(a){var b=ob[a]={};return _.each(a.match(nb)||[],function(a,c){b[c]=!0}),b}function g(){Z.removeEventListener("DOMContentLoaded",g,!1),a.removeEventListener("load",g,!1),_.ready()}function h(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=_.expando+Math.random()}function i(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(ub,"-$1").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:tb.test(c)?_.parseJSON(c):c}catch(e){}sb.set(a,b,c)}else c=void 0;return c}function j(){return!0}function k(){return!1}function l(){try{return Z.activeElement}catch(a){}}function m(a,b){return _.nodeName(a,"table")&&_.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function n(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function o(a){var b=Kb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function p(a,b){for(var c=0,d=a.length;d>c;c++)rb.set(a[c],"globalEval",!b||rb.get(b[c],"globalEval"))}function q(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(rb.hasData(a)&&(f=rb.access(a),g=rb.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)_.event.add(b,e,j[e][c])}sb.hasData(a)&&(h=sb.access(a),i=_.extend({},h),sb.set(b,i))}}function r(a,b){var c=a.getElementsByTagName?a.getElementsByTagName(b||"*"):a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&_.nodeName(a,b)?_.merge([a],c):c}function s(a,b){var c=b.nodeName.toLowerCase();"input"===c&&yb.test(a.type)?b.checked=a.checked:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}function t(b,c){var d,e=_(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:_.css(e[0],"display");return e.detach(),f}function u(a){var b=Z,c=Ob[a];return c||(c=t(a,b),"none"!==c&&c||(Nb=(Nb||_("'; + if (typeof($f) == 'function') { // froogaloop available + var player = $f(container.childNodes[0]); + + player.addEvent('ready', function() { + + player.playVideo = function() { + player.api( 'play' ); + } + player.stopVideo = function() { + player.api( 'unload' ); + } + player.pauseVideo = function() { + player.api( 'pause' ); + } + player.seekTo = function( seconds ) { + player.api( 'seekTo', seconds ); + } + player.setVolume = function( volume ) { + player.api( 'setVolume', volume ); + } + player.setMuted = function( muted ) { + if( muted ) { + player.lastVolume = player.api( 'getVolume' ); + player.api( 'setVolume', 0 ); + } else { + player.api( 'setVolume', player.lastVolume ); + delete player.lastVolume; + } + } + + function createEvent(player, pluginMediaElement, eventName, e) { + var event = { + type: eventName, + target: pluginMediaElement + }; + if (eventName == 'timeupdate') { + pluginMediaElement.currentTime = event.currentTime = e.seconds; + pluginMediaElement.duration = event.duration = e.duration; + } + pluginMediaElement.dispatchEvent(event); + } + + player.addEvent('play', function() { + createEvent(player, pluginMediaElement, 'play'); + createEvent(player, pluginMediaElement, 'playing'); + }); + + player.addEvent('pause', function() { + createEvent(player, pluginMediaElement, 'pause'); + }); + + player.addEvent('finish', function() { + createEvent(player, pluginMediaElement, 'ended'); + }); + + player.addEvent('playProgress', function(e) { + createEvent(player, pluginMediaElement, 'timeupdate', e); + }); + + pluginMediaElement.pluginElement = container; + pluginMediaElement.pluginApi = player; + + // init mejs + mejs.MediaPluginBridge.initPlugin(pluginid); + }); + } + else { + console.warn("You need to include froogaloop for vimeo to work"); + } + break; + } + // hide original element + htmlMediaElement.style.display = 'none'; + // prevent browser from autoplaying when using a plugin + htmlMediaElement.removeAttribute('autoplay'); + + // FYI: options.success will be fired by the MediaPluginBridge + + return pluginMediaElement; + }, + + updateNative: function(playback, options, autoplay, preload) { + + var htmlMediaElement = playback.htmlMediaElement, + m; + + + // add methods to video object to bring it into parity with Flash Object + for (m in mejs.HtmlMediaElement) { + htmlMediaElement[m] = mejs.HtmlMediaElement[m]; + } + + /* + Chrome now supports preload="none" + if (mejs.MediaFeatures.isChrome) { + + // special case to enforce preload attribute (Chrome doesn't respect this) + if (preload === 'none' && !autoplay) { + + // forces the browser to stop loading (note: fails in IE9) + htmlMediaElement.src = ''; + htmlMediaElement.load(); + htmlMediaElement.canceledPreload = true; + + htmlMediaElement.addEventListener('play',function() { + if (htmlMediaElement.canceledPreload) { + htmlMediaElement.src = playback.url; + htmlMediaElement.load(); + htmlMediaElement.play(); + htmlMediaElement.canceledPreload = false; + } + }, false); + // for some reason Chrome forgets how to autoplay sometimes. + } else if (autoplay) { + htmlMediaElement.load(); + htmlMediaElement.play(); + } + } + */ + + // fire success code + options.success(htmlMediaElement, htmlMediaElement); + + return htmlMediaElement; + } +}; + +/* + - test on IE (object vs. embed) + - determine when to use iframe (Firefox, Safari, Mobile) vs. Flash (Chrome, IE) + - fullscreen? +*/ + +// YouTube Flash and Iframe API +mejs.YouTubeApi = { + isIframeStarted: false, + isIframeLoaded: false, + loadIframeApi: function() { + if (!this.isIframeStarted) { + var tag = document.createElement('script'); + tag.src = "//www.youtube.com/player_api"; + var firstScriptTag = document.getElementsByTagName('script')[0]; + firstScriptTag.parentNode.insertBefore(tag, firstScriptTag); + this.isIframeStarted = true; + } + }, + iframeQueue: [], + enqueueIframe: function(yt) { + + if (this.isLoaded) { + this.createIframe(yt); + } else { + this.loadIframeApi(); + this.iframeQueue.push(yt); + } + }, + createIframe: function(settings) { + + var + pluginMediaElement = settings.pluginMediaElement, + player = new YT.Player(settings.containerId, { + height: settings.height, + width: settings.width, + videoId: settings.videoId, + playerVars: {controls:0}, + events: { + 'onReady': function() { + + // hook up iframe object to MEjs + settings.pluginMediaElement.pluginApi = player; + + // init mejs + mejs.MediaPluginBridge.initPlugin(settings.pluginId); + + // create timer + setInterval(function() { + mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'timeupdate'); + }, 250); + }, + 'onStateChange': function(e) { + + mejs.YouTubeApi.handleStateChange(e.data, player, pluginMediaElement); + + } + } + }); + }, + + createEvent: function (player, pluginMediaElement, eventName) { + var event = { + type: eventName, + target: pluginMediaElement + }; + + if (player && player.getDuration) { + + // time + pluginMediaElement.currentTime = event.currentTime = player.getCurrentTime(); + pluginMediaElement.duration = event.duration = player.getDuration(); + + // state + event.paused = pluginMediaElement.paused; + event.ended = pluginMediaElement.ended; + + // sound + event.muted = player.isMuted(); + event.volume = player.getVolume() / 100; + + // progress + event.bytesTotal = player.getVideoBytesTotal(); + event.bufferedBytes = player.getVideoBytesLoaded(); + + // fake the W3C buffered TimeRange + var bufferedTime = event.bufferedBytes / event.bytesTotal * event.duration; + + event.target.buffered = event.buffered = { + start: function(index) { + return 0; + }, + end: function (index) { + return bufferedTime; + }, + length: 1 + }; + + } + + // send event up the chain + pluginMediaElement.dispatchEvent(event); + }, + + iFrameReady: function() { + + this.isLoaded = true; + this.isIframeLoaded = true; + + while (this.iframeQueue.length > 0) { + var settings = this.iframeQueue.pop(); + this.createIframe(settings); + } + }, + + // FLASH! + flashPlayers: {}, + createFlash: function(settings) { + + this.flashPlayers[settings.pluginId] = settings; + + /* + settings.container.innerHTML = + '' + + '' + + '' + + ''; + */ + + var specialIEContainer, + youtubeUrl = '//www.youtube.com/apiplayer?enablejsapi=1&playerapiid=' + settings.pluginId + '&version=3&autoplay=0&controls=0&modestbranding=1&loop=0'; + + if (mejs.MediaFeatures.isIE) { + + specialIEContainer = document.createElement('div'); + settings.container.appendChild(specialIEContainer); + specialIEContainer.outerHTML = '' + + '' + + '' + + '' + + '' + +''; + } else { + settings.container.innerHTML = + '' + + '' + + '' + + ''; + } + + }, + + flashReady: function(id) { + var + settings = this.flashPlayers[id], + player = document.getElementById(id), + pluginMediaElement = settings.pluginMediaElement; + + // hook up and return to MediaELementPlayer.success + pluginMediaElement.pluginApi = + pluginMediaElement.pluginElement = player; + mejs.MediaPluginBridge.initPlugin(id); + + // load the youtube video + player.cueVideoById(settings.videoId); + + var callbackName = settings.containerId + '_callback'; + + window[callbackName] = function(e) { + mejs.YouTubeApi.handleStateChange(e, player, pluginMediaElement); + } + + player.addEventListener('onStateChange', callbackName); + + setInterval(function() { + mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'timeupdate'); + }, 250); + + mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'canplay'); + }, + + handleStateChange: function(youTubeState, player, pluginMediaElement) { + switch (youTubeState) { + case -1: // not started + pluginMediaElement.paused = true; + pluginMediaElement.ended = true; + mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'loadedmetadata'); + //createYouTubeEvent(player, pluginMediaElement, 'loadeddata'); + break; + case 0: + pluginMediaElement.paused = false; + pluginMediaElement.ended = true; + mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'ended'); + break; + case 1: + pluginMediaElement.paused = false; + pluginMediaElement.ended = false; + mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'play'); + mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'playing'); + break; + case 2: + pluginMediaElement.paused = true; + pluginMediaElement.ended = false; + mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'pause'); + break; + case 3: // buffering + mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'progress'); + break; + case 5: + // cued? + break; + + } + + } +} +// IFRAME +window.onYouTubePlayerAPIReady = function() { + mejs.YouTubeApi.iFrameReady(); +}; +// FLASH +window.onYouTubePlayerReady = function(id) { + mejs.YouTubeApi.flashReady(id); +}; + +window.mejs = mejs; +window.MediaElement = mejs.MediaElement; + +/* + * Adds Internationalization and localization to mediaelement. + * + * This file does not contain translations, you have to add them manually. + * The schema is always the same: me-i18n-locale-[IETF-language-tag].js + * + * Examples are provided both for german and chinese translation. + * + * + * What is the concept beyond i18n? + * http://en.wikipedia.org/wiki/Internationalization_and_localization + * + * What langcode should i use? + * http://en.wikipedia.org/wiki/IETF_language_tag + * https://tools.ietf.org/html/rfc5646 + * + * + * License? + * + * The i18n file uses methods from the Drupal project (drupal.js): + * - i18n.methods.t() (modified) + * - i18n.methods.checkPlain() (full copy) + * + * The Drupal project is (like mediaelementjs) licensed under GPLv2. + * - http://drupal.org/licensing/faq/#q1 + * - https://github.com/johndyer/mediaelement + * - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html + * + * + * @author + * Tim Latz (latz.tim@gmail.com) + * + * + * @params + * - context - document, iframe .. + * - exports - CommonJS, window .. + * + */ +;(function(context, exports, undefined) { + "use strict"; + + var i18n = { + "locale": { + // Ensure previous values aren't overwritten. + "language" : (exports.i18n && exports.i18n.locale.language) || '', + "strings" : (exports.i18n && exports.i18n.locale.strings) || {} + }, + "ietf_lang_regex" : /^(x\-)?[a-z]{2,}(\-\w{2,})?(\-\w{2,})?$/, + "methods" : {} + }; +// start i18n + + + /** + * Get language, fallback to browser's language if empty + * + * IETF: RFC 5646, https://tools.ietf.org/html/rfc5646 + * Examples: en, zh-CN, cmn-Hans-CN, sr-Latn-RS, es-419, x-private + */ + i18n.getLanguage = function () { + var language = i18n.locale.language || window.navigator.userLanguage || window.navigator.language; + return i18n.ietf_lang_regex.exec(language) ? language : null; + + //(WAS: convert to iso 639-1 (2-letters, lower case)) + //return language.substr(0, 2).toLowerCase(); + }; + + // i18n fixes for compatibility with WordPress + if ( typeof mejsL10n != 'undefined' ) { + i18n.locale.language = mejsL10n.language; + } + + + + /** + * Encode special characters in a plain-text string for display as HTML. + */ + i18n.methods.checkPlain = function (str) { + var character, regex, + replace = { + '&': '&', + '"': '"', + '<': '<', + '>': '>' + }; + str = String(str); + for (character in replace) { + if (replace.hasOwnProperty(character)) { + regex = new RegExp(character, 'g'); + str = str.replace(regex, replace[character]); + } + } + return str; + }; + + /** + * Translate strings to the page language or a given language. + * + * + * @param str + * A string containing the English string to translate. + * + * @param options + * - 'context' (defaults to the default context): The context the source string + * belongs to. + * + * @return + * The translated string, escaped via i18n.methods.checkPlain() + */ + i18n.methods.t = function (str, options) { + + // Fetch the localized version of the string. + if (i18n.locale.strings && i18n.locale.strings[options.context] && i18n.locale.strings[options.context][str]) { + str = i18n.locale.strings[options.context][str]; + } + + return i18n.methods.checkPlain(str); + }; + + + /** + * Wrapper for i18n.methods.t() + * + * @see i18n.methods.t() + * @throws InvalidArgumentException + */ + i18n.t = function(str, options) { + + if (typeof str === 'string' && str.length > 0) { + + // check every time due language can change for + // different reasons (translation, lang switcher ..) + var language = i18n.getLanguage(); + + options = options || { + "context" : language + }; + + return i18n.methods.t(str, options); + } + else { + throw { + "name" : 'InvalidArgumentException', + "message" : 'First argument is either not a string or empty.' + }; + } + }; + +// end i18n + exports.i18n = i18n; +}(document, mejs)); + +// i18n fixes for compatibility with WordPress +;(function(exports, undefined) { + + "use strict"; + + if ( typeof mejsL10n != 'undefined' ) { + exports[mejsL10n.language] = mejsL10n.strings; + } + +}(mejs.i18n.locale.strings)); + +/*! + * + * MediaElementPlayer + * http://mediaelementjs.com/ + * + * Creates a controller bar for HTML5