diff --git a/.github/workflows/sub_weeklyBuild.yml b/.github/workflows/sub_weeklyBuild.yml new file mode 100644 index 0000000000..4f15c0c980 --- /dev/null +++ b/.github/workflows/sub_weeklyBuild.yml @@ -0,0 +1,143 @@ +name: Weekly Build +on: + schedule: + - cron: "42 7 * * 2" + +permissions: + contents: write + +jobs: + tag_build: + runs-on: ubuntu-latest + outputs: + build_tag: ${{ steps.tag_build.outputs.build_tag }} + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 2 + submodules: 'recursive' + + - name: Tag Build + id: tag_build + shell: bash -l {0} + run: | + export BUILD_TAG=weekly-$(date "+%Y.%m.%d") + git tag ${BUILD_TAG} + git push origin tag ${BUILD_TAG} -f + echo "BUILD_TAG=${BUILD_TAG}" >> "$GITHUB_ENV" + echo "build_tag=${BUILD_TAG}" >> "$GITHUB_OUTPUT" + + - name: Upload Source + env: + GH_TOKEN: ${{ github.token }} + run: | + python3 package/rattler-build/scripts/make_version_file.py ../freecad_version.txt + git config user.email '41898282+github-actions[bot]@users.noreply.github.com' + git config user.name 'github-actions[bot]' + git apply package/rattler-build/scripts/disable_git_info.patch + git commit -a -m "Disable git info write to Version.h" + git archive HEAD -o freecad_source_${BUILD_TAG}.tar + git submodule foreach --recursive \ + "git archive HEAD --prefix=\$path/ -o \$sha1.tar && \ + tar -A -f \$toplevel/freecad_source_${BUILD_TAG}.tar \$sha1.tar && \ + rm \$sha1.tar" + gzip freecad_source_${BUILD_TAG}.tar + sha256sum freecad_source_${BUILD_TAG}.tar.gz > freecad_source_${BUILD_TAG}.tar.gz-SHA256.txt + gh release create ${BUILD_TAG} --title "Weekly Build ${BUILD_TAG}" --notes "Weekly Build ${BUILD_TAG}" --prerelease || true + gh release upload --clobber ${BUILD_TAG} "freecad_source_${BUILD_TAG}.tar.gz" "freecad_source_${BUILD_TAG}.tar.gz-SHA256.txt" + + build: + needs: tag_build + strategy: + matrix: + include: + - { target: linux-64, os: ubuntu-22.04 } + - { target: linux-arm64, os: ubuntu-22.04-arm } + - { target: osx-64, os: macos-13 } + - { target: osx-arm64, os: macos-latest } + - { target: win-64, os: windows-latest } + fail-fast: false + + runs-on: ${{ matrix.os }} + environment: weekly-build + steps: + - name: Set Platform Environment Variables + shell: bash -l {0} + env: + BUILD_TAG: ${{ needs.tag_build.outputs.build_tag }} + OPERATING_SYSTEM: ${{ runner.os }} + run: | + echo "BUILD_TAG=${BUILD_TAG}" >> "$GITHUB_ENV" + if [[ $OPERATING_SYSTEM == 'Windows' ]]; then + echo 'PIXI_CACHE_DIR=D:\rattler' >> "$GITHUB_ENV" + echo 'RATTLER_CACHE_DIR=D:\rattler' >> "$GITHUB_ENV" + fi + + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + fetch-tags: true + submodules: 'recursive' + + - uses: prefix-dev/setup-pixi@v0.8.3 + with: + pixi-version: v0.42.1 + cache: false + + - name: Install the Apple certificate and provisioning profile + if: runner.os == 'macOS' + env: + APP_SPECIFIC_PASSWORD: ${{ secrets.APP_SPECIFIC_PASSWORD }} + APPLE_ID: ${{ secrets.APPLE_ID }} + BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }} + BUILD_PROVISION_PROFILE_BASE64: ${{ secrets.BUILD_PROVISION_PROFILE_BASE64 }} + DEVELOPER_TEAM_ID: ${{ secrets.DEVELOPER_TEAM_ID }} + KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }} + P12_PASSWORD: ${{ secrets.P12_PASSWORD }} + run: | + # create variables + CERTIFICATE_PATH=$RUNNER_TEMP/build_certificate.p12 + PP_PATH=$RUNNER_TEMP/FreeCAD_Weekly.provisionprofile + KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db + + export KEYCHAIN_PASSWORD=$(openssl rand -base64 8) + + # import certificate and provisioning profile from secrets + echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode -o $CERTIFICATE_PATH + echo -n "$BUILD_PROVISION_PROFILE_BASE64" | base64 --decode -o $PP_PATH + + # create temporary keychain + security create-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH + security set-keychain-settings -lut 21600 $KEYCHAIN_PATH + security unlock-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH + + # import certificate to keychain + security import $CERTIFICATE_PATH -P "$P12_PASSWORD" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH + security set-key-partition-list -S apple-tool:,apple: -k "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH + security list-keychain -d user -s $KEYCHAIN_PATH + + # apply provisioning profile + mkdir -p ~/Library/Provisioning\ Profiles + cp $PP_PATH ~/Library/Provisioning\ Profiles + + xcrun notarytool store-credentials "FreeCAD Weekly" --keychain "$KEYCHAIN_PATH" --apple-id "${APPLE_ID}" --password "${APP_SPECIFIC_PASSWORD}" --team-id "${DEVELOPER_TEAM_ID}" + + - name: Build and Release Packages + shell: bash + env: + GH_TOKEN: ${{ github.token }} + SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }} + SIGN_RELEASE: "true" + TARGET_PLATFORM: ${{ matrix.target }} + UPLOAD_RELEASE: "true" + run: | + cd package/rattler-build + pixi install + pixi run -e package create_bundle + + ## Needed if running on a self-hosted runner: + # - name: Clean up keychain and provisioning profile + # if: ${{ always() }} + # run: | + # security delete-keychain $RUNNER_TEMP/app-signing.keychain-db + # rm ~/Library/MobileDevice/Provisioning\ Profiles/build_pp.mobileprovision diff --git a/CMakePresets.json b/CMakePresets.json index 02c14d4ddc..5223c37672 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -63,6 +63,10 @@ "type": "BOOL", "value": "ON" }, + "BUILD_REVERSEENGINEERING": { + "type": "BOOL", + "value": "OFF" + }, "ENABLE_DEVELOPER_TESTS": { "type": "BOOL", "value": "ON" @@ -91,6 +95,10 @@ "type": "BOOL", "value": "ON" }, + "FREECAD_QT_VERSION": { + "type": "STRING", + "value": "6" + }, "OCCT_CMAKE_FALLBACK": { "type": "BOOL", "value": "ON" @@ -111,22 +119,10 @@ }, "cmakeExecutable": "${sourceDir}/conda/cmake.sh", "cacheVariables": { - "CMAKE_INCLUDE_PATH": { - "type": "FILEPATH", - "value": "$env{CONDA_PREFIX}/include" - }, - "CMAKE_INSTALL_LIBDIR": { - "type": "FILEPATH", - "value": "$env{CONDA_PREFIX}/lib" - }, "CMAKE_INSTALL_PREFIX": { "type": "FILEPATH", "value": "$env{CONDA_PREFIX}" }, - "CMAKE_LIBRARY_PATH":{ - "type": "FILEPATH", - "value": "$env{CONDA_PREFIX}/lib" - }, "CMAKE_PREFIX_PATH": { "type": "FILEPATH", "value": "$env{CONDA_PREFIX}" @@ -151,22 +147,10 @@ "type": "STRING", "value": "/opt/homebrew;/usr/local/homebrew" }, - "CMAKE_INCLUDE_PATH": { - "type": "FILEPATH", - "value": "$env{CONDA_PREFIX}/include" - }, - "CMAKE_INSTALL_LIBDIR": { - "type": "FILEPATH", - "value": "$env{CONDA_PREFIX}/lib" - }, "CMAKE_INSTALL_PREFIX": { "type": "FILEPATH", "value": "$env{CONDA_PREFIX}" }, - "CMAKE_LIBRARY_PATH":{ - "type": "FILEPATH", - "value": "$env{CONDA_PREFIX}/lib" - }, "CMAKE_PREFIX_PATH": { "type": "FILEPATH", "value": "$env{CONDA_PREFIX}" @@ -187,22 +171,10 @@ }, "cmakeExecutable": "${sourceDir}/conda/cmake.cmd", "cacheVariables": { - "CMAKE_INCLUDE_PATH": { - "type": "FILEPATH", - "value": "$env{CONDA_PREFIX}/Library/include" - }, - "CMAKE_INSTALL_LIBDIR": { - "type": "FILEPATH", - "value": "$env{CONDA_PREFIX}/Library/lib" - }, "CMAKE_INSTALL_PREFIX": { "type": "FILEPATH", "value": "$env{CONDA_PREFIX}/Library" }, - "CMAKE_LIBRARY_PATH":{ - "type": "FILEPATH", - "value": "$env{CONDA_PREFIX}/Library/lib" - }, "CMAKE_PREFIX_PATH": { "type": "FILEPATH", "value": "$env{CONDA_PREFIX}/Library" diff --git a/package/rattler-build/build.bat b/package/rattler-build/build.bat new file mode 100644 index 0000000000..a97b6591cf --- /dev/null +++ b/package/rattler-build/build.bat @@ -0,0 +1,37 @@ +@echo on + +@REM :: free up extra disk space, compare +@REM :: https://github.com/conda-forge/conda-smithy/issues/1949 +@REM rmdir /s /q C:\hostedtoolcache\windows + +@REM set "CFLAGS= " +@REM set "CXXFLAGS= -DBOOST_PROGRAM_OPTIONS_DYN_LINK=1" +@REM set "LDFLAGS_SHARED= ucrt.lib" + +set "CMAKE_GENERATOR=" +set "CMAKE_GENERATOR_PLATFORM=" + +cmake ^ + --preset conda-windows-release ^ + -D CMAKE_INCLUDE_PATH:FILEPATH="%LIBRARY_PREFIX%/include" ^ + -D CMAKE_INSTALL_LIBDIR:FILEPATH="%LIBRARY_PREFIX%/lib" ^ + -D CMAKE_INSTALL_PREFIX:FILEPATH="%LIBRARY_PREFIX%" ^ + -D CMAKE_LIBRARY_PATH:FILEPATH="%LIBRARY_PREFIX%/lib" ^ + -D CMAKE_PREFIX_PATH:FILEPATH="%LIBRARY_PREFIX%" ^ + -D FREECAD_USE_OCC_VARIANT="Official Version" ^ + -D INSTALL_TO_SITEPACKAGES:BOOL=ON ^ + -D OCC_INCLUDE_DIR:FILEPATH="%LIBRARY_PREFIX%/include" ^ + -D OCCT_CMAKE_FALLBACK:BOOL=OFF ^ + -D Python_EXECUTABLE:FILEPATH="%PYTHON%" ^ + -D Python3_EXECUTABLE:FILEPATH="%PYTHON%" ^ + -B build ^ + -S . ^ + ${CMAKE_PLATFORM_FLAGS[@]} +if %ERRORLEVEL% neq 0 exit 1 + +ninja -C build install +if %ERRORLEVEL% neq 0 exit 1 + +rmdir /s /q "%LIBRARY_PREFIX%\doc" +ren %LIBRARY_PREFIX%\bin\FreeCAD.exe freecad.exe +ren %LIBRARY_PREFIX%\bin\FreeCADCmd.exe freecadcmd.exe diff --git a/package/rattler-build/build.sh b/package/rattler-build/build.sh new file mode 100644 index 0000000000..ebce9d2692 --- /dev/null +++ b/package/rattler-build/build.sh @@ -0,0 +1,47 @@ +if [[ ${HOST} =~ .*linux.* ]]; then + CMAKE_PRESET=conda-linux-release +fi + +if [[ ${HOST} =~ .*darwin.* ]]; then + CMAKE_PRESET=conda-macos-release + + # add hacks for osx here! + echo "adding hacks for osx" + + # install space-mouse + /usr/bin/curl -o /tmp/3dFW.dmg -L 'https://download.3dconnexion.com/drivers/mac/10-7-0_B564CC6A-6E81-42b0-82EC-418EA823B81A/3DxWareMac_v10-7-0_r3411.dmg' + hdiutil attach -readonly /tmp/3dFW.dmg + sudo installer -package /Volumes/3Dconnexion\ Software/Install\ 3Dconnexion\ software.pkg -target / + diskutil eject /Volumes/3Dconnexion\ Software + CMAKE_PLATFORM_FLAGS+=(-DFREECAD_USE_3DCONNEXION:BOOL=ON) + CMAKE_PLATFORM_FLAGS+=(-D3DCONNEXIONCLIENT_FRAMEWORK:FILEPATH="/Library/Frameworks/3DconnexionClient.framework") + + CXXFLAGS="${CXXFLAGS} -D_LIBCPP_DISABLE_AVAILABILITY" +fi + +unset CMAKE_GENERATOR +unset CMAKE_GENERATOR_PLATFORM + +cmake \ + --preset ${CMAKE_PRESET} \ + -D CMAKE_IGNORE_PREFIX_PATH="/opt/homebrew;/usr/local/homebrew" \ + -D CMAKE_INCLUDE_PATH:FILEPATH="$PREFIX/include" \ + -D CMAKE_INSTALL_LIBDIR:FILEPATH="$PREFIX/lib" \ + -D CMAKE_INSTALL_PREFIX:FILEPATH="$PREFIX" \ + -D CMAKE_LIBRARY_PATH:FILEPATH="$PREFIX/lib" \ + -D CMAKE_PREFIX_PATH:FILEPATH="$PREFIX" \ + -D FREECAD_USE_OCC_VARIANT="Official Version" \ + -D INSTALL_TO_SITEPACKAGES:BOOL=ON \ + -D OCC_INCLUDE_DIR:FILEPATH="$PREFIX/include" \ + -D OCCT_CMAKE_FALLBACK:BOOL=OFF \ + -D Python_EXECUTABLE:FILEPATH="$PYTHON" \ + -D Python3_EXECUTABLE:FILEPATH="$PYTHON" \ + -B build \ + -S . \ + ${CMAKE_PLATFORM_FLAGS[@]} + +cmake --build build +cmake --install build + +mv ${PREFIX}/bin/FreeCAD ${PREFIX}/bin/freecad || true +mv ${PREFIX}/bin/FreeCADCmd ${PREFIX}/bin/freecadcmd || true diff --git a/package/rattler-build/conda_build_config.yaml b/package/rattler-build/conda_build_config.yaml new file mode 100644 index 0000000000..688c3a50e4 --- /dev/null +++ b/package/rattler-build/conda_build_config.yaml @@ -0,0 +1,7 @@ +c_compiler: # [win] + - vs2022 # [win] +cxx_compiler: # [win] + - vs2022 # [win] + +MACOSX_SDK_VERSION: # [osx] + - '11.0' # [osx] diff --git a/package/rattler-build/linux/AppDir/AppRun b/package/rattler-build/linux/AppDir/AppRun new file mode 100755 index 0000000000..2389a99b76 --- /dev/null +++ b/package/rattler-build/linux/AppDir/AppRun @@ -0,0 +1,31 @@ +#!/bin/bash +HERE="$(dirname "$(readlink -f "${0}")")" +export PREFIX=${HERE}/usr +# export LD_LIBRARY_PATH=${HERE}/usr/lib${LD_LIBRARY_PATH:+':'}$LD_LIBRARY_PATH +export PYTHONHOME=${HERE}/usr +export PATH_TO_FREECAD_LIBDIR=${HERE}/usr/lib +# export QT_QPA_PLATFORM_PLUGIN_PATH=${HERE}/usr/plugins +# export QT_XKB_CONFIG_ROOT=${HERE}/usr/lib +export FONTCONFIG_FILE=/etc/fonts/fonts.conf +export FONTCONFIG_PATH=/etc/fonts + +# Show packages info if DEBUG env variable is set +if [ "$DEBUG" = 1 ]; then + cat ${HERE}/packages.txt +fi + +# SSL +# https://forum.freecad.org/viewtopic.php?f=4&t=34873&start=20#p327416 +export SSL_CERT_FILE=$PREFIX/ssl/cacert.pem +# https://github.com/FreeCAD/FreeCAD-AppImage/pull/20 +export GIT_SSL_CAINFO=$HERE/usr/ssl/cacert.pem + +# Support for launching other applications (from /usr/bin) +# https://github.com/FreeCAD/FreeCAD-AppImage/issues/30 +if [ ! -z "$1" ] && [ -e "$HERE/usr/bin/$1" ] ; then + MAIN="$HERE/usr/bin/$1" ; shift +else + MAIN="$HERE/usr/bin/freecad" +fi + +"${MAIN}" "$@" diff --git a/package/rattler-build/linux/create_bundle.sh b/package/rattler-build/linux/create_bundle.sh new file mode 100755 index 0000000000..5482924cad --- /dev/null +++ b/package/rattler-build/linux/create_bundle.sh @@ -0,0 +1,85 @@ +#!/bin/bash + +set -e +set -x + +conda_env="AppDir/usr" + +mkdir -p ${conda_env} + +cp -a ../.pixi/envs/default/* ${conda_env} + +export PATH="${PWD}/${conda_env}/bin:${PATH}" +export CONDA_PREFIX="${PWD}/${conda_env}" + +echo -e "\nDelete unnecessary stuff" +rm -rf ${conda_env}/include +find ${conda_env} -name \*.a -delete + +mv ${conda_env}/bin ${conda_env}/bin_tmp +mkdir ${conda_env}/bin +cp ${conda_env}/bin_tmp/freecad ${conda_env}/bin/ +cp ${conda_env}/bin_tmp/freecadcmd ${conda_env}/bin +cp ${conda_env}/bin_tmp/ccx ${conda_env}/bin/ +cp ${conda_env}/bin_tmp/python ${conda_env}/bin/ +cp ${conda_env}/bin_tmp/pip ${conda_env}/bin/ +cp ${conda_env}/bin_tmp/pyside6-rcc ${conda_env}/bin/ +cp ${conda_env}/bin_tmp/gmsh ${conda_env}/bin/ +cp ${conda_env}/bin_tmp/dot ${conda_env}/bin/ +cp ${conda_env}/bin_tmp/unflatten ${conda_env}/bin/ +rm -rf ${conda_env}/bin_tmp + +sed -i '1s|.*|#!/usr/bin/env python|' ${conda_env}/bin/pip + +echo -e "\nCopying Icon and Desktop file" +cp ${conda_env}/share/applications/org.freecad.FreeCAD.desktop AppDir/ +sed -i 's/Exec=FreeCAD/Exec=AppRun/g' AppDir/org.freecad.FreeCAD.desktop +cp ${conda_env}/share/icons/hicolor/scalable/apps/org.freecad.FreeCAD.svg AppDir/ + +# Remove __pycache__ folders and .pyc files +find . -path "*/__pycache__/*" -delete +find . -name "*.pyc" -type f -delete + +# reduce size +rm -rf ${conda_env}/conda-meta/ +rm -rf ${conda_env}/doc/global/ +rm -rf ${conda_env}/share/gtk-doc/ +rm -rf ${conda_env}/lib/cmake/ + +find . -name "*.h" -type f -delete +find . -name "*.cmake" -type f -delete + +build_tag=$(git describe --tags) +python_version=$(python -c 'import platform; print("py" + platform.python_version_tuple()[0] + platform.python_version_tuple()[1])') +version_name="FreeCAD_${build_tag}-Linux-$(uname -m)-${python_version}" + +echo -e "\################" +echo -e "version_name: ${version_name}" +echo -e "################" + +pixi list -e default > AppDir/packages.txt +sed -i "1s/.*/\nLIST OF PACKAGES:/" AppDir/packages.txt + +export tag="weekly-builds" # should retreive from git tag + +curl -LO https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-$(uname -m).AppImage +chmod a+x appimagetool-$(uname -m).AppImage + +echo -e "\nCreate the appimage" +# export GPG_TTY=$(tty) +chmod a+x ./AppDir/AppRun +./appimagetool-$(uname -m).AppImage \ + --comp zstd \ + --mksquashfs-opt -Xcompression-level \ + --mksquashfs-opt 22 \ + -u "gh-releases-zsync|FreeCAD|FreeCAD-Bundle|$tag|FreeCAD*$(uname -m)*.AppImage.zsync" \ + AppDir ${version_name}.AppImage + # -s --sign-key ${GPG_KEY_ID} \ + +echo -e "\nCreate hash" +sha256sum ${version_name}.AppImage > ${version_name}.AppImage-SHA256.txt + +if [ "${UPLOAD_RELEASE}" == "true" ]; then + gh release create ${BUILD_TAG} --title "Weekly Build ${BUILD_TAG}" --notes "Weekly Build ${BUILD_TAG}" --prerelease || true + gh release upload --clobber ${BUILD_TAG} "${version_name}.AppImage" "${version_name}.AppImage-SHA256.txt" +fi diff --git a/package/rattler-build/osx/Info.plist.template b/package/rattler-build/osx/Info.plist.template new file mode 100644 index 0000000000..45ba0c2274 --- /dev/null +++ b/package/rattler-build/osx/Info.plist.template @@ -0,0 +1,90 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + FreeCAD + CFBundleGetInfoString + + CFBundleIconFile + freecad.icns + CFBundleIdentifier + org.freecad.FreeCAD + CFBundleInfoDictionaryVersion + 6.0 + CFBundleLongVersionString + + CFBundleName + APPLICATION_MENU_NAME + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + FREECAD_VERSION + CSResourcesFileMapped + + NSHumanReadableCopyright + + NSPrincipalClass + NSApplication + NSHighResolutionCapable + True + NSRequiresAquaSystemAppearance + False + CFBundleDocumentTypes + + + CFBundleTypeRole + Editor + CFBundleTypeExtensions + + FCStd + FCMat + FCParam + + CFBundleTypeIconFile + freecad-doc.icns + LSIsAppleDefaultForType + + + + CFBundleTypeRole + Editor + CFBundleTypeExtensions + + FCMacro + FCScript + + CFBundleTypeIconFile + freecad-script.icns + LSIsAppleDefaultForType + + + + UTExportedTypeDeclarations + + + UTTypeConformsTo + + public.data + + UTTypeDescription + FreeCAD Document + UTTypeIdentifier + org.freecad.fcstd + UTTypeTagSpecification + + public.filename-extension + + FCStd + + + + + + diff --git a/package/rattler-build/osx/create_bundle.sh b/package/rattler-build/osx/create_bundle.sh new file mode 100644 index 0000000000..c48c92f20c --- /dev/null +++ b/package/rattler-build/osx/create_bundle.sh @@ -0,0 +1,85 @@ +#!/bin/bash + +set -e +set -x + +conda_env="FreeCAD.app/Contents/Resources" + +mkdir -p ${conda_env} + +cp -a ../.pixi/envs/default/* ${conda_env} + +export PATH="${PWD}/${conda_env}/bin:${PATH}" +export CONDA_PREFIX="${PWD}/${conda_env}" + +# delete unnecessary stuff +rm -rf ${conda_env}/include +find ${conda_env} -name \*.a -delete + +mv ${conda_env}/bin ${conda_env}/bin_tmp +mkdir ${conda_env}/bin +cp ${conda_env}/bin_tmp/freecad ${conda_env}/bin/ +cp ${conda_env}/bin_tmp/freecadcmd ${conda_env}/bin +cp ${conda_env}/bin_tmp/ccx ${conda_env}/bin/ +cp ${conda_env}/bin_tmp/python ${conda_env}/bin/ +cp ${conda_env}/bin_tmp/pip ${conda_env}/bin/ +cp ${conda_env}/bin_tmp/pyside6-rcc ${conda_env}/bin/ +cp ${conda_env}/bin_tmp/gmsh ${conda_env}/bin/ +cp ${conda_env}/bin_tmp/dot ${conda_env}/bin/ +cp ${conda_env}/bin_tmp/unflatten ${conda_env}/bin/ +rm -rf ${conda_env}/bin_tmp + +sed -i '1s|.*|#!/usr/bin/env python|' ${conda_env}/bin/pip + +# copy resources +cp resources/* ${conda_env} + +# Remove __pycache__ folders and .pyc files +find . -path "*/__pycache__/*" -delete +find . -name "*.pyc" -type f -delete + +# fix problematic rpaths and reexport_dylibs for signing +# see https://github.com/FreeCAD/FreeCAD/issues/10144#issuecomment-1836686775 +# and https://github.com/FreeCAD/FreeCAD-Bundle/pull/203 +python ../scripts/fix_macos_lib_paths.py ${conda_env}/lib + +# build and install the launcher +cmake -B build launcher +cmake --build build +mkdir -p FreeCAD.app/Contents/MacOS +cp build/FreeCAD FreeCAD.app/Contents/MacOS/FreeCAD + +python_version=$(python -c 'import platform; print("py" + platform.python_version_tuple()[0] + platform.python_version_tuple()[1])') +version_name="FreeCAD_${BUILD_TAG}-macOS-$(uname -m)-${python_version}" +application_menu_name="FreeCAD_${BUILD_TAG}" + +echo -e "\################" +echo -e "version_name: ${version_name}" +echo -e "################" + +cp Info.plist.template ${conda_env}/../Info.plist +sed -i "s/FREECAD_VERSION/${version_name}/" ${conda_env}/../Info.plist +sed -i "s/APPLICATION_MENU_NAME/${application_menu_name}/" ${conda_env}/../Info.plist + +pixi list -e default > FreeCAD.app/Contents/packages.txt +sed -i '1s/.*/\nLIST OF PACKAGES:/' FreeCAD.app/Contents/packages.txt + +# copy the plugin into its final location +cp -a ${conda_env}/Library ${conda_env}/.. +rm -rf ${conda_env}/Library + +if [[ "${SIGN_RELEASE}" == "true" ]]; then + # create the signed dmg + ./macos_sign_and_notarize.zsh -p "FreeCAD Weekly" -k ${SIGNING_KEY_ID} -o "${version_name}.dmg" +else + # create the dmg + dmgbuild -s dmg_settings.py "FreeCAD" "${version_name}.dmg" +fi + +# create hash +sha256sum ${version_name}.dmg > ${version_name}.dmg-SHA256.txt + +if [[ "${UPLOAD_RELEASE}" == "true" ]]; then + gh release create ${BUILD_TAG} --title "Weekly Build ${BUILD_TAG}" --notes "Weekly Build ${BUILD_TAG}" --prerelease || true + gh release upload --clobber ${BUILD_TAG} "${version_name}.dmg" "${version_name}.dmg-SHA256.txt" +fi diff --git a/package/rattler-build/osx/dmg_settings.py b/package/rattler-build/osx/dmg_settings.py new file mode 100644 index 0000000000..9e3b2decd9 --- /dev/null +++ b/package/rattler-build/osx/dmg_settings.py @@ -0,0 +1,12 @@ +# Ensure default values are set in defines if they are not already provided +defines.setdefault('containing_folder', '.') +defines.setdefault('app_name', 'FreeCAD.app') +defines.setdefault('icon_path', 'Contents/Resources/freecad.icns') + + +files = [f"{defines['containing_folder']}/{defines['app_name']}"] +symlinks = {"Applications": "/Applications"} +badge_icon = f"{defines['containing_folder']}/{defines['app_name']}/{defines['icon_path']}" +window_rect = ((200, 200), (600, 400)) +icon_locations = {f"{defines['app_name']}": (180, 150), "Applications": (420, 150)} +size = "4g" diff --git a/package/rattler-build/osx/entitlements.plist b/package/rattler-build/osx/entitlements.plist new file mode 100644 index 0000000000..8cc185af8d --- /dev/null +++ b/package/rattler-build/osx/entitlements.plist @@ -0,0 +1,8 @@ + + + + + com.apple.security.cs.disable-library-validation + + + diff --git a/package/rattler-build/osx/launcher/CMakeLists.txt b/package/rattler-build/osx/launcher/CMakeLists.txt new file mode 100644 index 0000000000..222fd17559 --- /dev/null +++ b/package/rattler-build/osx/launcher/CMakeLists.txt @@ -0,0 +1,8 @@ +cmake_minimum_required(VERSION 3.20) +project(freecad-launcher LANGUAGES CXX) + +set(CMAKE_OSX_DEPLOYMENT_TARGET "10.13" CACHE STRING "Minimum OS X deployment version" FORCE) +set(CMAKE_CXX_STANDARD 17) + +add_executable(FreeCAD FreeCAD.cpp) +target_link_libraries(FreeCAD) diff --git a/package/rattler-build/osx/launcher/FreeCAD.cpp b/package/rattler-build/osx/launcher/FreeCAD.cpp new file mode 100644 index 0000000000..562acac4c3 --- /dev/null +++ b/package/rattler-build/osx/launcher/FreeCAD.cpp @@ -0,0 +1,75 @@ +#include +#include +#include +#include +#include + +#include +#include + +int main(int argc, char *argv[], char *const *envp) { + char *cwd = dirname(realpath(argv[0], NULL)); + + std::string FreeCAD = realpath((std::string(cwd) + "/../Resources/bin/freecad").c_str(), NULL); + + std::map env; + for(int i = 0; envp[i] != NULL; ++i) { + std::string e(envp[i]); + auto sep = e.find('='); + auto var = e.substr(0, sep); + auto value = e.substr(sep+1, std::string::npos); + env[var] = value; + } + + std::string prefix = realpath((std::string(cwd) + "/../Resources").c_str(), NULL); + env["PREFIX"] = prefix; + env["LD_LIBRARY_PATH"] = prefix + "/lib"; + env["PYTHONPATH"] = prefix; + env["PYTHONHOME"] = prefix; + env["FONTCONFIG_FILE"] = "/etc/fonts/fonts.conf"; + env["FONTCONFIG_PATH"] = "/etc/fonts"; + env["LANG"] = "UTF-8"; // https://forum.freecad.org/viewtopic.php?f=22&t=42644 + env["SSL_CERT_FILE"] = prefix + "/ssl/cacert.pem"; // https://forum.freecad.org/viewtopic.php?f=3&t=42825 + env["GIT_SSL_CAINFO"] = prefix + "/ssl/cacert.pem"; + env["QT_MAC_WANTS_LAYER"] = "1"; + + char **new_env = new char*[env.size() + 1]; + int i = 0; + for (const auto& [var, value] : env) { + auto line = var + '=' + value; + size_t len = line.length() + 1; + new_env[i] = new char[len]; + memset(new_env[i], 0, len); + strncpy(new_env[i], line.c_str(), len); + i++; + } + new_env[i] = NULL; + + i = 0; + while(new_env[i] != NULL) { + std::cout << new_env[i] << std::endl; + i++; + } + + std::cout << "Running: " << FreeCAD << std::endl; + i = 0; + while(argv[i] != NULL) { + i++; + } + + char **new_argv = new char*[i + 1]; + new_argv[0] = new char[FreeCAD.length() + 1]; + memset(new_argv[0], 0, FreeCAD.length() + 1); + strncpy(new_argv[0], FreeCAD.c_str(), FreeCAD.length()); + + i = 1; + while(argv[i] != NULL) { + new_argv[i] = new char[strlen(argv[i])+1]; + memset(new_argv[i], 0, strlen(argv[i])+1); + strncpy(new_argv[i], argv[i], strlen(argv[i])); + i++; + } + new_argv[i] = NULL; + + return execve(FreeCAD.c_str(), new_argv, new_env); +} diff --git a/package/rattler-build/osx/macos_sign_and_notarize.zsh b/package/rattler-build/osx/macos_sign_and_notarize.zsh new file mode 100755 index 0000000000..9885d31197 --- /dev/null +++ b/package/rattler-build/osx/macos_sign_and_notarize.zsh @@ -0,0 +1,126 @@ +#!/bin/zsh + +# SPDX-License-Identifier: LGPL-2.1-or-later + +# Default values +SIGNING_KEY_ID="${FREECAD_SIGNING_KEY_ID}" +KEYCHAIN_PROFILE="FreeCAD" +CONTAINING_FOLDER="." +APP_NAME="FreeCAD.app" +VOLUME_NAME="FreeCAD" +DMG_NAME="FreeCAD-macOS-$(uname -m).dmg" +DMG_SETTINGS="dmg_settings.py" + +# Function to display usage information +function usage { + echo "Usage: $0 [-k|--key-id ] [-p|--keychain-profile ]" + echo " [-d|--dir ] [-n|--app-name ]" + echo " [-v|--volume-name ] [-o|--output ]" + echo " [-s|--dmg-settings ]" + echo + echo "This script signs and notarizes a FreeCAD.app bundle. It expects that the bundle is in a folder" + echo "by itself (that folder will be used as the basis for the created disk image file, so anything" + echo "else in it will become part of the image). That folder should be located in the same folder as" + echo "this script." + echo + echo "If is not passed it defaults to env variable FREECAD_SIGNING_KEY_ID, it should" + echo "be a Developer ID Application certificate that has been installed into the login keychain." + echo "For a list of available keys see the output of" + echo " security find-identity -p basic -v" + echo "For instructions on how to configure the credentials for the tool for use before running this" + echo "script see the documentation for" + echo " xcrun notarytool store-credentials" + + exit 1 +} + +# Parse command line arguments +while [[ "$#" -gt 0 ]]; do + case $1 in + -k|--key-id) + SIGNING_KEY_ID="$2" + shift 2 + ;; + -p|--keychain-profile) + KEYCHAIN_PROFILE="$2" + shift 2 + ;; + -d|--dir) + CONTAINING_FOLDER="$2" + shift 2 + ;; + -n|--app-name) + APP_NAME="$2" + shift 2 + ;; + -v|--volume-name) + VOLUME_NAME="$2" + shift 2 + ;; + -o|--output) + DMG_NAME="$2" + shift 2 + ;; + -s|--dmg-settings) + DMG_SETTINGS="$2" + shift 2 + ;; + -h|--help) + usage + ;; + *) + echo "Unknown parameter passed: $1" + usage + ;; + esac +done + +# Check if SIGNING_KEY_ID is set +if [ -z "$SIGNING_KEY_ID" ]; then + echo "Error: Signing key ID is required." + usage +fi + +# Check for dmgbuild executable +if ! command -v dmgbuild &> /dev/null; then + echo "Error: dmgbuild not installed. Please install it for example using pip:" + echo 'pip3 install "dmgbuild[badge_icons]>=1.6.0,<1.7.0"' + exit 1 +fi + +function run_codesign { + echo "Signing $1" + /usr/bin/codesign --options runtime -f -s ${SIGNING_KEY_ID} --timestamp --entitlements entitlements.plist "$1" +} + +IFS=$'\n' +dylibs=($(/usr/bin/find "${CONTAINING_FOLDER}/${APP_NAME}" -name "*.dylib")) +shared_objects=($(/usr/bin/find "${CONTAINING_FOLDER}/${APP_NAME}" -name "*.so")) +bundles=($(/usr/bin/find "${CONTAINING_FOLDER}/${APP_NAME}" -name "*.bundle")) +executables=($(/usr/bin/find "${CONTAINING_FOLDER}/${APP_NAME}" -type f -perm +111 -exec file {} + | grep "Mach-O 64-bit executable" | sed 's/:.*//g')) +IFS=$' \t\n' # The default + +signed_files=("${dylibs[@]}" "${shared_objects[@]}" "${bundles[@]}" "${executables[@]}") + +# This list of files is generated from: +# file `find . -type f -perm +111 -print` | grep "Mach-O 64-bit executable" | sed 's/:.*//g' +for exe in ${signed_files}; do + run_codesign "${exe}" +done + +# Two additional files that must be signed that aren't caught by the above searches: +run_codesign "${CONTAINING_FOLDER}/${APP_NAME}/Contents/packages.txt" +run_codesign "${CONTAINING_FOLDER}/${APP_NAME}/Contents/Library/QuickLook/QuicklookFCStd.qlgenerator/Contents/MacOS/QuicklookFCStd" + +# Finally, sign the app itself (must be done last) +run_codesign "${CONTAINING_FOLDER}/${APP_NAME}" + +# Create a disk image from the folder +echo "Creating disk image ${DMG_NAME}" +dmgbuild -s ${DMG_SETTINGS} -Dcontaining_folder="${CONTAINING_FOLDER}" -Dapp_name="${APP_NAME}" "${VOLUME_NAME}" "${DMG_NAME}" + +# Submit it for notarization (requires that an App Store API Key has been set up in the notarytool) +time xcrun notarytool submit --wait --keychain-profile "${KEYCHAIN_PROFILE}" "${DMG_NAME}" + +# Assuming that notarization succeeded, it's a good practice to staple that notarization to the DMG +xcrun stapler staple "${DMG_NAME}" diff --git a/package/rattler-build/osx/resources/freecad-doc.icns b/package/rattler-build/osx/resources/freecad-doc.icns new file mode 100644 index 0000000000..036940d588 Binary files /dev/null and b/package/rattler-build/osx/resources/freecad-doc.icns differ diff --git a/package/rattler-build/osx/resources/freecad-script.icns b/package/rattler-build/osx/resources/freecad-script.icns new file mode 100644 index 0000000000..036940d588 Binary files /dev/null and b/package/rattler-build/osx/resources/freecad-script.icns differ diff --git a/package/rattler-build/osx/resources/freecad.icns b/package/rattler-build/osx/resources/freecad.icns new file mode 100644 index 0000000000..bc96e60c93 Binary files /dev/null and b/package/rattler-build/osx/resources/freecad.icns differ diff --git a/package/rattler-build/pixi.lock b/package/rattler-build/pixi.lock new file mode 100644 index 0000000000..ba6515a9db --- /dev/null +++ b/package/rattler-build/pixi.lock @@ -0,0 +1,17537 @@ +version: 6 +environments: + default: + channels: + - url: https://prefix.dev/pixi-build-backends/ + - url: https://prefix.dev/conda-forge/ + packages: + linux-64: + - conda: https://prefix.dev/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/adwaita-icon-theme-48.0-unix_0.conda + - conda: https://prefix.dev/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/aiohttp-3.11.16-py312h178313f_0.conda + - conda: https://prefix.dev/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/alsa-lib-1.2.13-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/arpack-3.9.1-nompi_hf03ea27_102.conda + - conda: https://prefix.dev/conda-forge/linux-64/at-spi2-atk-2.38.0-h0630a04_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/at-spi2-core-2.40.3-h0630a04_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/atk-1.0-2.38.0-h04ea711_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/blas-2.131-openblas.conda + - conda: https://prefix.dev/conda-forge/linux-64/blas-devel-3.9.0-31_h1ea3ea9_openblas.conda + - conda: https://prefix.dev/conda-forge/noarch/blinker-1.9.0-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py312h2ec8cdc_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + - conda: https://prefix.dev/conda-forge/linux-64/c-ares-1.34.4-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/cairo-1.18.4-h3394656_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/calculix-2.22-hae4e037_1.conda + - conda: https://prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/cffi-1.17.1-py312h06ac9bb_0.conda + - conda: https://prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/coin3d-4.0.3-hd74d64a_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/contourpy-1.3.1-py312h68727a3_0.conda + - conda: https://prefix.dev/conda-forge/noarch/cpython-3.12.9-py312hd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/cyrus-sasl-2.1.27-h54b06d7_7.conda + - conda: https://prefix.dev/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/debugpy-1.8.13-py312h2ec8cdc_0.conda + - conda: https://prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/double-conversion-3.3.1-h5888daf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/epoxy-1.5.10-h166bdaf_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/expat-2.7.0-h5888daf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/ffmpeg-7.1.0-gpl_hf09ebf5_710.conda + - conda: https://prefix.dev/conda-forge/linux-64/flann-1.9.2-h3ef53d8_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/fltk-1.3.10-hff38c0f_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/fmt-11.1.4-h07f6e7f_1.conda + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/fontconfig-2.15.0-h7e30c49_1.conda + - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/fonttools-4.56.0-py312h178313f_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/freeimage-3.18.0-h3a85593_22.conda + - conda: https://prefix.dev/conda-forge/linux-64/freetype-2.13.3-h48d6fc4_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/frozenlist-1.5.0-py312h178313f_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/gdk-pixbuf-2.42.12-hb9ae30d_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/gettext-0.23.1-h5888daf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/gettext-tools-0.23.1-h5888daf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/gl2ps-1.4.2-hae5d5c5_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/glew-2.1.0-h9c3ff4c_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/glib-tools-2.84.0-h4833e2c_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/gmpy2-2.1.5-py312h7201bc8_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/gmsh-4.13.1-hccb25f3_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda + - conda: https://prefix.dev/conda-forge/linux-64/graphviz-12.2.1-h5ae0cbf_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/gtk3-3.24.43-h021d004_4.conda + - conda: https://prefix.dev/conda-forge/linux-64/gts-0.7.6-h977cf35_4.conda + - conda: https://prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/harfbuzz-10.4.0-h76408a6_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda + - conda: https://prefix.dev/conda-forge/linux-64/hdf5-1.14.4-nompi_h2d575fe_105.conda + - conda: https://prefix.dev/conda-forge/linux-64/hicolor-icon-theme-0.17-ha770c72_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/icu-75.1-he02047a_0.conda + - conda: https://prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/imath-3.1.12-h7955e40_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/jack-1.9.22-h7c63dc7_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/jasper-4.2.5-h1920b20_0.conda + - conda: https://prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/jsoncpp-1.9.6-hf42df4d_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/jxrlib-1.1-hd590300_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/kiwisolver-1.4.8-py312h84d6215_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/lark-1.2.2-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + - conda: https://prefix.dev/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/level-zero-1.21.8-h84d6215_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libabseil-20240722.0-cxx17_hbbce691_4.conda + - conda: https://prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libasprintf-0.23.1-h8e693c7_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libasprintf-devel-0.23.1-h8e693c7_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libass-0.17.3-hba53ac1_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libblas-3.9.0-31_h59b9bed_openblas.conda + - conda: https://prefix.dev/conda-forge/linux-64/libboost-1.86.0-h6c02f8c_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libboost-python-1.86.0-py312hc39e661_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libcap-2.71-h39aace5_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libcblas-3.9.0-31_he106b2a_openblas.conda + - conda: https://prefix.dev/conda-forge/linux-64/libclang-cpp19.1-19.1.7-default_hb5137d0_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libclang13-20.1.1-default_h9c6a7e4_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libcups-2.3.3-h4637d8d_4.conda + - conda: https://prefix.dev/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libdb-6.2.32-h9c3ff4c_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libdrm-2.4.124-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libegl-1.7.0-ha4b6fd6_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgcrypt-lib-1.11.0-hb9d3cd8_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgd-2.3.3-h6f5c62b_11.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgettextpo-0.23.1-h5888daf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgettextpo-devel-0.23.1-h5888daf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgl-1.7.0-ha4b6fd6_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libglib-2.84.0-h2ff4ddf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libglu-9.0.3-h03adeef_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libglvnd-1.7.0-ha4b6fd6_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libglx-1.7.0-ha4b6fd6_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgomp-14.2.0-h767d61c_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgpg-error-1.51-hbd13f7d_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda + - conda: https://prefix.dev/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/liblapack-3.9.0-31_h7ac8fdf_openblas.conda + - conda: https://prefix.dev/conda-forge/linux-64/liblapacke-3.9.0-31_he2f377e_openblas.conda + - conda: https://prefix.dev/conda-forge/linux-64/libllvm19-19.1.7-ha7bfdaf_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libllvm20-20.1.2-ha7bfdaf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.6.4-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/liblzma-devel-5.6.4-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h5ddbaa4_116.conda + - conda: https://prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libntlm-1.8-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libogg-1.3.5-h4ab18f5_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenblas-0.3.29-pthreads_h94d23a6_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopencv-4.10.0-qt6_py312h02963e2_615.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopengl-1.7.0-ha4b6fd6_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-2024.6.0-hac27bb2_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.6.0-h4d9b6c2_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-auto-plugin-2024.6.0-h4d9b6c2_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-hetero-plugin-2024.6.0-h3f63f65_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.6.0-hac27bb2_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.6.0-hac27bb2_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-npu-plugin-2024.6.0-hac27bb2_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-ir-frontend-2024.6.0-h3f63f65_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-onnx-frontend-2024.6.0-h6363af5_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-paddle-frontend-2024.6.0-h6363af5_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.6.0-h5888daf_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.6.0-h630ec5c_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.6.0-h5888daf_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/libpciaccess-0.18-hd590300_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libpq-17.4-h27ae623_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libprotobuf-5.28.3-h6128344_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libraw-0.21.3-hca62329_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/librsvg-2.58.4-h49af25d_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libsndfile-1.2.2-hc60ed4a_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libspnav-1.1-h4ab18f5_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libsystemd0-256.9-h2774228_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libtheora-1.1.1-h4ab18f5_1006.conda + - conda: https://prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libudev1-257.4-h9a4d06a_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libunwind-1.6.2-h9c3ff4c_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/liburing-2.9-h84d6215_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libusb-1.0.28-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libva-2.22.0-h4f16b4b_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/libvpx-1.14.1-hac33072_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libxkbcommon-1.8.1-hc4a0caf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h8d12d68_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libxslt-1.1.39-h76b75d6_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libzip-1.11.2-h6991a6a_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/loguru-0.7.2-py312h7900ff3_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/lxml-5.3.1-py312he28fd5a_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/matplotlib-base-3.10.1-py312hd3ec401_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/mpc-1.3.1-h24ddda3_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/mpfr-4.2.1-h90cbb55_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/mpg123-1.32.9-hc50e24c_0.conda + - conda: https://prefix.dev/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/msgpack-python-1.1.0-py312h68727a3_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/multidict-6.2.0-py312h178313f_0.conda + - conda: https://prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/mysql-common-9.0.1-h266115a_5.conda + - conda: https://prefix.dev/conda-forge/linux-64/mysql-libs-9.0.1-he0572af_5.conda + - conda: https://prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda + - conda: https://prefix.dev/conda-forge/noarch/nine-1.1.0-py_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/nlohmann_json-3.11.3-he02047a_1.conda + - conda: https://prefix.dev/conda-forge/noarch/noqt5-1.0-hd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/numpy-2.2.4-py312h72c5963_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/occt-7.8.1-all_h4c4714a_203.conda + - conda: https://prefix.dev/conda-forge/linux-64/ocl-icd-2.3.2-hb9d3cd8_2.conda + - conda: https://prefix.dev/conda-forge/noarch/olefile-0.47-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/openblas-0.3.29-pthreads_h6ec200e_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/opencamlib-2023.01.11-py312h98ce3ff_7.conda + - conda: https://prefix.dev/conda-forge/linux-64/opencl-headers-2024.10.24-h5888daf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/opencv-4.10.0-qt6_py312h8cbcb32_615.conda + - conda: https://prefix.dev/conda-forge/linux-64/openexr-3.3.3-hff63da0_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/openh264-2.5.0-hf92e6e3_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/openldap-2.6.9-he970967_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda + - conda: https://prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/pandas-2.2.3-py312hf9745cd_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/pango-1.56.3-h861ebed_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/pcl-1.15.0-h679aaff_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/pcre2-10.44-hba22ea6_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/pillow-11.1.0-py312h80c1187_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/pivy-0.6.9-py312qt6hbe829da_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/pixman-0.44.2-h29eaf8c_0.conda + - conda: https://prefix.dev/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/proj-9.5.1-h0054346_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/propcache-0.2.1-py312h178313f_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda + - conda: https://prefix.dev/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/pulseaudio-client-17.0-hb77b528_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/py-opencv-4.10.0-qt6_py312he3389d8_615.conda + - conda: https://prefix.dev/conda-forge/noarch/pycollada-0.9-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/pyside6-6.8.2-py312h91f0f75_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda + - conda: https://prefix.dev/conda-forge/linux-64/python-3.12.9-h9e4cc4f_1_cpython.conda + - conda: https://prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + - conda: https://prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/python_abi-3.12-6_cp312.conda + - conda: https://prefix.dev/conda-forge/linux-64/pythonocc-core-7.8.1.1-all_h2b018f6_200.conda + - conda: https://prefix.dev/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py312h178313f_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda + - conda: https://prefix.dev/conda-forge/linux-64/qt6-main-6.8.2-h588cce1_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/rapidjson-1.1.0.post20240409-h3f2d84a_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda + - conda: https://prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/scipy-1.15.2-py312ha707e6e_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/sdl2-2.32.50-h9b8e6db_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/sdl3-3.2.10-h3083f51_0.conda + - conda: https://prefix.dev/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/smesh-9.9.0.0-h0d71592_13.conda + - conda: https://prefix.dev/conda-forge/linux-64/snappy-1.2.1-h8bd8927_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/soqt6-1.6.3-h23d7b0e_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/sqlite-3.49.1-h9eae976_2.conda + - conda: https://prefix.dev/conda-forge/noarch/svgwrite-1.4.3-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/svt-av1-2.3.0-h5888daf_0.conda + - conda: https://prefix.dev/conda-forge/noarch/sympy-1.13.3-pyh2585a3b_105.conda + - conda: https://prefix.dev/conda-forge/linux-64/tbb-2022.1.0-h4ce085d_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/unicodedata2-16.0.0-py312h66e93f0_0.conda + - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/utfcpp-4.0.6-h005c6e1_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/vtk-9.3.1-qt_py312h3d4e8c9_211.conda + - conda: https://prefix.dev/conda-forge/linux-64/vtk-base-9.3.1-qt_py312he62ef8e_211.conda + - conda: https://prefix.dev/conda-forge/linux-64/vtk-io-ffmpeg-9.3.1-qt_py312h3d4e8c9_211.conda + - conda: https://prefix.dev/conda-forge/linux-64/wayland-1.23.1-h3e06ad9_0.conda + - conda: https://prefix.dev/conda-forge/noarch/wayland-protocols-1.42-hd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/wslink-2.3.3-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/xcb-util-0.4.1-hb711507_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/xcb-util-cursor-0.1.5-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xcb-util-image-0.4.0-hb711507_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/xcb-util-keysyms-0.4.1-hb711507_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xcb-util-renderutil-0.3.10-hb711507_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xcb-util-wm-0.4.2-hb711507_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xerces-c-3.3.0-h988505b_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xkeyboard-config-2.43-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/noarch/xlrd-2.0.1-pyhd8ed1ab_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/xlutils-2.0.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/xlwt-1.3.0-py_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libice-1.1.2-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libsm-1.2.6-he73a12e_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libx11-1.8.12-h4f16b4b_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxcomposite-0.4.6-hb9d3cd8_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxcursor-1.2.3-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxdamage-1.1.6-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxext-1.3.6-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxfixes-6.0.1-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxi-1.8.2-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxinerama-1.1.5-h5888daf_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxmu-1.2.1-hb9d3cd8_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxrandr-1.5.4-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxrender-0.9.12-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxscrnsaver-1.2.4-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxt-1.3.1-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxtst-1.2.5-hb9d3cd8_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxxf86vm-1.1.6-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xz-5.6.4-hbcc6ac9_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xz-gpl-tools-5.6.4-hbcc6ac9_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xz-tools-5.6.4-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/yaml-cpp-0.8.0-h59595ed_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/yarl-1.18.3-py312h178313f_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py312h66e93f0_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda + - conda: . + build: h81b34b9_0 + linux-aarch64: + - conda: https://prefix.dev/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/adwaita-icon-theme-48.0-unix_0.conda + - conda: https://prefix.dev/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/aiohttp-3.11.16-py312hcc812fe_0.conda + - conda: https://prefix.dev/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/alsa-lib-1.2.13-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/aom-3.9.1-hcccb83c_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/arpack-3.9.1-nompi_h6fc4d3a_102.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/at-spi2-atk-2.38.0-h1f2db35_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/at-spi2-core-2.40.3-h1f2db35_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/atk-1.0-2.38.0-hedc4a1f_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/attr-2.5.1-h4e544f5_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/blas-2.131-openblas.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/blas-devel-3.9.0-31_h9678261_openblas.conda + - conda: https://prefix.dev/conda-forge/noarch/blinker-1.9.0-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/blosc-1.21.6-hd2997c2_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/brotli-1.1.0-h86ecc28_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/brotli-bin-1.1.0-h86ecc28_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/brotli-python-1.1.0-py312h6f74592_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/bzip2-1.0.8-h68df207_7.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/c-ares-1.34.4-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/ca-certificates-2025.1.31-hcefe29a_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/cairo-1.18.4-h83712da_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/calculix-2.22-h287cb45_1.conda + - conda: https://prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/cffi-1.17.1-py312hac81daf_0.conda + - conda: https://prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/coin3d-4.0.3-h411181d_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/contourpy-1.3.1-py312h451a7dd_0.conda + - conda: https://prefix.dev/conda-forge/noarch/cpython-3.12.9-py312hd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/cyrus-sasl-2.1.27-hf6b2984_7.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/dav1d-1.2.1-h31becfc_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/dbus-1.13.6-h12b9eeb_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/debugpy-1.8.13-py312h6f74592_0.conda + - conda: https://prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/double-conversion-3.3.1-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/epoxy-1.5.10-h4e544f5_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/expat-2.7.0-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/ffmpeg-7.1.0-gpl_h5c0edd5_710.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/flann-1.9.2-h7e74b68_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/fltk-1.3.10-hc36ef9c_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/fmt-11.1.4-h97e1849_1.conda + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/fontconfig-2.15.0-h8dda3cd_1.conda + - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/fonttools-4.56.0-py312hcc812fe_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/freeglut-3.2.2-h5eeb66e_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/freeimage-3.18.0-h6cb32c8_22.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/freetype-2.13.3-he93130f_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/fribidi-1.0.10-hb9de7d4_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/frozenlist-1.5.0-py312hcc812fe_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/gdk-pixbuf-2.42.12-ha61d561_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/gettext-0.23.1-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/gettext-tools-0.23.1-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/gl2ps-1.4.2-hedfd65a_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/glew-2.1.0-h01db608_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/glib-tools-2.84.0-h78ca943_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/gmp-6.3.0-h0a1ffab_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/gmpy2-2.1.5-py312he9d48ea_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/gmsh-4.13.1-h334f342_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/graphite2-1.3.13-h2f0025b_1003.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/graphviz-12.2.1-h044d27a_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/gtk3-3.24.43-hd0cad38_4.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/gts-0.7.6-he293c15_4.conda + - conda: https://prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/harfbuzz-10.4.0-hb5e3f52_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/hdf4-4.2.15-hb6ba311_7.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/hdf5-1.14.4-nompi_h6ed7ac7_105.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/hicolor-icon-theme-0.17-h8af1aa0_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/icu-75.1-hf9b3779_0.conda + - conda: https://prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/imath-3.1.12-hf428078_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/jack-1.9.22-h5c6c0ed_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/jasper-4.2.5-h9d5db0e_0.conda + - conda: https://prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/jsoncpp-1.9.6-h34915d9_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/jxrlib-1.1-h31becfc_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/kiwisolver-1.4.8-py312h17cf362_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/krb5-1.21.3-h50a48e9_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/lame-3.100-h4e544f5_1003.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/lark-1.2.2-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/lcms2-2.17-hc88f144_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.43-h80caac9_4.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/lerc-4.0.0-h4de3ea5_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h18dbdb1_4.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libaec-1.1.3-h2f0025b_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libasprintf-0.23.1-h5e0f5ae_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libasprintf-devel-0.23.1-h5e0f5ae_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libass-0.17.3-hdba415e_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libblas-3.9.0-31_h1a9f1db_openblas.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libboost-1.86.0-h4d13611_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libboost-python-1.86.0-py312h4f0fe26_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libbrotlicommon-1.1.0-h86ecc28_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h86ecc28_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libbrotlienc-1.1.0-h86ecc28_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libcap-2.71-h51d75a7_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libcblas-3.9.0-31_hab92f65_openblas.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libclang-cpp19.1-19.1.7-default_he324ac1_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libclang13-20.1.1-default_h4390ef5_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libcups-2.3.3-h405e4a8_4.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libcurl-8.13.0-h6702fde_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libdb-6.2.32-h01db608_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/libdeflate-1.23-h5e3c512_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libdrm-2.4.124-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libedit-3.1.20250104-pl5321h976ea20_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libegl-1.7.0-hd24410f_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libexpat-2.7.0-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libffi-3.4.6-he21f813_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libflac-1.4.3-h2f0025b_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-14.2.0-he277a41_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-ng-14.2.0-he9431aa_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcrypt-lib-1.11.0-h86ecc28_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgd-2.3.3-hc8d7b1d_11.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgettextpo-0.23.1-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgettextpo-devel-0.23.1-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgfortran-14.2.0-he9431aa_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgfortran5-14.2.0-hb6113d0_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgl-1.7.0-hd24410f_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libglib-2.84.0-hc486b8e_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libglu-9.0.3-hc7f7585_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libglvnd-1.7.0-hd24410f_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libglx-1.7.0-hd24410f_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgpg-error-1.51-h05609ea_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libhwloc-2.11.2-default_h2c612a5_1001.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libiconv-1.18-hc99b53d_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libjpeg-turbo-3.0.0-h31becfc_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/liblapack-3.9.0-31_h411afd4_openblas.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/liblapacke-3.9.0-31_hc659ca5_openblas.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libllvm19-19.1.7-h2edbd07_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libllvm20-20.1.2-h2edbd07_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.6.4-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-devel-5.6.4-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libnetcdf-4.9.2-nompi_h46655bb_116.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libnghttp2-1.64.0-hc8609a4_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libntlm-1.4-hf897c2e_1002.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/libogg-1.3.5-h0b9eccb_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenblas-0.3.29-pthreads_h9d3fd7e_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopencv-4.10.0-headless_py312h664d0dd_15.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopengl-1.7.0-hd24410f_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-2024.6.0-hd7d4d4f_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-arm-cpu-plugin-2024.6.0-hd7d4d4f_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-auto-batch-plugin-2024.6.0-hf15766e_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-auto-plugin-2024.6.0-hf15766e_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-hetero-plugin-2024.6.0-h6ef32b0_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-ir-frontend-2024.6.0-h6ef32b0_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-onnx-frontend-2024.6.0-h2c07a0f_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-paddle-frontend-2024.6.0-h2c07a0f_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-pytorch-frontend-2024.6.0-h5ad3122_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-tensorflow-frontend-2024.6.0-h8231d02_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-tensorflow-lite-frontend-2024.6.0-h5ad3122_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopus-1.3.1-hf897c2e_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/libpciaccess-0.18-h31becfc_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libpng-1.6.47-hec79eb8_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libpq-17.4-hf590da8_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libprotobuf-5.28.3-h44a3b7b_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libraw-0.21.3-hf20323b_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/librsvg-2.58.4-h9b423fc_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libsndfile-1.2.2-h79657aa_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libspnav-1.1-h68df207_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libsqlite-3.49.1-h5eb1b54_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libssh2-1.11.1-ha41c0db_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-14.2.0-h3f4de04_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-ng-14.2.0-hf1166c9_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libsystemd0-256.9-hd54d049_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libtheora-1.1.1-h68df207_1006.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libtiff-4.7.0-h88f7998_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libudev1-257.4-h1187dce_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libunwind-1.6.2-h01db608_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/liburing-2.9-h17cf362_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libusb-1.0.28-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libvorbis-1.3.7-h01db608_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/libvpx-1.14.1-h0a1ffab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libwebp-base-1.5.0-h0886dbf_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libxcb-1.17.0-h262b8f6_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libxkbcommon-1.8.1-h2ef6bd0_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-2.13.7-h2e0c361_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libxslt-1.1.39-h1cc9640_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libzip-1.11.2-h3e8f909_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/loguru-0.7.2-py312h8025657_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/lxml-5.3.1-py312h1ce91a6_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/matplotlib-base-3.10.1-py312h965bf68_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/mpc-1.3.1-h783934e_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/mpfr-4.2.1-h2305555_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/mpg123-1.32.9-h65af167_0.conda + - conda: https://prefix.dev/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/msgpack-python-1.1.0-py312h451a7dd_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/multidict-6.2.0-py312hcc812fe_0.conda + - conda: https://prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/mysql-common-9.0.1-h3f5c77f_5.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/mysql-libs-9.0.1-h11569fd_5.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/ncurses-6.5-ha32ae93_3.conda + - conda: https://prefix.dev/conda-forge/noarch/nine-1.1.0-py_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/nlohmann_json-3.11.3-h0a1ffab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/noqt5-1.0-hd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/numpy-2.2.4-py312hce01fe4_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/occt-7.8.1-all_h78e3548_203.conda + - conda: https://prefix.dev/conda-forge/noarch/olefile-0.47-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/openblas-0.3.29-pthreads_h3a8cbd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/opencamlib-2023.01.11-py312h3aea3f9_7.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/opencv-4.10.0-headless_py312h1ed0fc8_15.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/openexr-3.3.3-h2d73ac1_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/openh264-2.5.0-h6c5ec6d_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/openjpeg-2.5.3-h3f56577_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/openldap-2.6.9-h30c48ee_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/openssl-3.4.1-hd08dc88_0.conda + - conda: https://prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pandas-2.2.3-py312ha2895bd_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pango-1.56.3-hd49db62_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pcl-1.15.0-h29e8f2a_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pcre2-10.44-h070dd5b_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pillow-11.1.0-py312h719f0cf_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pivy-0.6.9-py312qt6h5eb9031_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pixman-0.44.2-h86a87f0_0.conda + - conda: https://prefix.dev/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/proj-9.5.1-h9655f4d_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/propcache-0.2.1-py312hcc812fe_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pthread-stubs-0.4-h86ecc28_1002.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pugixml-1.14-h2f0025b_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pulseaudio-client-17.0-h729494f_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/py-opencv-4.10.0-headless_py312h7c5359c_15.conda + - conda: https://prefix.dev/conda-forge/noarch/pycollada-0.9-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pyside6-6.8.2-py312hdd999d0_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/python-3.12.9-h1683364_1_cpython.conda + - conda: https://prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + - conda: https://prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/python_abi-3.12-6_cp312.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pythonocc-core-7.8.1.1-all_h1892dc3_200.conda + - conda: https://prefix.dev/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pyyaml-6.0.2-py312hcc812fe_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/qhull-2020.2-h70be974_5.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/qt6-main-6.8.2-ha0a94ed_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/rapidjson-1.1.0.post20240409-h5ad3122_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/readline-8.2-h8382b9d_2.conda + - conda: https://prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/scipy-1.15.2-py312hb5459e8_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/sdl2-2.32.50-h7851d19_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/sdl3-3.2.10-h9cc03ad_0.conda + - conda: https://prefix.dev/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/smesh-9.9.0.0-h212b014_13.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/snappy-1.2.1-hd4fb6f5_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/soqt6-1.6.3-h808f404_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/sqlite-3.49.1-h578a6b9_2.conda + - conda: https://prefix.dev/conda-forge/noarch/svgwrite-1.4.3-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/svt-av1-2.3.0-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/noarch/sympy-1.13.3-pyh2585a3b_105.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/tbb-2022.1.0-hf6e3e71_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda + - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/unicodedata2-16.0.0-py312hb2c0f52_0.conda + - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/utfcpp-4.0.6-h01cc221_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-9.3.1-qt_py312h502ffb0_212.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-base-9.3.1-qt_py312hb4c926f_212.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-io-ffmpeg-9.3.1-qt_py312h502ffb0_212.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/wayland-1.23.1-h698ed42_0.conda + - conda: https://prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/wslink-2.3.3-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/x264-1!164.3095-h4e544f5_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/x265-3.5-hdd96247_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-0.4.1-h5c728e9_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-cursor-0.1.5-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-image-0.4.0-h5c728e9_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-keysyms-0.4.1-h5c728e9_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-renderutil-0.3.10-h5c728e9_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-wm-0.4.2-h5c728e9_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xerces-c-3.3.0-h595f43b_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xkeyboard-config-2.43-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/noarch/xlrd-2.0.1-pyhd8ed1ab_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/xlutils-2.0.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/xlwt-1.3.0-py_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libice-1.1.2-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libsm-1.2.6-h0808dbd_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libx11-1.8.12-hca56bd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxau-1.0.12-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxcomposite-0.4.6-h86ecc28_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxcursor-1.2.3-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxdamage-1.1.6-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxdmcp-1.1.5-h57736b2_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxext-1.3.6-h57736b2_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxfixes-6.0.1-h57736b2_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxi-1.8.2-h57736b2_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxinerama-1.1.5-h5ad3122_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxmu-1.2.1-h57736b2_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxrandr-1.5.4-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxrender-0.9.12-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxt-1.3.1-h57736b2_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxtst-1.2.5-h57736b2_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxxf86vm-1.1.6-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xz-5.6.4-h2dbfc1b_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xz-gpl-tools-5.6.4-h2dbfc1b_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xz-tools-5.6.4-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/yaml-0.2.5-hf897c2e_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/yaml-cpp-0.8.0-h2f0025b_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/yarl-1.18.3-py312hcc812fe_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/zlib-1.3.1-h86ecc28_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/zstandard-0.23.0-py312hb2c0f52_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/zstd-1.5.7-hbcf94c1_2.conda + - conda: . + build: h6d4d2f9_0 + osx-64: + - conda: https://prefix.dev/conda-forge/noarch/adwaita-icon-theme-48.0-unix_0.conda + - conda: https://prefix.dev/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/aiohttp-3.11.16-py312h3520af0_0.conda + - conda: https://prefix.dev/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/aom-3.9.1-hf036a51_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/arpack-3.9.1-nompi_hdfe9103_102.conda + - conda: https://prefix.dev/conda-forge/osx-64/atk-1.0-2.38.0-h4bec284_2.conda + - conda: https://prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/blas-2.131-accelerate.conda + - conda: https://prefix.dev/conda-forge/osx-64/blas-devel-3.9.0-31_h83998a6_accelerate.conda + - conda: https://prefix.dev/conda-forge/noarch/blinker-1.9.0-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/blosc-1.21.6-h7d75f6d_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/brotli-1.1.0-h00291cd_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/brotli-bin-1.1.0-h00291cd_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/brotli-python-1.1.0-py312h5861a67_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda + - conda: https://prefix.dev/conda-forge/osx-64/c-ares-1.34.4-hf13058a_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/ca-certificates-2025.1.31-h8857fd0_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/cairo-1.18.4-h950ec3b_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/calculix-2.22-h1ca30be_1.conda + - conda: https://prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/cffi-1.17.1-py312hf857d28_0.conda + - conda: https://prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/coin3d-4.0.3-h9b6ce5f_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/contourpy-1.3.1-py312hc47a885_0.conda + - conda: https://prefix.dev/conda-forge/noarch/cpython-3.12.9-py312hd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/cyrus-sasl-2.1.27-hf9bab2b_7.conda + - conda: https://prefix.dev/conda-forge/osx-64/dav1d-1.2.1-h0dc2134_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/dbus-1.13.6-h811a1a6_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-64/debugpy-1.8.13-py312haafddd8_0.conda + - conda: https://prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/double-conversion-3.3.1-h240833e_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/epoxy-1.5.10-h5eb16cf_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-64/expat-2.7.0-h240833e_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/ffmpeg-7.1.0-gpl_hf97d1e1_110.conda + - conda: https://prefix.dev/conda-forge/osx-64/flann-1.9.2-h680e343_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/fltk-1.3.10-h11de4b3_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/fmt-11.1.4-hbf61d64_1.conda + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/fontconfig-2.15.0-h37eeddb_1.conda + - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-64/fonttools-4.56.0-py312h3520af0_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/freeimage-3.18.0-h7cd8ba8_22.conda + - conda: https://prefix.dev/conda-forge/osx-64/freetype-2.13.3-h40dfd5c_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/fribidi-1.0.10-hbcb3906_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-64/frozenlist-1.5.0-py312h3520af0_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/gdk-pixbuf-2.42.12-ha587570_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/gl2ps-1.4.2-hd82a5f3_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/glew-2.1.0-h046ec9c_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-64/glib-tools-2.84.0-hf8faeaf_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/gmp-6.3.0-hf036a51_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/gmpy2-2.1.5-py312h068713c_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/gmsh-4.13.1-h36a9002_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/graphite2-1.3.13-h73e2aa4_1003.conda + - conda: https://prefix.dev/conda-forge/osx-64/graphviz-12.2.1-h44a0556_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/gtk3-3.24.43-h82a860e_4.conda + - conda: https://prefix.dev/conda-forge/osx-64/gts-0.7.6-h53e17e3_4.conda + - conda: https://prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/harfbuzz-10.4.0-h86b413f_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda + - conda: https://prefix.dev/conda-forge/osx-64/hdf5-1.14.4-nompi_h1607680_105.conda + - conda: https://prefix.dev/conda-forge/osx-64/hicolor-icon-theme-0.17-h694c41f_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda + - conda: https://prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/imath-3.1.12-h2016aa1_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/jasper-4.2.5-had675a4_0.conda + - conda: https://prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/jsoncpp-1.9.6-h466cfd8_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/jxrlib-1.1-h10d778d_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/kiwisolver-1.4.8-py312h9275861_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/lame-3.100-hb7f2c08_1003.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/lark-1.2.2-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/lcms2-2.17-h72f5680_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-64/libabseil-20240722.0-cxx17_h0e468a2_4.conda + - conda: https://prefix.dev/conda-forge/osx-64/libaec-1.1.3-h73e2aa4_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libasprintf-0.23.1-h27064b9_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libass-0.17.3-h07fa1ac_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/libblas-3.9.0-31_h53a1964_accelerate.conda + - conda: https://prefix.dev/conda-forge/osx-64/libboost-1.86.0-hf0da243_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libboost-python-1.86.0-py312hdf63323_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libbrotlicommon-1.1.0-h00291cd_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/libbrotlidec-1.1.0-h00291cd_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/libbrotlienc-1.1.0-h00291cd_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/libcblas-3.9.0-31_h6bc05c3_accelerate.conda + - conda: https://prefix.dev/conda-forge/osx-64/libclang-cpp18.1-18.1.8-default_h3571c67_8.conda + - conda: https://prefix.dev/conda-forge/osx-64/libclang13-20.1.1-default_hf2b7afa_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libcurl-8.13.0-h5dec5d8_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libcxx-20.1.2-hf95d169_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libdeflate-1.23-he65b83e_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libedit-3.1.20250104-pl5321ha958ccf_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libev-4.33-h10d778d_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/libexpat-2.7.0-h240833e_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libffi-3.4.6-h281671d_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/libgd-2.3.3-h8555400_11.conda + - conda: https://prefix.dev/conda-forge/osx-64/libgettextpo-0.23.1-h27064b9_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libglib-2.84.0-h5c976ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libhwloc-2.11.2-default_h4cdd727_1001.conda + - conda: https://prefix.dev/conda-forge/osx-64/libiconv-1.18-h4b5e92a_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/libintl-0.23.1-h27064b9_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libjpeg-turbo-3.0.0-h0dc2134_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/liblapack-3.9.0-31_hf5f89c0_accelerate.conda + - conda: https://prefix.dev/conda-forge/osx-64/liblapacke-3.9.0-31_h323ef19_accelerate.conda + - conda: https://prefix.dev/conda-forge/osx-64/libllvm18-18.1.8-hc29ff6c_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libllvm20-20.1.2-hc29ff6c_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/liblzma-5.6.4-hd471939_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libnetcdf-4.9.2-nompi_hd7a758f_116.conda + - conda: https://prefix.dev/conda-forge/osx-64/libnghttp2-1.64.0-hc7306c3_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libntlm-1.8-h6e16a3a_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libogg-1.3.5-hfdf4475_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopencv-4.10.0-headless_py312hd33687b_15.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-2024.6.0-h5e1b680_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-auto-batch-plugin-2024.6.0-h4464f52_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-auto-plugin-2024.6.0-h4464f52_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-hetero-plugin-2024.6.0-h3435d20_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-intel-cpu-plugin-2024.6.0-h5e1b680_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-ir-frontend-2024.6.0-h3435d20_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-onnx-frontend-2024.6.0-h40b3fd7_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-paddle-frontend-2024.6.0-h40b3fd7_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-pytorch-frontend-2024.6.0-hbcac03e_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-tensorflow-frontend-2024.6.0-hacd10b5_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-tensorflow-lite-frontend-2024.6.0-hbcac03e_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopus-1.3.1-hc929b4f_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-64/libpng-1.6.47-h3c4a55f_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libpq-17.4-h9c5cfc2_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/libprotobuf-5.28.3-h6401091_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/libraw-0.21.3-h8f7feda_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/librsvg-2.58.4-h21a6cfa_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libsqlite-3.49.1-hdb6dae5_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/libssh2-1.11.1-h3dc7d44_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libtheora-1.1.1-hfdf4475_1006.conda + - conda: https://prefix.dev/conda-forge/osx-64/libtiff-4.7.0-hb77a491_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libusb-1.0.28-h6e16a3a_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libvorbis-1.3.7-h046ec9c_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-64/libvpx-1.14.1-hf036a51_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libwebp-base-1.5.0-h6cf52b4_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libxcb-1.17.0-hf1f96e2_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libxml2-2.13.7-hebb159f_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libxslt-1.1.39-h03b04e6_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libzip-1.11.2-h31df5bb_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/llvm-openmp-20.1.1-ha54dae1_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/loguru-0.7.2-py312hb401068_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/lxml-5.3.1-py312h91b2f42_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/markupsafe-3.0.2-py312h3520af0_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/matplotlib-base-3.10.1-py312h535dea3_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/mpc-1.3.1-h9d8efa1_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/mpfr-4.2.1-haed47dc_3.conda + - conda: https://prefix.dev/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/msgpack-python-1.1.0-py312hc5c4d5f_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/multidict-6.2.0-py312h6f3313d_0.conda + - conda: https://prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-64/mysql-common-9.0.1-hd00b0ec_5.conda + - conda: https://prefix.dev/conda-forge/osx-64/mysql-libs-9.0.1-h062309a_5.conda + - conda: https://prefix.dev/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda + - conda: https://prefix.dev/conda-forge/noarch/nine-1.1.0-py_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-64/nlohmann_json-3.11.3-hf036a51_1.conda + - conda: https://prefix.dev/conda-forge/noarch/noqt5-1.0-hd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/numpy-2.2.4-py312h6693b03_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/occt-7.8.1-all_ha9a7d59_203.conda + - conda: https://prefix.dev/conda-forge/noarch/olefile-0.47-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/opencamlib-2023.01.11-py312h6681d2d_7.conda + - conda: https://prefix.dev/conda-forge/osx-64/opencv-4.10.0-headless_py312h1c69202_15.conda + - conda: https://prefix.dev/conda-forge/osx-64/openexr-3.3.3-h6794a33_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/openh264-2.5.0-hdfcf091_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/openjpeg-2.5.3-h7fd6d84_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/openldap-2.6.9-hd8a590d_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/openssl-3.4.1-hc426f3f_0.conda + - conda: https://prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/pandas-2.2.3-py312h98e817e_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/pango-1.56.3-hf94f63b_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/pcl-1.15.0-h96d8db5_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/pcre2-10.44-h7634a1b_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/pillow-11.1.0-py312hd9f36e3_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/pivy-0.6.9-py312qt6hf91b182_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/pixman-0.44.2-h1fd1274_0.conda + - conda: https://prefix.dev/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/proj-9.5.1-h5273da6_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/propcache-0.2.1-py312h3520af0_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/pthread-stubs-0.4-h00291cd_1002.conda + - conda: https://prefix.dev/conda-forge/osx-64/pugixml-1.14-he965462_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/py-opencv-4.10.0-headless_py312hae307ac_15.conda + - conda: https://prefix.dev/conda-forge/noarch/pycollada-0.9-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/pyside6-6.8.2-py312h6cdf32b_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda + - conda: https://prefix.dev/conda-forge/osx-64/python-3.12.9-h9ccd52b_1_cpython.conda + - conda: https://prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + - conda: https://prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/python_abi-3.12-6_cp312.conda + - conda: https://prefix.dev/conda-forge/osx-64/pythonocc-core-7.8.1.1-all_h7c11160_200.conda + - conda: https://prefix.dev/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/pyyaml-6.0.2-py312h3520af0_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/qhull-2020.2-h3c5361c_5.conda + - conda: https://prefix.dev/conda-forge/osx-64/qt6-main-6.8.2-h35a4a19_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/rapidjson-1.1.0.post20240409-h92383a6_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/readline-8.2-h7cca4af_2.conda + - conda: https://prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/scipy-1.15.2-py312hd04560d_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/sdl2-2.32.50-hc0cb955_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/sdl3-3.2.10-h6dd79e8_0.conda + - conda: https://prefix.dev/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/smesh-9.9.0.0-ha774313_13.conda + - conda: https://prefix.dev/conda-forge/osx-64/snappy-1.2.1-haf3c120_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/soqt6-1.6.3-h667e493_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/sqlite-3.49.1-h2e4c9dc_2.conda + - conda: https://prefix.dev/conda-forge/noarch/svgwrite-1.4.3-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/svt-av1-2.3.0-h97d8b74_0.conda + - conda: https://prefix.dev/conda-forge/noarch/sympy-1.13.3-pyh2585a3b_105.conda + - conda: https://prefix.dev/conda-forge/osx-64/tbb-2022.1.0-h479f576_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda + - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/unicodedata2-16.0.0-py312h01d7ebd_0.conda + - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/utfcpp-4.0.6-h93fb1c9_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/vtk-9.3.1-qt_py312h6e7d914_212.conda + - conda: https://prefix.dev/conda-forge/osx-64/vtk-base-9.3.1-qt_py312h7cf0cd7_212.conda + - conda: https://prefix.dev/conda-forge/osx-64/vtk-io-ffmpeg-9.3.1-qt_py312h6e7d914_212.conda + - conda: https://prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/wslink-2.3.3-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/x264-1!164.3095-h775f41a_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-64/x265-3.5-hbb4e6a2_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-64/xerces-c-3.3.0-hd0321b6_0.conda + - conda: https://prefix.dev/conda-forge/noarch/xlrd-2.0.1-pyhd8ed1ab_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/xlutils-2.0.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/xlwt-1.3.0-py_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-64/xorg-libice-1.1.2-h6e16a3a_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/xorg-libsm-1.2.6-h6e16a3a_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/xorg-libx11-1.8.12-h217831a_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/xorg-libxau-1.0.12-h6e16a3a_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/xorg-libxdmcp-1.1.5-h00291cd_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/xorg-libxext-1.3.6-h00291cd_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/xorg-libxfixes-6.0.1-h00291cd_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/xorg-libxrender-0.9.12-h6e16a3a_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-64/yaml-cpp-0.8.0-he965462_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/yarl-1.18.3-py312h3520af0_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/zlib-1.3.1-hd23fc13_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/zstandard-0.23.0-py312h01d7ebd_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/zstd-1.5.7-h8210216_2.conda + - conda: . + build: he0f4bc8_0 + osx-arm64: + - conda: https://prefix.dev/conda-forge/noarch/adwaita-icon-theme-48.0-unix_0.conda + - conda: https://prefix.dev/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/aiohttp-3.11.16-py312h998013c_0.conda + - conda: https://prefix.dev/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/aom-3.9.1-h7bae524_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/arpack-3.9.1-nompi_h1f29f7c_102.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/atk-1.0-2.38.0-hd03087b_2.conda + - conda: https://prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/blas-2.131-accelerate.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/blas-devel-3.9.0-31_h55bc449_accelerate.conda + - conda: https://prefix.dev/conda-forge/noarch/blinker-1.9.0-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/blosc-1.21.6-h5499902_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/brotli-1.1.0-hd74edd7_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/brotli-bin-1.1.0-hd74edd7_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/brotli-python-1.1.0-py312hde4cb15_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/c-ares-1.34.4-h5505292_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/ca-certificates-2025.1.31-hf0a4a13_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/cairo-1.18.4-h6a3b0d2_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/calculix-2.22-hf186d59_1.conda + - conda: https://prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/cffi-1.17.1-py312h0fad829_0.conda + - conda: https://prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/coin3d-4.0.3-h705ab75_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/contourpy-1.3.1-py312hb23fbb9_0.conda + - conda: https://prefix.dev/conda-forge/noarch/cpython-3.12.9-py312hd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/cyrus-sasl-2.1.27-h60b93bd_7.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/dav1d-1.2.1-hb547adb_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/dbus-1.13.6-h3818c69_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/debugpy-1.8.13-py312hd8f9ff3_0.conda + - conda: https://prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/double-conversion-3.3.1-h286801f_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/eigen-3.4.0-h1995070_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/epoxy-1.5.10-h1c322ee_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/expat-2.7.0-h286801f_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/ffmpeg-7.1.0-gpl_h7c3f5a8_110.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/flann-1.9.2-h9c23b55_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/fltk-1.3.10-h46aaf7c_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/fmt-11.1.4-h440487c_1.conda + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/fontconfig-2.15.0-h1383a14_1.conda + - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/fonttools-4.56.0-py312h998013c_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/freeimage-3.18.0-h2e169f6_22.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/freetype-2.13.3-h1d14073_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/fribidi-1.0.10-h27ca646_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/frozenlist-1.5.0-py312h998013c_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/gdk-pixbuf-2.42.12-h7ddc832_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/gl2ps-1.4.2-hc97c1ff_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/glew-2.1.0-h9f76cd9_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/glib-tools-2.84.0-h1dc7a0c_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/gmp-6.3.0-h7bae524_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/gmpy2-2.1.5-py312h524cf62_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/gmsh-4.13.1-h88a6c1f_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/graphite2-1.3.13-hebf3989_1003.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/graphviz-12.2.1-hff64154_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/gtk3-3.24.43-he7bb075_4.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/gts-0.7.6-he42f4ea_4.conda + - conda: https://prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/harfbuzz-10.4.0-hb72c1af_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/hdf4-4.2.15-h2ee6834_7.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/hdf5-1.14.4-nompi_ha698983_105.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/hicolor-icon-theme-0.17-hce30654_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda + - conda: https://prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/imath-3.1.12-h025cafa_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/jasper-4.2.5-h743e416_0.conda + - conda: https://prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/jsoncpp-1.9.6-h726d253_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/jxrlib-1.1-h93a5062_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/kiwisolver-1.4.8-py312h2c4a281_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/lame-3.100-h1a8c8d9_1003.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/lark-1.2.2-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/lcms2-2.17-h7eeda09_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_h07bc746_4.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libaec-1.1.3-hebf3989_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libasprintf-0.23.1-h493aca8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libass-0.17.3-h16a287c_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libblas-3.9.0-31_h504e6c8_accelerate.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libboost-1.86.0-hc9fb7c5_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libboost-python-1.86.0-py312h72cd453_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hd74edd7_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libbrotlidec-1.1.0-hd74edd7_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libbrotlienc-1.1.0-hd74edd7_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libcblas-3.9.0-31_h8d39bcd_accelerate.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libclang-cpp18.1-18.1.8-default_hf90f093_8.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libclang13-20.1.1-default_h81d93ff_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libcurl-8.13.0-h73640d1_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libcxx-20.1.2-ha82da77_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libdeflate-1.23-hec38601_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libedit-3.1.20250104-pl5321hafb1f1b_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libexpat-2.7.0-h286801f_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libffi-3.4.6-h1da3d7d_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libgd-2.3.3-hb2c3a21_11.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libgettextpo-0.23.1-h493aca8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libglib-2.84.0-hdff4504_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libhwloc-2.11.2-default_hbce5d74_1001.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libiconv-1.18-hfe07756_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libintl-0.23.1-h493aca8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libjpeg-turbo-3.0.0-hb547adb_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/liblapack-3.9.0-31_h3c9cff3_accelerate.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/liblapacke-3.9.0-31_h09be921_accelerate.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libllvm18-18.1.8-hc4b4ae8_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libllvm20-20.1.2-hc4b4ae8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/liblzma-5.6.4-h39f12f2_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libnetcdf-4.9.2-nompi_h6569565_116.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libnghttp2-1.64.0-h6d7220d_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libntlm-1.8-h5505292_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libogg-1.3.5-h99b78c6_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopencv-4.10.0-headless_py312hb22ed7f_15.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-2024.6.0-h97facdf_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-arm-cpu-plugin-2024.6.0-h97facdf_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-auto-batch-plugin-2024.6.0-h7f72211_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-auto-plugin-2024.6.0-h7f72211_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-hetero-plugin-2024.6.0-hd3d436d_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-ir-frontend-2024.6.0-hd3d436d_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-onnx-frontend-2024.6.0-h76e6831_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-paddle-frontend-2024.6.0-h76e6831_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-pytorch-frontend-2024.6.0-h286801f_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-tensorflow-frontend-2024.6.0-he275e1d_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-tensorflow-lite-frontend-2024.6.0-h286801f_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopus-1.3.1-h27ca646_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/libpng-1.6.47-h3783ad8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libpq-17.4-h6896619_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libprotobuf-5.28.3-h3bd63a1_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libraw-0.21.3-hee66ff5_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/librsvg-2.58.4-h266df6f_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libsqlite-3.49.1-h3f77e49_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libssh2-1.11.1-h9cc3647_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libtheora-1.1.1-h99b78c6_1006.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libtiff-4.7.0-h551f018_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libusb-1.0.28-h5505292_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libvorbis-1.3.7-h9f76cd9_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/libvpx-1.14.1-h7bae524_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libwebp-base-1.5.0-h2471fea_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libxcb-1.17.0-hdb1d25a_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libxml2-2.13.7-h178c5d8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libxslt-1.1.39-h223e5b9_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libzip-1.11.2-h1336266_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/llvm-openmp-20.1.1-hdb05f8b_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/loguru-0.7.2-py312h81bd7bf_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/lxml-5.3.1-py312h9535dd2_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/markupsafe-3.0.2-py312h998013c_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/matplotlib-base-3.10.1-py312hdbc7e53_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/mpc-1.3.1-h8f1351a_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/mpfr-4.2.1-hb693164_3.conda + - conda: https://prefix.dev/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/msgpack-python-1.1.0-py312h6142ec9_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/multidict-6.2.0-py312hdb8e49c_0.conda + - conda: https://prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/mysql-common-9.0.1-hd7719f6_5.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/mysql-libs-9.0.1-ha8be5b7_5.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda + - conda: https://prefix.dev/conda-forge/noarch/nine-1.1.0-py_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/nlohmann_json-3.11.3-h00cdb27_1.conda + - conda: https://prefix.dev/conda-forge/noarch/noqt5-1.0-hd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/numpy-2.2.4-py312h7c1f314_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/occt-7.8.1-all_h869bdd7_203.conda + - conda: https://prefix.dev/conda-forge/noarch/olefile-0.47-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/opencamlib-2023.01.11-py312h7829b80_7.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/opencv-4.10.0-headless_py312h5440e30_15.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/openexr-3.3.3-h10b4c9a_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/openh264-2.5.0-h774163f_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/openjpeg-2.5.3-h8a3d83b_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/openldap-2.6.9-hbe55e7a_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/openssl-3.4.1-h81ee809_0.conda + - conda: https://prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pandas-2.2.3-py312hcd31e36_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pango-1.56.3-h73f1e88_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pcl-1.15.0-hd09b3b3_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pcre2-10.44-h297a79d_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pillow-11.1.0-py312h50aef2c_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pivy-0.6.9-py312qt6h0c4edc7_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pixman-0.44.2-h2f9eb0b_0.conda + - conda: https://prefix.dev/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/proj-9.5.1-h1318a7e_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/propcache-0.2.1-py312h998013c_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pthread-stubs-0.4-hd74edd7_1002.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pugixml-1.14-h13dd4ca_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/py-opencv-4.10.0-headless_py312h660ad0e_15.conda + - conda: https://prefix.dev/conda-forge/noarch/pycollada-0.9-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pyside6-6.8.2-py312h8c66da3_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/python-3.12.9-hc22306f_1_cpython.conda + - conda: https://prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + - conda: https://prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/python_abi-3.12-6_cp312.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pythonocc-core-7.8.1.1-all_h4a50698_200.conda + - conda: https://prefix.dev/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pyyaml-6.0.2-py312h998013c_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/qhull-2020.2-h420ef59_5.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/qt6-main-6.8.2-h4464394_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/rapidjson-1.1.0.post20240409-ha1acc90_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda + - conda: https://prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/scipy-1.15.2-py312h99a188d_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/sdl2-2.32.50-h994913f_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/sdl3-3.2.10-he842692_0.conda + - conda: https://prefix.dev/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/smesh-9.9.0.0-hf192bc0_13.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/snappy-1.2.1-h98b9ce2_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/soqt6-1.6.3-hd20b56a_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/sqlite-3.49.1-hd7222ec_2.conda + - conda: https://prefix.dev/conda-forge/noarch/svgwrite-1.4.3-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/svt-av1-2.3.0-hf24288c_0.conda + - conda: https://prefix.dev/conda-forge/noarch/sympy-1.13.3-pyh2585a3b_105.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/tbb-2022.1.0-h9541205_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/tbb-devel-2022.1.0-hf29b1df_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda + - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/unicodedata2-16.0.0-py312hea69d52_0.conda + - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/utfcpp-4.0.6-h54c0426_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/vtk-9.3.1-qt_py312h8d5bf7a_209.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/vtk-base-9.3.1-qt_py312h679c1d7_209.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/vtk-io-ffmpeg-9.3.1-qt_py312hf99a90b_209.conda + - conda: https://prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/wslink-2.3.3-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/x264-1!164.3095-h57fd34a_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/x265-3.5-hbc6ce65_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/xerces-c-3.3.0-hd62221f_0.conda + - conda: https://prefix.dev/conda-forge/noarch/xlrd-2.0.1-pyhd8ed1ab_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/xlutils-2.0.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/xlwt-1.3.0-py_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libice-1.1.2-h5505292_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libsm-1.2.6-h5505292_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libx11-1.8.12-h6a5fb8c_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxau-1.0.12-h5505292_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxdmcp-1.1.5-hd74edd7_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxext-1.3.6-hd74edd7_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxfixes-6.0.1-hd74edd7_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxrender-0.9.12-h5505292_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/yaml-cpp-0.8.0-h13dd4ca_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/yarl-1.18.3-py312h998013c_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/zlib-1.3.1-h8359307_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/zstandard-0.23.0-py312hea69d52_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/zstd-1.5.7-h6491c7d_2.conda + - conda: . + build: he8ea13f_0 + win-64: + - conda: https://prefix.dev/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/aiohttp-3.11.16-py312h31fea79_0.conda + - conda: https://prefix.dev/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/aom-3.9.1-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/win-64/arpack-3.9.1-nompi_h034da5f_101.conda + - conda: https://prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + - conda: https://prefix.dev/conda-forge/win-64/blas-2.131-openblas.conda + - conda: https://prefix.dev/conda-forge/win-64/blas-devel-3.9.0-31_hc0f8095_openblas.conda + - conda: https://prefix.dev/conda-forge/noarch/blinker-1.9.0-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/win-64/blosc-1.21.6-h85f69ea_0.conda + - conda: https://prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda + - conda: https://prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda + - conda: https://prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py312h275cf98_2.conda + - conda: https://prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda + - conda: https://prefix.dev/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda + - conda: https://prefix.dev/conda-forge/win-64/cairo-1.18.4-h5782bbf_0.conda + - conda: https://prefix.dev/conda-forge/win-64/calculix-2.22-h27aae45_0.conda + - conda: https://prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/cffi-1.17.1-py312h4389bb4_0.conda + - conda: https://prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/coin3d-4.0.3-h192c3d0_2.conda + - conda: https://prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/contourpy-1.3.1-py312hd5eb7cc_0.conda + - conda: https://prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/dav1d-1.2.1-hcfcfb64_0.conda + - conda: https://prefix.dev/conda-forge/win-64/debugpy-1.8.13-py312h275cf98_0.conda + - conda: https://prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/double-conversion-3.3.1-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/win-64/eigen-3.4.0-h91493d7_0.conda + - conda: https://prefix.dev/conda-forge/win-64/expat-2.7.0-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/win-64/ffmpeg-7.1.1-gpl_h34ab625_703.conda + - conda: https://prefix.dev/conda-forge/win-64/flann-1.9.2-h8958603_3.conda + - conda: https://prefix.dev/conda-forge/win-64/fltk-1.3.9-h27fc217_1.conda + - conda: https://prefix.dev/conda-forge/win-64/fmt-11.1.4-h5f12afc_1.conda + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda + - conda: https://prefix.dev/conda-forge/win-64/fontconfig-2.15.0-h765892d_1.conda + - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/fonttools-4.56.0-py312h31fea79_0.conda + - conda: https://prefix.dev/conda-forge/win-64/freeglut-3.2.2-he0c23c2_3.conda + - conda: https://prefix.dev/conda-forge/win-64/freeimage-3.18.0-h8310ca0_22.conda + - conda: https://prefix.dev/conda-forge/win-64/freetype-2.13.3-h0b5ce68_0.conda + - conda: https://prefix.dev/conda-forge/win-64/fribidi-1.0.10-h8d14728_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/frozenlist-1.5.0-py312h31fea79_1.conda + - conda: https://prefix.dev/conda-forge/win-64/gdk-pixbuf-2.42.12-hed59a49_0.conda + - conda: https://prefix.dev/conda-forge/win-64/getopt-win32-0.1-hcfcfb64_1.conda + - conda: https://prefix.dev/conda-forge/win-64/gl2ps-1.4.2-had7236b_1.conda + - conda: https://prefix.dev/conda-forge/win-64/glew-2.1.0-h39d44d4_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/gmsh-4.13.1-h9b07e6e_1.conda + - conda: https://prefix.dev/conda-forge/win-64/graphite2-1.3.13-h63175ca_1003.conda + - conda: https://prefix.dev/conda-forge/win-64/graphviz-12.2.1-hf40819d_1.conda + - conda: https://prefix.dev/conda-forge/win-64/gts-0.7.6-h6b5321d_4.conda + - conda: https://prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/harfbuzz-10.4.0-h9e37d49_0.conda + - conda: https://prefix.dev/conda-forge/win-64/hdf4-4.2.15-h5557f11_7.conda + - conda: https://prefix.dev/conda-forge/win-64/hdf5-1.14.4-nompi_hd5d9e70_105.conda + - conda: https://prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/icu-75.1-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/imath-3.1.12-hbb528cf_0.conda + - conda: https://prefix.dev/conda-forge/win-64/jasper-4.2.5-h99a1cce_0.conda + - conda: https://prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/jsoncpp-1.9.6-hda1637e_1.conda + - conda: https://prefix.dev/conda-forge/win-64/jxrlib-1.1-hcfcfb64_3.conda + - conda: https://prefix.dev/conda-forge/win-64/khronos-opencl-icd-loader-2024.10.24-h2466b09_1.conda + - conda: https://prefix.dev/conda-forge/win-64/kiwisolver-1.4.8-py312hc790b64_0.conda + - conda: https://prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda + - conda: https://prefix.dev/conda-forge/win-64/lame-3.100-hcfcfb64_1003.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/lark-1.2.2-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda + - conda: https://prefix.dev/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/libabseil-20240722.0-cxx17_h4eb7d71_4.conda + - conda: https://prefix.dev/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libasprintf-0.22.5-h5728263_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libblas-3.9.0-31_h11dc60a_openblas.conda + - conda: https://prefix.dev/conda-forge/win-64/libboost-1.86.0-hb0986bb_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libboost-python-1.86.0-py312hbaa7e33_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda + - conda: https://prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda + - conda: https://prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda + - conda: https://prefix.dev/conda-forge/win-64/libcblas-3.9.0-31_h9bd4c3b_openblas.conda + - conda: https://prefix.dev/conda-forge/win-64/libclang13-20.1.1-default_ha5278ca_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libdeflate-1.23-h9062f6e_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda + - conda: https://prefix.dev/conda-forge/win-64/libgd-2.3.3-h7208af6_11.conda + - conda: https://prefix.dev/conda-forge/win-64/libgettextpo-0.22.5-h5728263_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libglib-2.84.0-h7025463_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libhwloc-2.11.2-default_hc8275d1_1000.conda + - conda: https://prefix.dev/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda + - conda: https://prefix.dev/conda-forge/win-64/libintl-0.22.5-h5728263_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda + - conda: https://prefix.dev/conda-forge/win-64/liblapack-3.9.0-31_h2526c6b_openblas.conda + - conda: https://prefix.dev/conda-forge/win-64/liblapacke-3.9.0-31_h1d0e49f_openblas.conda + - conda: https://prefix.dev/conda-forge/win-64/liblzma-5.6.4-h2466b09_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libnetcdf-4.9.2-nompi_h5bdc103_116.conda + - conda: https://prefix.dev/conda-forge/win-64/libogg-1.3.5-h2466b09_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenblas-0.3.29-pthreads_head3c61_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libopencv-4.10.0-qt6_py312h50f3c70_615.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-2024.6.0-hfe1841e_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-auto-batch-plugin-2024.6.0-h04f32e0_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-auto-plugin-2024.6.0-h04f32e0_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-hetero-plugin-2024.6.0-h372dad0_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-intel-cpu-plugin-2024.6.0-hfe1841e_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-intel-gpu-plugin-2024.6.0-hfe1841e_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-ir-frontend-2024.6.0-h372dad0_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-onnx-frontend-2024.6.0-h6e6c283_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-paddle-frontend-2024.6.0-h6e6c283_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-pytorch-frontend-2024.6.0-he0c23c2_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-tensorflow-frontend-2024.6.0-ha83d810_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-tensorflow-lite-frontend-2024.6.0-he0c23c2_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopus-1.3.1-h8ffe710_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/libpng-1.6.47-had7236b_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libprotobuf-5.28.3-h8309712_1.conda + - conda: https://prefix.dev/conda-forge/win-64/libraw-0.21.3-h0f5434b_0.conda + - conda: https://prefix.dev/conda-forge/win-64/librsvg-2.58.4-h5ce5fed_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda + - conda: https://prefix.dev/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libtheora-1.1.1-hc70643c_1006.conda + - conda: https://prefix.dev/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libusb-1.0.28-h2466b09_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libvorbis-1.3.7-h0e60522_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libxcb-1.16-h013a479_1.conda + - conda: https://prefix.dev/conda-forge/win-64/libxml2-2.13.7-he286e8c_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libxslt-1.1.39-h3df6e99_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libzip-1.11.2-h3135430_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda + - conda: https://prefix.dev/conda-forge/win-64/loguru-0.7.2-py312h2e8e312_2.conda + - conda: https://prefix.dev/conda-forge/win-64/lxml-5.3.1-py312h53bce91_0.conda + - conda: https://prefix.dev/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda + - conda: https://prefix.dev/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py312h31fea79_1.conda + - conda: https://prefix.dev/conda-forge/win-64/matplotlib-base-3.10.1-py312h90004f6_0.conda + - conda: https://prefix.dev/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/msgpack-python-1.1.0-py312hd5eb7cc_0.conda + - conda: https://prefix.dev/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/multidict-6.2.0-py312h31fea79_0.conda + - conda: https://prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/nine-1.1.0-py_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/nlohmann_json-3.11.3-he0c23c2_1.conda + - conda: https://prefix.dev/conda-forge/noarch/noqt5-1.0-hd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/numpy-2.2.4-py312h3150e54_0.conda + - conda: https://prefix.dev/conda-forge/win-64/occt-7.8.1-all_hae6dad1_203.conda + - conda: https://prefix.dev/conda-forge/noarch/olefile-0.47-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/openblas-0.3.29-pthreads_h4a7f399_0.conda + - conda: https://prefix.dev/conda-forge/win-64/opencamlib-2023.01.11-py312hc31f9ae_7.conda + - conda: https://prefix.dev/conda-forge/win-64/opencl-headers-2024.10.24-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/win-64/opencv-4.10.0-qt6_py312h84150c2_615.conda + - conda: https://prefix.dev/conda-forge/win-64/openexr-3.3.3-h1acc403_0.conda + - conda: https://prefix.dev/conda-forge/win-64/openh264-2.6.0-hb17fa0b_0.conda + - conda: https://prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda + - conda: https://prefix.dev/conda-forge/win-64/openssl-3.4.1-ha4e3fda_0.conda + - conda: https://prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda + - conda: https://prefix.dev/conda-forge/win-64/pandas-2.2.3-py312h72972c8_1.conda + - conda: https://prefix.dev/conda-forge/win-64/pango-1.56.3-h286b592_0.conda + - conda: https://prefix.dev/conda-forge/win-64/pcl-1.15.0-hcec6b29_0.conda + - conda: https://prefix.dev/conda-forge/win-64/pcre2-10.44-h3d7b363_2.conda + - conda: https://prefix.dev/conda-forge/win-64/pillow-10.4.0-py312h381445a_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + - conda: https://prefix.dev/conda-forge/win-64/pivy-0.6.9-py312qt6h8483413_2.conda + - conda: https://prefix.dev/conda-forge/win-64/pixman-0.44.2-had0cd8c_0.conda + - conda: https://prefix.dev/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda + - conda: https://prefix.dev/conda-forge/win-64/proj-9.5.1-h4f671f6_0.conda + - conda: https://prefix.dev/conda-forge/win-64/propcache-0.2.1-py312h31fea79_1.conda + - conda: https://prefix.dev/conda-forge/win-64/pthread-stubs-0.4-hcd874cb_1001.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/pthreads-win32-2.9.1-h2466b09_4.conda + - conda: https://prefix.dev/conda-forge/win-64/pugixml-1.14-h63175ca_0.conda + - conda: https://prefix.dev/conda-forge/win-64/py-opencv-4.10.0-qt6_py312he23ae38_615.conda + - conda: https://prefix.dev/conda-forge/noarch/pycollada-0.9-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/pyside6-6.8.2-py312h2ee7485_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda + - conda: https://prefix.dev/conda-forge/win-64/python-3.12.9-h3f84c4b_1_cpython.conda + - conda: https://prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + - conda: https://prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/python_abi-3.12-6_cp312.conda + - conda: https://prefix.dev/conda-forge/win-64/pythonocc-core-7.8.1.1-all_h86126fc_200.conda + - conda: https://prefix.dev/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py312h31fea79_2.conda + - conda: https://prefix.dev/conda-forge/win-64/qhull-2020.2-hc790b64_5.conda + - conda: https://prefix.dev/conda-forge/win-64/qt6-main-6.8.2-h1259614_0.conda + - conda: https://prefix.dev/conda-forge/win-64/rapidjson-1.1.0.post20240409-he0c23c2_2.conda + - conda: https://prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/scipy-1.15.2-py312h451d5c4_0.conda + - conda: https://prefix.dev/conda-forge/win-64/sdl2-2.32.50-hecf2515_1.conda + - conda: https://prefix.dev/conda-forge/win-64/sdl3-3.2.10-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/smesh-9.9.0.0-hdbf5530_13.conda + - conda: https://prefix.dev/conda-forge/win-64/snappy-1.2.1-h500f7fa_1.conda + - conda: https://prefix.dev/conda-forge/win-64/soqt6-1.6.3-h796eb14_0.conda + - conda: https://prefix.dev/conda-forge/win-64/sqlite-3.49.1-h2466b09_2.conda + - conda: https://prefix.dev/conda-forge/noarch/svgwrite-1.4.3-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/svt-av1-3.0.2-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/noarch/sympy-1.13.3-pyh04b8f61_5.conda + - conda: https://prefix.dev/conda-forge/win-64/tbb-2022.1.0-ha82c486_0.conda + - conda: https://prefix.dev/conda-forge/win-64/tbb-devel-2022.1.0-h47441b3_0.conda + - conda: https://prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda + - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + - conda: https://prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda + - conda: https://prefix.dev/conda-forge/win-64/unicodedata2-16.0.0-py312h4389bb4_0.conda + - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/utfcpp-4.0.6-hc1507ef_0.conda + - conda: https://prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_26.conda + - conda: https://prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda + - conda: https://prefix.dev/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda + - conda: https://prefix.dev/conda-forge/win-64/vtk-9.3.1-qt_py312h88e836f_209.conda + - conda: https://prefix.dev/conda-forge/win-64/vtk-base-9.3.1-qt_py312h44e7938_209.conda + - conda: https://prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/win32_setctime-1.2.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda + - conda: https://prefix.dev/conda-forge/noarch/wslink-2.3.3-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/x264-1!164.3095-h8ffe710_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/x265-3.5-h2d74725_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/xerces-c-3.3.0-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/noarch/xlrd-2.0.1-pyhd8ed1ab_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/xlutils-2.0.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/xlwt-1.3.0-py_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/xorg-fixesproto-5.0-hcd874cb_1002.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/xorg-kbproto-1.0.7-hcd874cb_1002.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/xorg-libice-1.1.1-hcd874cb_0.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libsm-1.2.4-hcd874cb_0.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libx11-1.8.9-h0076a8d_1.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libxau-1.0.11-hcd874cb_0.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.3-hcd874cb_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/xorg-libxext-1.3.4-hcd874cb_2.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libxfixes-5.0.3-hcd874cb_1004.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/xorg-libxpm-3.5.17-hcd874cb_0.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libxrender-0.9.11-hcd874cb_0.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libxt-1.3.0-hcd874cb_1.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-renderproto-0.11.1-hcd874cb_1002.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/xorg-xextproto-7.3.0-hcd874cb_1003.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-xproto-7.0.31-hcd874cb_1007.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/yaml-cpp-0.8.0-h63175ca_0.conda + - conda: https://prefix.dev/conda-forge/win-64/yarl-1.18.3-py312h31fea79_1.conda + - conda: https://prefix.dev/conda-forge/win-64/zlib-1.3.1-h2466b09_2.conda + - conda: https://prefix.dev/conda-forge/win-64/zstandard-0.23.0-py312h4389bb4_1.conda + - conda: https://prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda + - conda: . + build: h3c70cbc_0 + package: + channels: + - url: https://prefix.dev/pixi-build-backends/ + - url: https://prefix.dev/conda-forge/ + packages: + linux-64: + - conda: https://prefix.dev/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + - conda: https://prefix.dev/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/coreutils-9.5-hd590300_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + - conda: https://prefix.dev/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgomp-14.2.0-h767d61c_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.6.4-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/python-3.12.9-h9e4cc4f_1_cpython.conda + - conda: https://prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + linux-aarch64: + - conda: https://prefix.dev/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/bzip2-1.0.8-h68df207_7.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/ca-certificates-2025.1.31-hcefe29a_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/coreutils-9.5-h31becfc_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.43-h80caac9_4.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libexpat-2.7.0-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libffi-3.4.6-he21f813_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-14.2.0-he277a41_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-ng-14.2.0-he9431aa_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.6.4-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libsqlite-3.49.1-h5eb1b54_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/ncurses-6.5-ha32ae93_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/openssl-3.4.1-hd08dc88_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/python-3.12.9-h1683364_1_cpython.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/readline-8.2-h8382b9d_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda + - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + osx-64: + - conda: https://prefix.dev/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda + - conda: https://prefix.dev/conda-forge/osx-64/ca-certificates-2025.1.31-h8857fd0_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/coreutils-9.5-h10d778d_0.conda + - conda: https://prefix.dev/conda-forge/noarch/dmgbuild-1.6.5-pyh534df25_0.conda + - conda: https://prefix.dev/conda-forge/noarch/ds_store-1.3.1-pyhd8ed1ab_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/gettext-0.23.1-hd385c8e_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/gettext-tools-0.23.1-h27064b9_0.conda + - conda: https://prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libasprintf-0.23.1-h27064b9_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libasprintf-devel-0.23.1-h27064b9_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libcxx-20.1.2-hf95d169_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libexpat-2.7.0-h240833e_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libffi-3.4.6-h281671d_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/libgettextpo-0.23.1-h27064b9_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libgettextpo-devel-0.23.1-h27064b9_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libiconv-1.18-h4b5e92a_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/libintl-0.23.1-h27064b9_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libintl-devel-0.23.1-h27064b9_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/liblzma-5.6.4-hd471939_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libsqlite-3.49.1-hdb6dae5_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda + - conda: https://prefix.dev/conda-forge/noarch/mac_alias-2.2.2-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/openssl-3.4.1-hc426f3f_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/python-3.12.9-h9ccd52b_1_cpython.conda + - conda: https://prefix.dev/conda-forge/osx-64/readline-8.2-h7cca4af_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/sed-4.7-h3efe00b_1000.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda + - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + - conda: https://prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + osx-arm64: + - conda: https://prefix.dev/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/ca-certificates-2025.1.31-hf0a4a13_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/coreutils-9.5-h93a5062_0.conda + - conda: https://prefix.dev/conda-forge/noarch/dmgbuild-1.6.5-pyh534df25_0.conda + - conda: https://prefix.dev/conda-forge/noarch/ds_store-1.3.1-pyhd8ed1ab_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/gettext-0.23.1-h3dcc1bd_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/gettext-tools-0.23.1-h493aca8_0.conda + - conda: https://prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libasprintf-0.23.1-h493aca8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libasprintf-devel-0.23.1-h493aca8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libcxx-20.1.2-ha82da77_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libexpat-2.7.0-h286801f_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libffi-3.4.6-h1da3d7d_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libgettextpo-0.23.1-h493aca8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libgettextpo-devel-0.23.1-h493aca8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libiconv-1.18-hfe07756_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libintl-0.23.1-h493aca8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libintl-devel-0.23.1-h493aca8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/liblzma-5.6.4-h39f12f2_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libsqlite-3.49.1-h3f77e49_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda + - conda: https://prefix.dev/conda-forge/noarch/mac_alias-2.2.2-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/openssl-3.4.1-h81ee809_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/python-3.12.9-hc22306f_1_cpython.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/sed-4.8-hc6a1b29_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda + - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + - conda: https://prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + win-64: + - conda: https://prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda + - conda: https://prefix.dev/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda + - conda: https://prefix.dev/conda-forge/win-64/git-2.49.0-h57928b3_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda + - conda: https://prefix.dev/conda-forge/win-64/liblzma-5.6.4-h2466b09_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda + - conda: https://prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda + - conda: https://prefix.dev/conda-forge/win-64/openssl-3.4.1-ha4e3fda_0.conda + - conda: https://prefix.dev/conda-forge/win-64/python-3.12.9-h3f84c4b_1_cpython.conda + - conda: https://prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda + - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + - conda: https://prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda + - conda: https://prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_26.conda + - conda: https://prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda +packages: +- conda: https://prefix.dev/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 + md5: d7c89558ba9fa0495403155b64376d81 + license: None + size: 2562 + timestamp: 1578324546067 +- conda: https://prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + build_number: 16 + sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 + md5: 73aaf86a425cc6e73fcf236a5a46396d + depends: + - _libgcc_mutex 0.1 conda_forge + - libgomp >=7.5.0 + constrains: + - openmp_impl 9999 + license: BSD-3-Clause + license_family: BSD + size: 23621 + timestamp: 1650670423406 +- conda: https://prefix.dev/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 + build_number: 16 + sha256: 3702bef2f0a4d38bd8288bbe54aace623602a1343c2cfbefd3fa188e015bebf0 + md5: 6168d71addc746e8f2b8d57dfd2edcea + depends: + - libgomp >=7.5.0 + constrains: + - openmp_impl 9999 + license: BSD-3-Clause + license_family: BSD + size: 23712 + timestamp: 1650670790230 +- conda: https://prefix.dev/conda-forge/noarch/adwaita-icon-theme-48.0-unix_0.conda + sha256: 63e532087119112c81d81c067e00d1fd49ff1b842ffea4469b78b505be63c042 + md5: 11539f9e49efaa281da735ded100b152 + depends: + - __unix + - hicolor-icon-theme + - librsvg + license: LGPL-3.0-or-later OR CC-BY-SA-3.0 + license_family: LGPL + size: 610380 + timestamp: 1741999835753 +- conda: https://prefix.dev/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda + sha256: 7842ddc678e77868ba7b92a726b437575b23aaec293bca0d40826f1026d90e27 + md5: 18fd895e0e775622906cdabfc3cf0fb4 + depends: + - python >=3.9 + license: PSF-2.0 + license_family: PSF + size: 19750 + timestamp: 1741775303303 +- conda: https://prefix.dev/conda-forge/linux-64/aiohttp-3.11.16-py312h178313f_0.conda + sha256: 7025c06b2c7e84968f7f3f79b7af22b89b94bdc368bac175af3549c029d02d49 + md5: d55fd122b33904aae9fc0d417448bbbf + depends: + - __glibc >=2.17,<3.0.a0 + - aiohappyeyeballs >=2.3.0 + - aiosignal >=1.1.2 + - attrs >=17.3.0 + - frozenlist >=1.1.1 + - libgcc >=13 + - multidict >=4.5,<7.0 + - propcache >=0.2.0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - yarl >=1.17.0,<2.0 + license: MIT AND Apache-2.0 + license_family: Apache + size: 918771 + timestamp: 1743598393863 +- conda: https://prefix.dev/conda-forge/linux-aarch64/aiohttp-3.11.16-py312hcc812fe_0.conda + sha256: d31d4444ef6043c3022322adf12d5d14a9cb83906f129c4c03f403f11f92d49d + md5: 518741425793a4f468a2f2af9b623ade + depends: + - aiohappyeyeballs >=2.3.0 + - aiosignal >=1.1.2 + - attrs >=17.3.0 + - frozenlist >=1.1.1 + - libgcc >=13 + - multidict >=4.5,<7.0 + - propcache >=0.2.0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - yarl >=1.17.0,<2.0 + license: MIT AND Apache-2.0 + license_family: Apache + size: 908003 + timestamp: 1743597172366 +- conda: https://prefix.dev/conda-forge/osx-64/aiohttp-3.11.16-py312h3520af0_0.conda + sha256: 3236d4ed75719c1fdecfd47fc19989dc4165a8b594c3ab31339d06152aa49184 + md5: 07d082e73e3a36dea91268b02c20e014 + depends: + - __osx >=10.13 + - aiohappyeyeballs >=2.3.0 + - aiosignal >=1.1.2 + - attrs >=17.3.0 + - frozenlist >=1.1.1 + - multidict >=4.5,<7.0 + - propcache >=0.2.0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - yarl >=1.17.0,<2.0 + license: MIT AND Apache-2.0 + license_family: Apache + size: 888950 + timestamp: 1743597257383 +- conda: https://prefix.dev/conda-forge/osx-arm64/aiohttp-3.11.16-py312h998013c_0.conda + sha256: 60b53e2cbfd816c14d01b58b8370bbfb27376617540a6d0d7c49664a0eb12e26 + md5: 3a87a69c153ca9c886d9d9498a81a6f0 + depends: + - __osx >=11.0 + - aiohappyeyeballs >=2.3.0 + - aiosignal >=1.1.2 + - attrs >=17.3.0 + - frozenlist >=1.1.1 + - multidict >=4.5,<7.0 + - propcache >=0.2.0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - yarl >=1.17.0,<2.0 + license: MIT AND Apache-2.0 + license_family: Apache + size: 892111 + timestamp: 1743597263444 +- conda: https://prefix.dev/conda-forge/win-64/aiohttp-3.11.16-py312h31fea79_0.conda + sha256: 3c5a820e128f9ee99e3f922830937976003142687d571a0880abcb3526ef1e5b + md5: 763568ef2c0ffeb48f15f2e49c5d686f + depends: + - aiohappyeyeballs >=2.3.0 + - aiosignal >=1.1.2 + - attrs >=17.3.0 + - frozenlist >=1.1.1 + - multidict >=4.5,<7.0 + - propcache >=0.2.0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - yarl >=1.17.0,<2.0 + license: MIT AND Apache-2.0 + license_family: Apache + size: 860744 + timestamp: 1743597514608 +- conda: https://prefix.dev/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda + sha256: 7de8ced1918bbdadecf8e1c1c68237fe5709c097bd9e0d254f4cad118f4345d0 + md5: 1a3981115a398535dbe3f6d5faae3d36 + depends: + - frozenlist >=1.1.0 + - python >=3.9 + license: Apache-2.0 + license_family: APACHE + size: 13229 + timestamp: 1734342253061 +- conda: https://prefix.dev/conda-forge/linux-64/alsa-lib-1.2.13-hb9d3cd8_0.conda + sha256: f507b58f77eabc0cc133723cb7fc45c053d551f234df85e70fb3ede082b0cd53 + md5: ae1370588aa6a5157c34c73e9bbb36a0 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: LGPL-2.1-or-later + license_family: GPL + size: 560238 + timestamp: 1731489643707 +- conda: https://prefix.dev/conda-forge/linux-aarch64/alsa-lib-1.2.13-h86ecc28_0.conda + sha256: 4141180b0304559fefa8ca66f1cc217a1d957b03aa959f955daf33718162042f + md5: f643bb02c4bbcfe7de161a8ca5df530b + depends: + - libgcc >=13 + license: LGPL-2.1-or-later + license_family: GPL + size: 591318 + timestamp: 1731489774660 +- conda: https://prefix.dev/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda + sha256: b08ef033817b5f9f76ce62dfcac7694e7b6b4006420372de22494503decac855 + md5: 346722a0be40f6edc53f12640d301338 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 2706396 + timestamp: 1718551242397 +- conda: https://prefix.dev/conda-forge/linux-aarch64/aom-3.9.1-hcccb83c_0.conda + sha256: ac438ce5d3d3673a9188b535fc7cda413b479f0d52536aeeac1bd82faa656ea0 + md5: cc744ac4efe5bcaa8cca51ff5b850df0 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 3250813 + timestamp: 1718551360260 +- conda: https://prefix.dev/conda-forge/osx-64/aom-3.9.1-hf036a51_0.conda + sha256: 3032f2f55d6eceb10d53217c2a7f43e1eac83603d91e21ce502e8179e63a75f5 + md5: 3f17bc32cb7fcb2b4bf3d8d37f656eb8 + depends: + - __osx >=10.13 + - libcxx >=16 + license: BSD-2-Clause + license_family: BSD + size: 2749186 + timestamp: 1718551450314 +- conda: https://prefix.dev/conda-forge/osx-arm64/aom-3.9.1-h7bae524_0.conda + sha256: ec238f18ce8140485645252351a0eca9ef4f7a1c568a420f240a585229bc12ef + md5: 7adba36492a1bb22d98ffffe4f6fc6de + depends: + - __osx >=11.0 + - libcxx >=16 + license: BSD-2-Clause + license_family: BSD + size: 2235747 + timestamp: 1718551382432 +- conda: https://prefix.dev/conda-forge/win-64/aom-3.9.1-he0c23c2_0.conda + sha256: 0524d0c0b61dacd0c22ac7a8067f977b1d52380210933b04141f5099c5b6fec7 + md5: 3d7c14285d3eb3239a76ff79063f27a5 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 1958151 + timestamp: 1718551737234 +- conda: https://prefix.dev/conda-forge/linux-64/arpack-3.9.1-nompi_hf03ea27_102.conda + sha256: 6d71343420292132be0192ddd962b308f7b8a0a0630d1db83fb9d65e8167c6ce + md5: e09af397232ef1070e0b6cbf4c64aacb + depends: + - __glibc >=2.17,<3.0.a0 + - libblas >=3.9.0,<4.0a0 + - libgcc >=13 + - libgfortran + - libgfortran5 >=13.3.0 + - liblapack >=3.9.0,<4.0a0 + - libstdcxx >=13 + license: BSD-3-Clause + license_family: BSD + size: 130412 + timestamp: 1736083992796 +- conda: https://prefix.dev/conda-forge/linux-aarch64/arpack-3.9.1-nompi_h6fc4d3a_102.conda + sha256: bc95bdc29ce23bb575c8b30b66c55d2b1a1d381928dd83d090a24cdb5770679b + md5: ebb4856a15ce86a9aecb365f6fe8e3e0 + depends: + - libblas >=3.9.0,<4.0a0 + - libgcc >=13 + - libgfortran + - libgfortran5 >=13.3.0 + - liblapack >=3.9.0,<4.0a0 + - libstdcxx >=13 + license: BSD-3-Clause + license_family: BSD + size: 119922 + timestamp: 1736084016460 +- conda: https://prefix.dev/conda-forge/osx-64/arpack-3.9.1-nompi_hdfe9103_102.conda + sha256: fbb8ab189e4700bbb856abdee6f71172628004c009cc276e44ffa3fdd2599985 + md5: 4fbf1ddfe3784263c01b7c33e6a6a3f7 + depends: + - __osx >=10.13 + - libblas >=3.9.0,<4.0a0 + - libcxx >=18 + - libgfortran 5.* + - libgfortran5 >=13.2.0 + - liblapack >=3.9.0,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 125644 + timestamp: 1736084029191 +- conda: https://prefix.dev/conda-forge/osx-arm64/arpack-3.9.1-nompi_h1f29f7c_102.conda + sha256: 314fb780a811d1bcd31b34266016d1d49e754e37a476f8b18d8ea81599865444 + md5: 7da333ca69131caf002baf360f5de7f9 + depends: + - __osx >=11.0 + - libblas >=3.9.0,<4.0a0 + - libcxx >=18 + - libgfortran 5.* + - libgfortran5 >=13.2.0 + - liblapack >=3.9.0,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 120348 + timestamp: 1736084183877 +- conda: https://prefix.dev/conda-forge/win-64/arpack-3.9.1-nompi_h034da5f_101.conda + sha256: 5f06659c9c95ff3b321c7279b79ab77fe0e6179090479d099a1d6d84436aa9d3 + md5: fe3f7ffec3476c29ce060ae655550fa4 + depends: + - libblas >=3.9.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - m2w64-gcc-libs + - m2w64-gcc-libs-core + license: BSD-3-Clause + license_family: BSD + size: 164157 + timestamp: 1717419659282 +- conda: https://prefix.dev/conda-forge/linux-64/at-spi2-atk-2.38.0-h0630a04_3.tar.bz2 + sha256: 26ab9386e80bf196e51ebe005da77d57decf6d989b4f34d96130560bc133479c + md5: 6b889f174df1e0f816276ae69281af4d + depends: + - at-spi2-core >=2.40.0,<2.41.0a0 + - atk-1.0 >=2.36.0 + - dbus >=1.13.6,<2.0a0 + - libgcc-ng >=9.3.0 + - libglib >=2.68.1,<3.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 339899 + timestamp: 1619122953439 +- conda: https://prefix.dev/conda-forge/linux-aarch64/at-spi2-atk-2.38.0-h1f2db35_3.tar.bz2 + sha256: c2c2c998d49c061e390537f929e77ce6b023ef22b51a0f55692d6df7327f3358 + md5: 4ea9d4634f3b054549be5e414291801e + depends: + - at-spi2-core >=2.40.0,<2.41.0a0 + - atk-1.0 >=2.36.0 + - dbus >=1.13.6,<2.0a0 + - libgcc-ng >=9.3.0 + - libglib >=2.68.1,<3.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 322172 + timestamp: 1619123713021 +- conda: https://prefix.dev/conda-forge/linux-64/at-spi2-core-2.40.3-h0630a04_0.tar.bz2 + sha256: c4f9b66bd94c40d8f1ce1fad2d8b46534bdefda0c86e3337b28f6c25779f258d + md5: 8cb2fc4cd6cc63f1369cfa318f581cc3 + depends: + - dbus >=1.13.6,<2.0a0 + - libgcc-ng >=9.3.0 + - libglib >=2.68.3,<3.0a0 + - xorg-libx11 + - xorg-libxi + - xorg-libxtst + license: LGPL-2.1-or-later + license_family: LGPL + size: 658390 + timestamp: 1625848454791 +- conda: https://prefix.dev/conda-forge/linux-aarch64/at-spi2-core-2.40.3-h1f2db35_0.tar.bz2 + sha256: cd48de9674a20133e70a643476accc1a63360c921ab49477638364877937a40d + md5: a12602a94ee402b57063ef74e82016c0 + depends: + - dbus >=1.13.6,<2.0a0 + - libgcc-ng >=9.3.0 + - libglib >=2.68.3,<3.0a0 + - xorg-libx11 + - xorg-libxi + - xorg-libxtst + license: LGPL-2.1-or-later + license_family: LGPL + size: 622407 + timestamp: 1625848355776 +- conda: https://prefix.dev/conda-forge/linux-64/atk-1.0-2.38.0-h04ea711_2.conda + sha256: df682395d05050cd1222740a42a551281210726a67447e5258968dd55854302e + md5: f730d54ba9cd543666d7220c9f7ed563 + depends: + - libgcc-ng >=12 + - libglib >=2.80.0,<3.0a0 + - libstdcxx-ng >=12 + constrains: + - atk-1.0 2.38.0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 355900 + timestamp: 1713896169874 +- conda: https://prefix.dev/conda-forge/linux-aarch64/atk-1.0-2.38.0-hedc4a1f_2.conda + sha256: 69f70048a1a915be7b8ad5d2cbb7bf020baa989b5506e45a676ef4ef5106c4f0 + md5: 9308557e2328f944bd5809c5630761af + depends: + - libgcc-ng >=12 + - libglib >=2.80.0,<3.0a0 + - libstdcxx-ng >=12 + constrains: + - atk-1.0 2.38.0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 358327 + timestamp: 1713898303194 +- conda: https://prefix.dev/conda-forge/osx-64/atk-1.0-2.38.0-h4bec284_2.conda + sha256: a5972a943764e46478c966b26be61de70dcd7d0cfda4bd0b0c46916ae32e0492 + md5: d9684247c943d492d9aac8687bc5db77 + depends: + - __osx >=10.9 + - libcxx >=16 + - libglib >=2.80.0,<3.0a0 + - libintl >=0.22.5,<1.0a0 + constrains: + - atk-1.0 2.38.0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 349989 + timestamp: 1713896423623 +- conda: https://prefix.dev/conda-forge/osx-arm64/atk-1.0-2.38.0-hd03087b_2.conda + sha256: b0747f9b1bc03d1932b4d8c586f39a35ac97e7e72fe6e63f2b2a2472d466f3c1 + md5: 57301986d02d30d6805fdce6c99074ee + depends: + - __osx >=11.0 + - libcxx >=16 + - libglib >=2.80.0,<3.0a0 + - libintl >=0.22.5,<1.0a0 + constrains: + - atk-1.0 2.38.0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 347530 + timestamp: 1713896411580 +- conda: https://prefix.dev/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2 + sha256: 82c13b1772c21fc4a17441734de471d3aabf82b61db9b11f4a1bd04a9c4ac324 + md5: d9c69a24ad678ffce24c6543a0176b00 + depends: + - libgcc-ng >=12 + license: GPL-2.0-or-later + license_family: GPL + size: 71042 + timestamp: 1660065501192 +- conda: https://prefix.dev/conda-forge/linux-aarch64/attr-2.5.1-h4e544f5_1.tar.bz2 + sha256: 2c793b48e835a8fac93f1664c706442972a0206963bf8ca202e83f7f4d29a7d7 + md5: 1ef6c06fec1b6f5ee99ffe2152e53568 + depends: + - libgcc-ng >=12 + license: GPL-2.0-or-later + license_family: GPL + size: 74992 + timestamp: 1660065534958 +- conda: https://prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + sha256: 99c53ffbcb5dc58084faf18587b215f9ac8ced36bbfb55fa807c00967e419019 + md5: a10d11958cadc13fdb43df75f8b1903f + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 57181 + timestamp: 1741918625732 +- conda: https://prefix.dev/conda-forge/linux-64/blas-2.131-openblas.conda + build_number: 31 + sha256: 0e00859932fd9ddf8f9012bf1284d531deb0622adfa4c3387c9e955cf8cc7b58 + md5: 38b2ec894c69bb4be0e66d2ef7fc60bf + depends: + - blas-devel 3.9.0 31*_openblas + license: BSD-3-Clause + license_family: BSD + size: 16653 + timestamp: 1740088126456 +- conda: https://prefix.dev/conda-forge/linux-aarch64/blas-2.131-openblas.conda + build_number: 31 + sha256: 3f1f32d659f0460a78cfda5cd80302cf3329789d9b1880f940da5e5a5073283d + md5: 51c5f346e1ebee750f76066490059df9 + depends: + - blas-devel 3.9.0 31*_openblas + license: BSD-3-Clause + license_family: BSD + size: 16822 + timestamp: 1740087958795 +- conda: https://prefix.dev/conda-forge/osx-64/blas-2.131-accelerate.conda + build_number: 31 + sha256: fa30113da02aa3832fcdf05e1116d417b984ee1b6530624400d42a8d44cde952 + md5: ca1c40641598a81b8b27bcf80d182897 + depends: + - blas-devel 3.9.0 31*_accelerate + license: BSD-3-Clause + license_family: BSD + size: 17081 + timestamp: 1740088277353 +- conda: https://prefix.dev/conda-forge/osx-arm64/blas-2.131-accelerate.conda + build_number: 31 + sha256: 29e20cbd638c49905f30711088d25095f8f5fd86a71f5d48221320f76f62c1a8 + md5: 3ab1676b90db82c2bb2d2d78845ccea0 + depends: + - blas-devel 3.9.0 31*_accelerate + license: BSD-3-Clause + license_family: BSD + size: 17219 + timestamp: 1740088329291 +- conda: https://prefix.dev/conda-forge/win-64/blas-2.131-openblas.conda + build_number: 31 + sha256: a81a0044e178bb7a516d9a6aa464bbb3bfd82ff5404e5dbe533df00624cedfd0 + md5: 1b992e64e927055b5c698bbed38811d3 + depends: + - blas-devel 3.9.0 31*_openblas + license: BSD-3-Clause + license_family: BSD + size: 17954 + timestamp: 1740088764949 +- conda: https://prefix.dev/conda-forge/linux-64/blas-devel-3.9.0-31_h1ea3ea9_openblas.conda + build_number: 31 + sha256: afb47fb55992d68c216dfc11436db48feb7df40da469ecb92ce9fc3aa8bc1c55 + md5: ba652ee0576396d4765e567f043c57f9 + depends: + - libblas 3.9.0 31_h59b9bed_openblas + - libcblas 3.9.0 31_he106b2a_openblas + - liblapack 3.9.0 31_h7ac8fdf_openblas + - liblapacke 3.9.0 31_he2f377e_openblas + - openblas 0.3.29.* + license: BSD-3-Clause + license_family: BSD + size: 16818 + timestamp: 1740088024940 +- conda: https://prefix.dev/conda-forge/linux-aarch64/blas-devel-3.9.0-31_h9678261_openblas.conda + build_number: 31 + sha256: f70938656cda47dc2edf215f6dd4deb5161c34cd2e9f01001c338a3ad7043e69 + md5: a2cc143d7e25e52a915cb320e5b0d592 + depends: + - libblas 3.9.0 31_h1a9f1db_openblas + - libcblas 3.9.0 31_hab92f65_openblas + - liblapack 3.9.0 31_h411afd4_openblas + - liblapacke 3.9.0 31_hc659ca5_openblas + - openblas 0.3.29.* + license: BSD-3-Clause + license_family: BSD + size: 16843 + timestamp: 1740087936670 +- conda: https://prefix.dev/conda-forge/osx-64/blas-devel-3.9.0-31_h83998a6_accelerate.conda + build_number: 31 + sha256: 029e30353891e437096c64d3c90fb5e22c78a68131bb45fb3fa332f2aa2cceca + md5: bdd8991d66e2b6a5f137128bb2a94d5a + depends: + - libblas 3.9.0 31_h53a1964_accelerate + - libcblas 3.9.0 31_h6bc05c3_accelerate + - liblapack 3.9.0 31_hf5f89c0_accelerate + - liblapacke 3.9.0 31_h323ef19_accelerate + license: BSD-3-Clause + license_family: BSD + size: 16663 + timestamp: 1740088228085 +- conda: https://prefix.dev/conda-forge/osx-arm64/blas-devel-3.9.0-31_h55bc449_accelerate.conda + build_number: 31 + sha256: a2fd044e20ff1e66c82a731ed06fc0d8c6ab6f3d5545c513c409bb9728eceffe + md5: 05d99f45a79cc3a50ec49a8a7ab52466 + depends: + - libblas 3.9.0 31_h504e6c8_accelerate + - libcblas 3.9.0 31_h8d39bcd_accelerate + - liblapack 3.9.0 31_h3c9cff3_accelerate + - liblapacke 3.9.0 31_h09be921_accelerate + license: BSD-3-Clause + license_family: BSD + size: 16705 + timestamp: 1740088301887 +- conda: https://prefix.dev/conda-forge/win-64/blas-devel-3.9.0-31_hc0f8095_openblas.conda + build_number: 31 + sha256: 681d2415c0a9c1744c42f705138a7cdd066e77edfd1d2b9522adfdcb21f34c49 + md5: 1f1f830a3171d80264ce093b87e414c0 + depends: + - libblas 3.9.0 31_h11dc60a_openblas + - libcblas 3.9.0 31_h9bd4c3b_openblas + - liblapack 3.9.0 31_h2526c6b_openblas + - liblapacke 3.9.0 31_h1d0e49f_openblas + - openblas * pthreads* + - openblas 0.3.29.* + license: BSD-3-Clause + license_family: BSD + size: 17740 + timestamp: 1740088756903 +- conda: https://prefix.dev/conda-forge/noarch/blinker-1.9.0-pyhff2d567_0.conda + sha256: f7efd22b5c15b400ed84a996d777b6327e5c402e79e3c534a7e086236f1eb2dc + md5: 42834439227a4551b939beeeb8a4b085 + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 13934 + timestamp: 1731096548765 +- conda: https://prefix.dev/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda + sha256: 6cc260f9c6d32c5e728a2099a52fdd7ee69a782fff7b400d0606fcd32e0f5fd1 + md5: 54fe76ab3d0189acaef95156874db7f9 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.3.1,<2.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - snappy >=1.2.0,<1.3.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 48842 + timestamp: 1719266029046 +- conda: https://prefix.dev/conda-forge/linux-aarch64/blosc-1.21.6-hd2997c2_0.conda + sha256: 4349c7227053c2042b0c31daf6782cbb29ed09557d2f08d7d710ef5288040e73 + md5: 7e34841d8b76a87cb9ed5b2028f0f37f + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.3.1,<2.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - snappy >=1.2.0,<1.3.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 35975 + timestamp: 1719266339092 +- conda: https://prefix.dev/conda-forge/osx-64/blosc-1.21.6-h7d75f6d_0.conda + sha256: 65e5f5dd3d68ed0d9d35e79d64f8141283cad2b55dcd9a04480ceea0e436aca8 + md5: 3e5669e51737d04f4806dd3e8c424663 + depends: + - __osx >=10.13 + - libcxx >=16 + - libzlib >=1.3.1,<2.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - snappy >=1.2.0,<1.3.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 47051 + timestamp: 1719266142315 +- conda: https://prefix.dev/conda-forge/osx-arm64/blosc-1.21.6-h5499902_0.conda + sha256: 5a1e635a371449a750b776cab64ad83f5218b58b3f137ebd33ad3ec17f1ce92e + md5: e94ca7aec8544f700d45b24aff2dd4d7 + depends: + - __osx >=11.0 + - libcxx >=16 + - libzlib >=1.3.1,<2.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - snappy >=1.2.0,<1.3.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 33201 + timestamp: 1719266149627 +- conda: https://prefix.dev/conda-forge/win-64/blosc-1.21.6-h85f69ea_0.conda + sha256: 1289853b41df5355f45664f1cb015c868df1f570cf743e9e4a5bda8efe8c42fa + md5: 2390269374fded230fcbca8332a4adc0 + depends: + - libzlib >=1.3.1,<2.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - snappy >=1.2.0,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 50135 + timestamp: 1719266616208 +- conda: https://prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda + sha256: fcb0b5b28ba7492093e54f3184435144e074dfceab27ac8e6a9457e736565b0b + md5: 98514fe74548d768907ce7a13f680e8f + depends: + - __glibc >=2.17,<3.0.a0 + - brotli-bin 1.1.0 hb9d3cd8_2 + - libbrotlidec 1.1.0 hb9d3cd8_2 + - libbrotlienc 1.1.0 hb9d3cd8_2 + - libgcc >=13 + license: MIT + license_family: MIT + size: 19264 + timestamp: 1725267697072 +- conda: https://prefix.dev/conda-forge/linux-aarch64/brotli-1.1.0-h86ecc28_2.conda + sha256: 260a981a68b63585384ab55a8fac954e8d14bdb4226b3d534333021f711495fe + md5: 5094acc34eb173f74205c0b55f0dd4a4 + depends: + - brotli-bin 1.1.0 h86ecc28_2 + - libbrotlidec 1.1.0 h86ecc28_2 + - libbrotlienc 1.1.0 h86ecc28_2 + - libgcc >=13 + license: MIT + license_family: MIT + size: 19434 + timestamp: 1725267810677 +- conda: https://prefix.dev/conda-forge/osx-64/brotli-1.1.0-h00291cd_2.conda + sha256: 624954bc08b3d7885a58c7d547282cfb9a201ce79b748b358f801de53e20f523 + md5: 2db0c38a7f2321c5bdaf32b181e832c7 + depends: + - __osx >=10.13 + - brotli-bin 1.1.0 h00291cd_2 + - libbrotlidec 1.1.0 h00291cd_2 + - libbrotlienc 1.1.0 h00291cd_2 + license: MIT + license_family: MIT + size: 19450 + timestamp: 1725267851605 +- conda: https://prefix.dev/conda-forge/osx-arm64/brotli-1.1.0-hd74edd7_2.conda + sha256: a086f36ff68d6e30da625e910547f6211385246fb2474b144ac8c47c32254576 + md5: 215e3dc8f2f837906d066e7f01aa77c0 + depends: + - __osx >=11.0 + - brotli-bin 1.1.0 hd74edd7_2 + - libbrotlidec 1.1.0 hd74edd7_2 + - libbrotlienc 1.1.0 hd74edd7_2 + license: MIT + license_family: MIT + size: 19588 + timestamp: 1725268044856 +- conda: https://prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_2.conda + sha256: d8fd7d1b446706776117d2dcad1c0289b9f5e1521cb13405173bad38568dd252 + md5: 378f1c9421775dfe644731cb121c8979 + depends: + - brotli-bin 1.1.0 h2466b09_2 + - libbrotlidec 1.1.0 h2466b09_2 + - libbrotlienc 1.1.0 h2466b09_2 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 19697 + timestamp: 1725268293988 +- conda: https://prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda + sha256: 261364d7445513b9a4debc345650fad13c627029bfc800655a266bf1e375bc65 + md5: c63b5e52939e795ba8d26e35d767a843 + depends: + - __glibc >=2.17,<3.0.a0 + - libbrotlidec 1.1.0 hb9d3cd8_2 + - libbrotlienc 1.1.0 hb9d3cd8_2 + - libgcc >=13 + license: MIT + license_family: MIT + size: 18881 + timestamp: 1725267688731 +- conda: https://prefix.dev/conda-forge/linux-aarch64/brotli-bin-1.1.0-h86ecc28_2.conda + sha256: 4231e3d00081d842870a6b8ba0ccf55ae0ccbc074dddbc0c115433bc32b1343d + md5: 7d48b185fe1f722f8cda4539bb931f85 + depends: + - libbrotlidec 1.1.0 h86ecc28_2 + - libbrotlienc 1.1.0 h86ecc28_2 + - libgcc >=13 + license: MIT + license_family: MIT + size: 18937 + timestamp: 1725267802117 +- conda: https://prefix.dev/conda-forge/osx-64/brotli-bin-1.1.0-h00291cd_2.conda + sha256: 642a8492491109fd8270c1e2c33b18126712df0cedb94aaa2b1c6b02505a4bfa + md5: 049933ecbf552479a12c7917f0a4ce59 + depends: + - __osx >=10.13 + - libbrotlidec 1.1.0 h00291cd_2 + - libbrotlienc 1.1.0 h00291cd_2 + license: MIT + license_family: MIT + size: 16643 + timestamp: 1725267837325 +- conda: https://prefix.dev/conda-forge/osx-arm64/brotli-bin-1.1.0-hd74edd7_2.conda + sha256: 28f1af63b49fddf58084fb94e5512ad46e9c453eb4be1d97449c67059e5b0680 + md5: b8512db2145dc3ae8d86cdc21a8d421e + depends: + - __osx >=11.0 + - libbrotlidec 1.1.0 hd74edd7_2 + - libbrotlienc 1.1.0 hd74edd7_2 + license: MIT + license_family: MIT + size: 16772 + timestamp: 1725268026061 +- conda: https://prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_2.conda + sha256: f3bf2893613540ac256c68f211861c4de618d96291719e32178d894114ac2bc2 + md5: d22534a9be5771fc58eb7564947f669d + depends: + - libbrotlidec 1.1.0 h2466b09_2 + - libbrotlienc 1.1.0 h2466b09_2 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 20837 + timestamp: 1725268270219 +- conda: https://prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py312h2ec8cdc_2.conda + sha256: f2a59ccd20b4816dea9a2a5cb917eb69728271dbf1aeab4e1b7e609330a50b6f + md5: b0b867af6fc74b2a0aa206da29c0f3cf + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - libbrotlicommon 1.1.0 hb9d3cd8_2 + license: MIT + license_family: MIT + size: 349867 + timestamp: 1725267732089 +- conda: https://prefix.dev/conda-forge/linux-aarch64/brotli-python-1.1.0-py312h6f74592_2.conda + sha256: 9736bf660a0e4260c68f81d2635b51067f817813e6490ac9e8abd9a835dcbf6d + md5: e1e9727063057168d95f27a032acd0a4 + depends: + - libgcc >=13 + - libstdcxx >=13 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + constrains: + - libbrotlicommon 1.1.0 h86ecc28_2 + license: MIT + license_family: MIT + size: 356878 + timestamp: 1725267878508 +- conda: https://prefix.dev/conda-forge/osx-64/brotli-python-1.1.0-py312h5861a67_2.conda + sha256: 265764ff4ad9e5cfefe7ea85c53d95157bf16ac2c0e5f190c528e4c9c0c1e2d0 + md5: b95025822e43128835826ec0cc45a551 + depends: + - __osx >=10.13 + - libcxx >=17 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - libbrotlicommon 1.1.0 h00291cd_2 + license: MIT + license_family: MIT + size: 363178 + timestamp: 1725267893889 +- conda: https://prefix.dev/conda-forge/osx-arm64/brotli-python-1.1.0-py312hde4cb15_2.conda + sha256: 254b411fa78ccc226f42daf606772972466f93e9bc6895eabb4cfda22f5178af + md5: a83c2ef76ccb11bc2349f4f17696b15d + depends: + - __osx >=11.0 + - libcxx >=17 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + constrains: + - libbrotlicommon 1.1.0 hd74edd7_2 + license: MIT + license_family: MIT + size: 339360 + timestamp: 1725268143995 +- conda: https://prefix.dev/conda-forge/win-64/brotli-python-1.1.0-py312h275cf98_2.conda + sha256: f83baa6f6bcba7b73f6921d5c1aa95ffc5d8b246ade933ade79250de0a4c9c4c + md5: a99aec1ac46794a5fb1cd3cf5d2b6110 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - libbrotlicommon 1.1.0 h2466b09_2 + license: MIT + license_family: MIT + size: 321874 + timestamp: 1725268491976 +- conda: https://prefix.dev/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d + md5: 62ee74e96c5ebb0af99386de58cf9553 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + license: bzip2-1.0.6 + license_family: BSD + size: 252783 + timestamp: 1720974456583 +- conda: https://prefix.dev/conda-forge/linux-aarch64/bzip2-1.0.8-h68df207_7.conda + sha256: 2258b0b33e1cb3a9852d47557984abb6e7ea58e3d7f92706ec1f8e879290c4cb + md5: 56398c28220513b9ea13d7b450acfb20 + depends: + - libgcc-ng >=12 + license: bzip2-1.0.6 + license_family: BSD + size: 189884 + timestamp: 1720974504976 +- conda: https://prefix.dev/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda + sha256: cad153608b81fb24fc8c509357daa9ae4e49dfc535b2cb49b91e23dbd68fc3c5 + md5: 7ed4301d437b59045be7e051a0308211 + depends: + - __osx >=10.13 + license: bzip2-1.0.6 + license_family: BSD + size: 134188 + timestamp: 1720974491916 +- conda: https://prefix.dev/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda + sha256: adfa71f158cbd872a36394c56c3568e6034aa55c623634b37a4836bd036e6b91 + md5: fc6948412dbbbe9a4c9ddbbcfe0a79ab + depends: + - __osx >=11.0 + license: bzip2-1.0.6 + license_family: BSD + size: 122909 + timestamp: 1720974522888 +- conda: https://prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda + sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b + md5: 276e7ffe9ffe39688abc665ef0f45596 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: bzip2-1.0.6 + license_family: BSD + size: 54927 + timestamp: 1720974860185 +- conda: https://prefix.dev/conda-forge/linux-64/c-ares-1.34.4-hb9d3cd8_0.conda + sha256: d4f28d87b6339b94f74762c0076e29c8ef8ddfff51a564a92da2843573c18320 + md5: e2775acf57efd5af15b8e3d1d74d72d3 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 206085 + timestamp: 1734208189009 +- conda: https://prefix.dev/conda-forge/linux-aarch64/c-ares-1.34.4-h86ecc28_0.conda + sha256: 1187a41d4bb2afe02cb18690682edc98d1e9f5e0ccda638d8704a75ea1875bbe + md5: 356da36f35d36dcba16e43f1589d4e39 + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 215979 + timestamp: 1734208193181 +- conda: https://prefix.dev/conda-forge/osx-64/c-ares-1.34.4-hf13058a_0.conda + sha256: 8dcc1628d34fe7d759f3a7dee52e09c5162a3f9669dddd6100bff965450f4a0a + md5: 133255af67aaf1e0c0468cc753fd800b + depends: + - __osx >=10.13 + license: MIT + license_family: MIT + size: 184455 + timestamp: 1734208242547 +- conda: https://prefix.dev/conda-forge/osx-arm64/c-ares-1.34.4-h5505292_0.conda + sha256: 09c0c8476e50b2955f474a4a1c17c4c047dd52993b5366b6ea8e968e583b921f + md5: c1c999a38a4303b29d75c636eaa13cf9 + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 179496 + timestamp: 1734208291879 +- conda: https://prefix.dev/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda + sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189 + md5: 19f3a56f68d2fd06c516076bff482c52 + license: ISC + size: 158144 + timestamp: 1738298224464 +- conda: https://prefix.dev/conda-forge/linux-aarch64/ca-certificates-2025.1.31-hcefe29a_0.conda + sha256: 66c6408ee461593cfdb2d78d82e6ed74d04a04ccb51df3ef8a5f35148c9c6eec + md5: 462cb166cd2e26a396f856510a3aff67 + license: ISC + size: 158290 + timestamp: 1738299057652 +- conda: https://prefix.dev/conda-forge/osx-64/ca-certificates-2025.1.31-h8857fd0_0.conda + sha256: 42e911ee2d8808eacedbec46d99b03200a6138b8e8a120bd8acabe1cac41c63b + md5: 3418b6c8cac3e71c0bc089fc5ea53042 + license: ISC + size: 158408 + timestamp: 1738298385933 +- conda: https://prefix.dev/conda-forge/osx-arm64/ca-certificates-2025.1.31-hf0a4a13_0.conda + sha256: 7e12816618173fe70f5c638b72adf4bfd4ddabf27794369bb17871c5bb75b9f9 + md5: 3569d6a9141adc64d2fe4797f3289e06 + license: ISC + size: 158425 + timestamp: 1738298167688 +- conda: https://prefix.dev/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda + sha256: 1bedccdf25a3bd782d6b0e57ddd97cdcda5501716009f2de4479a779221df155 + md5: 5304a31607974dfc2110dfbb662ed092 + license: ISC + size: 158690 + timestamp: 1738298232550 +- conda: https://prefix.dev/conda-forge/linux-64/cairo-1.18.4-h3394656_0.conda + sha256: 3bd6a391ad60e471de76c0e9db34986c4b5058587fbf2efa5a7f54645e28c2c7 + md5: 09262e66b19567aff4f592fb53b28760 + depends: + - __glibc >=2.17,<3.0.a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - icu >=75.1,<76.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libglib >=2.82.2,<3.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libstdcxx >=13 + - libxcb >=1.17.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pixman >=0.44.2,<1.0a0 + - xorg-libice >=1.1.2,<2.0a0 + - xorg-libsm >=1.2.5,<2.0a0 + - xorg-libx11 >=1.8.11,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxrender >=0.9.12,<0.10.0a0 + license: LGPL-2.1-only or MPL-1.1 + size: 978114 + timestamp: 1741554591855 +- conda: https://prefix.dev/conda-forge/linux-aarch64/cairo-1.18.4-h83712da_0.conda + sha256: 37cfff940d2d02259afdab75eb2dbac42cf830adadee78d3733d160a1de2cc66 + md5: cd55953a67ec727db5dc32b167201aa6 + depends: + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - icu >=75.1,<76.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libglib >=2.82.2,<3.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libstdcxx >=13 + - libxcb >=1.17.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pixman >=0.44.2,<1.0a0 + - xorg-libice >=1.1.2,<2.0a0 + - xorg-libsm >=1.2.5,<2.0a0 + - xorg-libx11 >=1.8.11,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxrender >=0.9.12,<0.10.0a0 + license: LGPL-2.1-only or MPL-1.1 + size: 966667 + timestamp: 1741554768968 +- conda: https://prefix.dev/conda-forge/osx-64/cairo-1.18.4-h950ec3b_0.conda + sha256: d4297c3a9bcff9add3c5a46c6e793b88567354828bcfdb6fc9f6b1ab34aa4913 + md5: 32403b4ef529a2018e4d8c4f2a719f16 + depends: + - __osx >=10.13 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - icu >=75.1,<76.0a0 + - libcxx >=18 + - libexpat >=2.6.4,<3.0a0 + - libglib >=2.82.2,<3.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + - pixman >=0.44.2,<1.0a0 + license: LGPL-2.1-only or MPL-1.1 + size: 893252 + timestamp: 1741554808521 +- conda: https://prefix.dev/conda-forge/osx-arm64/cairo-1.18.4-h6a3b0d2_0.conda + sha256: 00439d69bdd94eaf51656fdf479e0c853278439d22ae151cabf40eb17399d95f + md5: 38f6df8bc8c668417b904369a01ba2e2 + depends: + - __osx >=11.0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - icu >=75.1,<76.0a0 + - libcxx >=18 + - libexpat >=2.6.4,<3.0a0 + - libglib >=2.82.2,<3.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + - pixman >=0.44.2,<1.0a0 + license: LGPL-2.1-only or MPL-1.1 + size: 896173 + timestamp: 1741554795915 +- conda: https://prefix.dev/conda-forge/win-64/cairo-1.18.4-h5782bbf_0.conda + sha256: b9f577bddb033dba4533e851853924bfe7b7c1623d0697df382eef177308a917 + md5: 20e32ced54300292aff690a69c5e7b97 + depends: + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - icu >=75.1,<76.0a0 + - libexpat >=2.6.4,<3.0a0 + - libglib >=2.82.2,<3.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + - pixman >=0.44.2,<1.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.1-only or MPL-1.1 + size: 1524254 + timestamp: 1741555212198 +- conda: https://prefix.dev/conda-forge/linux-64/calculix-2.22-hae4e037_1.conda + sha256: 698123eaf212b9baf9b0822f5dff53df3c073949e7290b99d310ddaed537c658 + md5: 6a78b48e7e28fdb3f420bc994433e958 + depends: + - __glibc >=2.17,<3.0.a0 + - arpack >=3.9.1,<3.10.0a0 nompi_* + - libblas >=3.9.0,<4.0a0 + - libgcc >=13 + - libgfortran + - libgfortran5 >=13.3.0 + - liblapack >=3.9.0,<4.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 2609520 + timestamp: 1736280947242 +- conda: https://prefix.dev/conda-forge/linux-aarch64/calculix-2.22-h287cb45_1.conda + sha256: 94e35dc5697f78afe63395af92b41c801dd97ff1b4afa62019e6b16e9d6f95dc + md5: e6c1bd18f858dd9725bd8c808a6d9353 + depends: + - arpack >=3.9.1,<3.10.0a0 nompi_* + - libblas >=3.9.0,<4.0a0 + - libgcc >=13 + - libgfortran + - libgfortran5 >=13.3.0 + - liblapack >=3.9.0,<4.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 2631503 + timestamp: 1736280884035 +- conda: https://prefix.dev/conda-forge/osx-64/calculix-2.22-h1ca30be_1.conda + sha256: bcaa4b577b959378987146b536adad9e8342427a69f8d4facf76ce154c1d7567 + md5: b87463f8971c2c1e4a56e137db0c07e3 + depends: + - __osx >=10.13 + - arpack >=3.9.1,<3.10.0a0 nompi_* + - libblas >=3.9.0,<4.0a0 + - libgfortran 5.* + - libgfortran5 >=13.2.0 + - liblapack >=3.9.0,<4.0a0 + - llvm-openmp >=18.1.8 + license: GPL-2.0-or-later + license_family: GPL + size: 2548931 + timestamp: 1736281173137 +- conda: https://prefix.dev/conda-forge/osx-arm64/calculix-2.22-hf186d59_1.conda + sha256: d6fea12b67389c5f3a69e6dc291228226029d8b01ccc1bbd2f16e9fbfd27f4e7 + md5: a163545136b5162536ed4442259aa06f + depends: + - __osx >=11.0 + - arpack >=3.9.1,<3.10.0a0 nompi_* + - libblas >=3.9.0,<4.0a0 + - libgfortran 5.* + - libgfortran5 >=13.2.0 + - liblapack >=3.9.0,<4.0a0 + - llvm-openmp >=18.1.8 + license: GPL-2.0-or-later + license_family: GPL + size: 2486600 + timestamp: 1736281025715 +- conda: https://prefix.dev/conda-forge/win-64/calculix-2.22-h27aae45_0.conda + sha256: 41182738f9bbcb779eecab60cbe5489e88d02b63ab8598c2a1edfe48467abc0c + md5: 5d8dbbdedfc382d7fb679518bedd049f + depends: + - arpack >=3.9.1,<3.10.0a0 nompi_* + - libblas >=3.9.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - m2w64-gcc-libs + - m2w64-gcc-libs-core + license: GPL-2.0-or-later + license_family: GPL + size: 2516811 + timestamp: 1725269881292 +- conda: https://prefix.dev/conda-forge/noarch/certifi-2025.1.31-pyhd8ed1ab_0.conda + sha256: 42a78446da06a2568cb13e69be3355169fbd0ea424b00fc80b7d840f5baaacf3 + md5: c207fa5ac7ea99b149344385a9c0880d + depends: + - python >=3.9 + license: ISC + size: 162721 + timestamp: 1739515973129 +- conda: https://prefix.dev/conda-forge/linux-64/cffi-1.17.1-py312h06ac9bb_0.conda + sha256: cba6ea83c4b0b4f5b5dc59cb19830519b28f95d7ebef7c9c5cf1c14843621457 + md5: a861504bbea4161a9170b85d4d2be840 + depends: + - __glibc >=2.17,<3.0.a0 + - libffi >=3.4,<4.0a0 + - libgcc >=13 + - pycparser + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + size: 294403 + timestamp: 1725560714366 +- conda: https://prefix.dev/conda-forge/linux-aarch64/cffi-1.17.1-py312hac81daf_0.conda + sha256: 1162e3ca039e7ca7c0e78f0a020ed1bde968096841b663e3f393c966eb82f0f0 + md5: 1a256e5581b1099e9295cb84d53db3ea + depends: + - libffi >=3.4,<4.0a0 + - libgcc >=13 + - pycparser + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + size: 312892 + timestamp: 1725561779888 +- conda: https://prefix.dev/conda-forge/osx-64/cffi-1.17.1-py312hf857d28_0.conda + sha256: 94fe49aed25d84997e2630d6e776a75ee2a85bd64f258702c57faa4fe2986902 + md5: 5bbc69b8194fedc2792e451026cac34f + depends: + - __osx >=10.13 + - libffi >=3.4,<4.0a0 + - pycparser + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + size: 282425 + timestamp: 1725560725144 +- conda: https://prefix.dev/conda-forge/osx-arm64/cffi-1.17.1-py312h0fad829_0.conda + sha256: 8d91a0d01358b5c3f20297c6c536c5d24ccd3e0c2ddd37f9d0593d0f0070226f + md5: 19a5456f72f505881ba493979777b24e + depends: + - __osx >=11.0 + - libffi >=3.4,<4.0a0 + - pycparser + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + size: 281206 + timestamp: 1725560813378 +- conda: https://prefix.dev/conda-forge/win-64/cffi-1.17.1-py312h4389bb4_0.conda + sha256: ac007bf5fd56d13e16d95eea036433012f2e079dc015505c8a79efebbad1fcbc + md5: 08310c1a22ef957d537e547f8d484f92 + depends: + - pycparser + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 288142 + timestamp: 1725560896359 +- conda: https://prefix.dev/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda + sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b + md5: e83a31202d1c0a000fce3e9cf3825875 + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 47438 + timestamp: 1735929811779 +- conda: https://prefix.dev/conda-forge/linux-64/coin3d-4.0.3-hd74d64a_2.conda + sha256: 953d004ee7a2be78c717cecaf5bb959fea1faefb86106322c19c06dafa3c0e12 + md5: b3addb85bc05327f73bf69a9ed73b890 + depends: + - __glibc >=2.17,<3.0.a0 + - expat + - libexpat >=2.6.3,<3.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libglu + - libstdcxx >=13 + - xorg-libxi >=1.8.2,<2.0a0 + - xorg-libxt >=1.3.0,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 3247920 + timestamp: 1728502926513 +- conda: https://prefix.dev/conda-forge/linux-aarch64/coin3d-4.0.3-h411181d_2.conda + sha256: 3e4d579ffc07c0f1d8efa3de0f785e31c1a411691f63fe9fba7c43fb7de4a893 + md5: 22b408993640d52937a14c554ea3e588 + depends: + - expat + - libexpat >=2.6.3,<3.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libglu + - libstdcxx >=13 + - xorg-libxi >=1.8.2,<2.0a0 + - xorg-libxt >=1.3.0,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 3070895 + timestamp: 1728503092503 +- conda: https://prefix.dev/conda-forge/osx-64/coin3d-4.0.3-h9b6ce5f_2.conda + sha256: 0b2ab0b12925ffdbe20659817173d19373cf152890be56e8c1f0e8cdc2d89b5d + md5: 025850bb0c18049d92f20e2c2b31a403 + depends: + - __osx >=10.13 + - expat + - libcxx >=17 + - libexpat >=2.6.3,<3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2405105 + timestamp: 1728503297185 +- conda: https://prefix.dev/conda-forge/osx-arm64/coin3d-4.0.3-h705ab75_2.conda + sha256: 6b54ae5e50dd2bc11a1a745af2c13903edccc6adbda84ce4c1854ca5c26c6e62 + md5: f8fcb03c7b397831923ea47ca27e3e0e + depends: + - __osx >=11.0 + - expat + - libcxx >=17 + - libexpat >=2.6.3,<3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2266738 + timestamp: 1728503278809 +- conda: https://prefix.dev/conda-forge/win-64/coin3d-4.0.3-h192c3d0_2.conda + sha256: 87c3d3eee8c6323a7d0a972110b2439836ce1d6605ea5717d70a53f1ef0a245c + md5: 4e5d643a1995b3ab856503e6c653e95c + depends: + - expat + - libexpat >=2.6.3,<3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 3012993 + timestamp: 1728504053172 +- conda: https://prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 + md5: 962b9857ee8e7018c22f2776ffa0b2d7 + depends: + - python >=3.9 + license: BSD-3-Clause + license_family: BSD + size: 27011 + timestamp: 1733218222191 +- conda: https://prefix.dev/conda-forge/linux-64/contourpy-1.3.1-py312h68727a3_0.conda + sha256: e977af50b844b5b8cfec358131a4e923f0aa718e8334321cf8d84f5093576259 + md5: f5fbba0394ee45e9a64a73c2a994126a + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - numpy >=1.23 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 276332 + timestamp: 1731428454756 +- conda: https://prefix.dev/conda-forge/linux-aarch64/contourpy-1.3.1-py312h451a7dd_0.conda + sha256: 051b2116358499376244bfebd0f5e234644261988744b3e79dd4822ce0116aad + md5: ba590e4630833739c3eb5fcd5f046d0e + depends: + - libgcc >=13 + - libstdcxx >=13 + - numpy >=1.23 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 286018 + timestamp: 1731428571868 +- conda: https://prefix.dev/conda-forge/osx-64/contourpy-1.3.1-py312hc47a885_0.conda + sha256: e05d4c6b4284684a020c386861342fa22706ff747f1f8909b14dbc0fe489dcb2 + md5: 94715deb514df3f341f62bc2ffea5637 + depends: + - __osx >=10.13 + - libcxx >=18 + - numpy >=1.23 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 254416 + timestamp: 1731428639848 +- conda: https://prefix.dev/conda-forge/osx-arm64/contourpy-1.3.1-py312hb23fbb9_0.conda + sha256: fa1f8505f45eac22f25c48cd46809da0d26bcb028c37517b3474bacddd029b0a + md5: f4408290387836e05ac267cd7ec80c5c + depends: + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.23 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 245638 + timestamp: 1731428781337 +- conda: https://prefix.dev/conda-forge/win-64/contourpy-1.3.1-py312hd5eb7cc_0.conda + sha256: b5643ea0dd0bf57e1847679f5985feb649289de872b85c3db900f4110ac83cdd + md5: 83f7a2ec652abd37a178e35493dfd029 + depends: + - numpy >=1.23 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 216484 + timestamp: 1731428831843 +- conda: https://prefix.dev/conda-forge/linux-64/coreutils-9.5-hd590300_0.conda + sha256: 7cd3b0f55aa55bb27b045c30f32b3f6b874ecc006f3abcb274c71a3bcbacb358 + md5: 126d457e0e7a535278e808a7d8960015 + depends: + - libgcc-ng >=12 + license: GPL-3.0-or-later + license_family: GPL + size: 3014238 + timestamp: 1711655132451 +- conda: https://prefix.dev/conda-forge/linux-aarch64/coreutils-9.5-h31becfc_0.conda + sha256: 812c6f285b0073d93f3c5148d15f27cde85a29dbb8bf234c309a4696cc2aeabf + md5: 1c1921fdfebcaa18132711524e64259b + depends: + - libgcc-ng >=12 + license: GPL-3.0-or-later + license_family: GPL + size: 3334202 + timestamp: 1711658928010 +- conda: https://prefix.dev/conda-forge/osx-64/coreutils-9.5-h10d778d_0.conda + sha256: 7a29ae82cf1c455b4956c8311ae97832460c3585f0d8789fd82161dd2a20d1fd + md5: 8332c7ae324c9fc4b22cc3d84a0582e8 + license: GPL-3.0-or-later + license_family: GPL + size: 1374585 + timestamp: 1711655512907 +- conda: https://prefix.dev/conda-forge/osx-arm64/coreutils-9.5-h93a5062_0.conda + sha256: 70e50f2f1458e7c172c9b1c149a4289e8eecc9b53e06ab9de0b3572cdbd30a61 + md5: 75840e25e62a109b1d25043c63a4f36c + license: GPL-3.0-or-later + license_family: GPL + size: 1478098 + timestamp: 1711655465375 +- conda: https://prefix.dev/conda-forge/noarch/cpython-3.12.9-py312hd8ed1ab_1.conda + noarch: generic + sha256: 58a637bc8328b115c9619de3fcd664ec26662083319e3c106917a1b3ee4d7594 + md5: f0f8087079679f3ae375fca13327b17f + depends: + - python 3.12.9.* + - python_abi * *_cp312 + license: Python-2.0 + size: 45728 + timestamp: 1741128060593 +- conda: https://prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c + md5: 44600c4667a319d67dbe0681fc0bc833 + depends: + - python >=3.9 + license: BSD-3-Clause + license_family: BSD + size: 13399 + timestamp: 1733332563512 +- conda: https://prefix.dev/conda-forge/linux-64/cyrus-sasl-2.1.27-h54b06d7_7.conda + sha256: d2ea5e52da745c4249e1a818095a28f9c57bd4df22cbfc645352defa468e86c2 + md5: dce22f70b4e5a407ce88f2be046f4ceb + depends: + - krb5 >=1.21.1,<1.22.0a0 + - libgcc-ng >=12 + - libntlm + - libstdcxx-ng >=12 + - openssl >=3.1.1,<4.0a0 + license: BSD-3-Clause-Attribution + license_family: BSD + size: 219527 + timestamp: 1690061203707 +- conda: https://prefix.dev/conda-forge/linux-aarch64/cyrus-sasl-2.1.27-hf6b2984_7.conda + sha256: bee91ceb748b91b3fefcfe161608c9658b62e4d938aa87050ad1a49f04715552 + md5: 7a85d417c8acd7a5215c082c5b9219e5 + depends: + - krb5 >=1.21.1,<1.22.0a0 + - libgcc-ng >=12 + - libntlm + - libstdcxx-ng >=12 + - openssl >=3.1.1,<4.0a0 + license: BSD-3-Clause-Attribution + license_family: BSD + size: 235884 + timestamp: 1690062556588 +- conda: https://prefix.dev/conda-forge/osx-64/cyrus-sasl-2.1.27-hf9bab2b_7.conda + sha256: d4be27d58beb762f9392a35053404d5129e1ec41d24a9a7b465b4d84de2e5819 + md5: b3a8aa48d3d5e1bfb31ee3bde1f2c544 + depends: + - krb5 >=1.21.1,<1.22.0a0 + - libcxx >=15.0.7 + - libntlm + - openssl >=3.1.1,<4.0a0 + license: BSD-3-Clause-Attribution + license_family: BSD + size: 209174 + timestamp: 1690061476074 +- conda: https://prefix.dev/conda-forge/osx-arm64/cyrus-sasl-2.1.27-h60b93bd_7.conda + sha256: befd4d6e8b542d0c30aff47b098d43bbbe1bbf743ba6cd87a100d8a8731a6e03 + md5: 80a3b015d05a7d235db1bf09911fe08e + depends: + - krb5 >=1.21.1,<1.22.0a0 + - libcxx >=15.0.7 + - libntlm + - openssl >=3.1.1,<4.0a0 + license: BSD-3-Clause-Attribution + license_family: BSD + size: 210957 + timestamp: 1690061457834 +- conda: https://prefix.dev/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda + sha256: 22053a5842ca8ee1cf8e1a817138cdb5e647eb2c46979f84153f6ad7bde73020 + md5: 418c6ca5929a611cbd69204907a83995 + depends: + - libgcc-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 760229 + timestamp: 1685695754230 +- conda: https://prefix.dev/conda-forge/linux-aarch64/dav1d-1.2.1-h31becfc_0.conda + sha256: 33fe66d025cf5bac7745196d1a3dd7a437abcf2dbce66043e9745218169f7e17 + md5: 6e5a87182d66b2d1328a96b61ca43a62 + depends: + - libgcc-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 347363 + timestamp: 1685696690003 +- conda: https://prefix.dev/conda-forge/osx-64/dav1d-1.2.1-h0dc2134_0.conda + sha256: ec71a835866b42e946cd2039a5f7a6458851a21890d315476f5e66790ac11c96 + md5: 9d88733c715300a39f8ca2e936b7808d + license: BSD-2-Clause + license_family: BSD + size: 668439 + timestamp: 1685696184631 +- conda: https://prefix.dev/conda-forge/osx-arm64/dav1d-1.2.1-hb547adb_0.conda + sha256: 93e077b880a85baec8227e8c72199220c7f87849ad32d02c14fb3807368260b8 + md5: 5a74cdee497e6b65173e10d94582fae6 + license: BSD-2-Clause + license_family: BSD + size: 316394 + timestamp: 1685695959391 +- conda: https://prefix.dev/conda-forge/win-64/dav1d-1.2.1-hcfcfb64_0.conda + sha256: 2aa2083c9c186da7d6f975ccfbef654ed54fff27f4bc321dbcd12cee932ec2c4 + md5: ed2c27bda330e3f0ab41577cf8b9b585 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 618643 + timestamp: 1685696352968 +- conda: https://prefix.dev/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2 + sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5 + md5: ecfff944ba3960ecb334b9a2663d708d + depends: + - expat >=2.4.2,<3.0a0 + - libgcc-ng >=9.4.0 + - libglib >=2.70.2,<3.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 618596 + timestamp: 1640112124844 +- conda: https://prefix.dev/conda-forge/linux-aarch64/dbus-1.13.6-h12b9eeb_3.tar.bz2 + sha256: 5fe76bdf27a142cfb9da0fb3197c562e528d2622b573765bee5c9904cf5e6b6b + md5: f3d63805602166bac09386741e00935e + depends: + - expat >=2.4.2,<3.0a0 + - libgcc-ng >=9.4.0 + - libglib >=2.70.2,<3.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 672759 + timestamp: 1640113663539 +- conda: https://prefix.dev/conda-forge/osx-64/dbus-1.13.6-h811a1a6_3.tar.bz2 + sha256: 5f87e2d2bfe5c13f599416f966be142e7d583a7f8152af07c2749aad35f3709a + md5: ea13787a6153d0b4bfed3ece7ea54820 + depends: + - expat >=2.4.2,<3.0a0 + - libglib >=2.70.2,<3.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 563977 + timestamp: 1640112226646 +- conda: https://prefix.dev/conda-forge/osx-arm64/dbus-1.13.6-h3818c69_3.tar.bz2 + sha256: fb21c1e677b43f5de8462f15bfbd0dce271cfe60cf1e6df50bc057b11feb52e1 + md5: 23730a06679644276233a5894eb2ef00 + depends: + - expat >=2.4.2,<3.0a0 + - libglib >=2.70.2,<3.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 574595 + timestamp: 1640112246560 +- conda: https://prefix.dev/conda-forge/linux-64/debugpy-1.8.13-py312h2ec8cdc_0.conda + sha256: 3370f9c9a94146a4136ca57ae6e13b789572ff41804cd949cccad70945ae7fb0 + md5: cfad89e517e83c4927fffdbaaf0a30ef + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + size: 2650523 + timestamp: 1741148587127 +- conda: https://prefix.dev/conda-forge/linux-aarch64/debugpy-1.8.13-py312h6f74592_0.conda + sha256: 64a7b284129d70fbd12e6562fbfaceb9aaf17c73495c294e5cb3c087a268d066 + md5: e0acc6199a29804d8d35d384093d8426 + depends: + - libgcc >=13 + - libstdcxx >=13 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + size: 2608850 + timestamp: 1741148743696 +- conda: https://prefix.dev/conda-forge/osx-64/debugpy-1.8.13-py312haafddd8_0.conda + sha256: ceef18f81b4b6f2f3c22df66df328deb673d1134245eea50cff9015851aaa44c + md5: cfa5d55e1840d33ef2fc5fa168a6e702 + depends: + - __osx >=10.13 + - libcxx >=18 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + size: 2534988 + timestamp: 1741148736172 +- conda: https://prefix.dev/conda-forge/osx-arm64/debugpy-1.8.13-py312hd8f9ff3_0.conda + sha256: aff8062e58906578b8006455beba45d4293708795fd534f01ca08d79cccaf6e3 + md5: 806d93a7b4e47961d7459dc880087673 + depends: + - __osx >=11.0 + - libcxx >=18 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + size: 2571308 + timestamp: 1741148638740 +- conda: https://prefix.dev/conda-forge/win-64/debugpy-1.8.13-py312h275cf98_0.conda + sha256: 24e793d78bb5f2129be7a485c72d6d485d1abff30d90cdcedfa24bad1cf00208 + md5: a2e7abdc87c10567ad1fdaf05c47a728 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 3608339 + timestamp: 1741149007361 +- conda: https://prefix.dev/conda-forge/noarch/dmgbuild-1.6.5-pyh534df25_0.conda + sha256: cf9a4ce260840ced8163abf5f7bec5340021606181689159283ef03c0ff436d6 + md5: 0b2204656b88f3844abb58e9ff4dd11c + depends: + - __osx + - ds_store >=1.1.0 + - importlib_resources >=5.9 + - mac_alias >=2.0.1 + - python >=3.9 + license: MIT + license_family: MIT + size: 40147 + timestamp: 1742546907489 +- conda: https://prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda + sha256: fa5966bb1718bbf6967a85075e30e4547901410cc7cb7b16daf68942e9a94823 + md5: 24c1ca34138ee57de72a943237cde4cc + depends: + - python >=3.9 + license: CC-PDDC AND BSD-3-Clause AND BSD-2-Clause AND ZPL-2.1 + size: 402700 + timestamp: 1733217860944 +- conda: https://prefix.dev/conda-forge/linux-64/double-conversion-3.3.1-h5888daf_0.conda + sha256: 1bcc132fbcc13f9ad69da7aa87f60ea41de7ed4d09f3a00ff6e0e70e1c690bc2 + md5: bfd56492d8346d669010eccafe0ba058 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: BSD-3-Clause + license_family: BSD + size: 69544 + timestamp: 1739569648873 +- conda: https://prefix.dev/conda-forge/linux-aarch64/double-conversion-3.3.1-h5ad3122_0.conda + sha256: 9a2282445e8ee2da6253490c896bc3be80f07550564a6db5f4920aa3ae390021 + md5: 399959d889e1a73fc99f12ce480e77e1 + depends: + - libgcc >=13 + - libstdcxx >=13 + license: BSD-3-Clause + license_family: BSD + size: 67140 + timestamp: 1739571636249 +- conda: https://prefix.dev/conda-forge/osx-64/double-conversion-3.3.1-h240833e_0.conda + sha256: e402598ce9da5dde964671c96c5471851b723171dedc86e3a501cc43b7fcb2ab + md5: 3cb499563390702fe854a743e376d711 + depends: + - __osx >=10.13 + - libcxx >=18 + license: BSD-3-Clause + license_family: BSD + size: 66627 + timestamp: 1739569935278 +- conda: https://prefix.dev/conda-forge/osx-arm64/double-conversion-3.3.1-h286801f_0.conda + sha256: 819867a009793fe719b74b2b5881a7e85dc13ce504c7260a9801f3b1970fd97b + md5: 4dce99b1430bf11b64432e2edcc428fa + depends: + - __osx >=11.0 + - libcxx >=18 + license: BSD-3-Clause + license_family: BSD + size: 63265 + timestamp: 1739569780916 +- conda: https://prefix.dev/conda-forge/win-64/double-conversion-3.3.1-he0c23c2_0.conda + sha256: b1fee32ef36a98159f0a2a96c4e734dfc9adff73acd444940831b22c1fb6d5c0 + md5: e9a1402439c18a4e3c7a52e4246e9e1c + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 71355 + timestamp: 1739570178995 +- conda: https://prefix.dev/conda-forge/noarch/ds_store-1.3.1-pyhd8ed1ab_3.conda + sha256: 665cfd000d381bd49139ce91554beb7e1ae6653e1be5df97029800c22a27a28c + md5: cd1a3518c51a9566d72548c3afb57983 + depends: + - mac_alias >=2.0.1 + - python >=3.9 + license: MIT + license_family: MIT + size: 22251 + timestamp: 1735425294399 +- conda: https://prefix.dev/conda-forge/osx-arm64/eigen-3.4.0-h1995070_0.conda + sha256: c20b3677b16d8907343fce68e7c437184fef7f5ed0a765c104b775f8a485c5c9 + md5: 3691ea3ff568ba38826389bafc717909 + depends: + - libcxx >=15.0.7 + license: MPL-2.0 + license_family: MOZILLA + size: 1087751 + timestamp: 1690275869049 +- conda: https://prefix.dev/conda-forge/win-64/eigen-3.4.0-h91493d7_0.conda + sha256: 633a6a8db1f9a010cb0619f3446fb61f62dea348b09615ffae9744ab1001c24c + md5: 305b3ca7023ac046b9a42a48661f6512 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MPL-2.0 + license_family: MOZILLA + size: 1089706 + timestamp: 1690273089254 +- conda: https://prefix.dev/conda-forge/linux-64/epoxy-1.5.10-h166bdaf_1.tar.bz2 + sha256: 1e58ee2ed0f4699be202f23d49b9644b499836230da7dd5b2f63e6766acff89e + md5: a089d06164afd2d511347d3f87214e0b + depends: + - libgcc-ng >=10.3.0 + license: MIT + license_family: MIT + size: 1440699 + timestamp: 1648505042260 +- conda: https://prefix.dev/conda-forge/linux-aarch64/epoxy-1.5.10-h4e544f5_1.tar.bz2 + sha256: 2cdd3965353b24f49bd8d4aafaaf282968509dc600350c25d0d29355990af834 + md5: e3000ef63f6250283a6ca13d38e3e8be + depends: + - libgcc-ng >=10.3.0 + license: MIT + license_family: MIT + size: 1455489 + timestamp: 1648505885929 +- conda: https://prefix.dev/conda-forge/osx-64/epoxy-1.5.10-h5eb16cf_1.tar.bz2 + sha256: 0e344e8490237565a5685736421e06b47a1b46dee7151c0973dd48130f8e583a + md5: 721a46794b9ad1301115068189acb750 + license: MIT + license_family: MIT + size: 342235 + timestamp: 1648505306288 +- conda: https://prefix.dev/conda-forge/osx-arm64/epoxy-1.5.10-h1c322ee_1.tar.bz2 + sha256: 8b93dbebab0fe12ece4767e6a2dc53a6600319ece0b8ba5121715f28c7b0f8d1 + md5: 20dd7359a6052120d52e1e13b4c818b9 + license: MIT + license_family: MIT + size: 355201 + timestamp: 1648505273975 +- conda: https://prefix.dev/conda-forge/linux-64/expat-2.7.0-h5888daf_0.conda + sha256: dd5530ddddca93b17318838b97a2c9d7694fa4d57fc676cf0d06da649085e57a + md5: d6845ae4dea52a2f90178bf1829a21f8 + depends: + - __glibc >=2.17,<3.0.a0 + - libexpat 2.7.0 h5888daf_0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 140050 + timestamp: 1743431809745 +- conda: https://prefix.dev/conda-forge/linux-aarch64/expat-2.7.0-h5ad3122_0.conda + sha256: 3eb41c357970b981ab5969ba38441025ae41011c228b33de7fc3ea90e5278b8a + md5: c22e14e241ade3d3a74c0409c3d582a2 + depends: + - libexpat 2.7.0 h5ad3122_0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 132849 + timestamp: 1743432014146 +- conda: https://prefix.dev/conda-forge/osx-64/expat-2.7.0-h240833e_0.conda + sha256: 35308ac56c9e27ee793b30b63f6a5db1406353da90cbad6e728c1f79896575b9 + md5: 4ef6536484ba1c649effd23674fce3de + depends: + - __osx >=10.13 + - libexpat 2.7.0 h240833e_0 + license: MIT + license_family: MIT + size: 130970 + timestamp: 1743431934728 +- conda: https://prefix.dev/conda-forge/osx-arm64/expat-2.7.0-h286801f_0.conda + sha256: df45bc695f88f252e6fee20faac11621d294b9d22d92972fab7def23d4613501 + md5: 6f54d1a312ca354072b7d79aa0d31eb9 + depends: + - __osx >=11.0 + - libexpat 2.7.0 h286801f_0 + license: MIT + license_family: MIT + size: 127135 + timestamp: 1743431804373 +- conda: https://prefix.dev/conda-forge/win-64/expat-2.7.0-he0c23c2_0.conda + sha256: 18ad7f9edbcd0a12847a3c2980ee0f3b44473fd3a9d3595afe1d11e7fa2d0873 + md5: a4e2e188c8c6a6e72829316d37f7a63f + depends: + - libexpat 2.7.0 he0c23c2_0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 233759 + timestamp: 1743432150740 +- conda: https://prefix.dev/conda-forge/linux-64/ffmpeg-7.1.0-gpl_hf09ebf5_710.conda + sha256: e3eb00a6fdb6e830d609f00e9e592193f940ba0095e1d556d41a2654b0679967 + md5: c03df5443f8c45fe5cb11b4339577944 + depends: + - __glibc >=2.17,<3.0.a0 + - alsa-lib >=1.2.13,<1.3.0a0 + - aom >=3.9.1,<3.10.0a0 + - bzip2 >=1.0.8,<2.0a0 + - dav1d >=1.2.1,<1.2.2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - gmp >=6.3.0,<7.0a0 + - harfbuzz >=10.2.0,<11.0a0 + - lame >=3.100,<3.101.0a0 + - libass >=0.17.3,<0.17.4.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libiconv >=1.17,<2.0a0 + - liblzma >=5.6.4,<6.0a0 + - libopenvino >=2024.6.0,<2024.6.1.0a0 + - libopenvino-auto-batch-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-auto-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-hetero-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-intel-cpu-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-intel-gpu-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-intel-npu-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-ir-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-onnx-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-paddle-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-pytorch-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-tensorflow-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2024.6.0,<2024.6.1.0a0 + - libopus >=1.3.1,<2.0a0 + - librsvg >=2.58.4,<3.0a0 + - libstdcxx >=13 + - libva >=2.22.0,<3.0a0 + - libvpx >=1.14.1,<1.15.0a0 + - libxcb >=1.17.0,<2.0a0 + - libxml2 >=2.13.5,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - openh264 >=2.5.0,<2.5.1.0a0 + - openssl >=3.4.0,<4.0a0 + - pulseaudio-client >=17.0,<17.1.0a0 + - sdl2 >=2.30.10,<3.0a0 + - svt-av1 >=2.3.0,<2.3.1.0a0 + - x264 >=1!164.3095,<1!165 + - x265 >=3.5,<3.6.0a0 + - xorg-libx11 >=1.8.11,<2.0a0 + constrains: + - __cuda >=12.4 + license: GPL-2.0-or-later + license_family: GPL + size: 10351470 + timestamp: 1738951627220 +- conda: https://prefix.dev/conda-forge/linux-aarch64/ffmpeg-7.1.0-gpl_h5c0edd5_710.conda + sha256: e809be3d8ee86671bea1bd40aab22f488f7846447ef4f25deeb9bef1f3e202b6 + md5: ca106c6d58f719e6e97e3e7a663c9789 + depends: + - alsa-lib >=1.2.13,<1.3.0a0 + - aom >=3.9.1,<3.10.0a0 + - bzip2 >=1.0.8,<2.0a0 + - dav1d >=1.2.1,<1.2.2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - gmp >=6.3.0,<7.0a0 + - harfbuzz >=10.2.0,<11.0a0 + - lame >=3.100,<3.101.0a0 + - libass >=0.17.3,<0.17.4.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libiconv >=1.17,<2.0a0 + - liblzma >=5.6.4,<6.0a0 + - libopenvino >=2024.6.0,<2024.6.1.0a0 + - libopenvino-arm-cpu-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-auto-batch-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-auto-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-hetero-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-ir-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-onnx-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-paddle-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-pytorch-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-tensorflow-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2024.6.0,<2024.6.1.0a0 + - libopus >=1.3.1,<2.0a0 + - librsvg >=2.58.4,<3.0a0 + - libstdcxx >=13 + - libvpx >=1.14.1,<1.15.0a0 + - libxcb >=1.17.0,<2.0a0 + - libxml2 >=2.13.5,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - openh264 >=2.5.0,<2.5.1.0a0 + - openssl >=3.4.0,<4.0a0 + - pulseaudio-client >=17.0,<17.1.0a0 + - sdl2 >=2.30.10,<3.0a0 + - svt-av1 >=2.3.0,<2.3.1.0a0 + - x264 >=1!164.3095,<1!165 + - x265 >=3.5,<3.6.0a0 + - xorg-libx11 >=1.8.11,<2.0a0 + constrains: + - __cuda >=12.4 + license: GPL-2.0-or-later + license_family: GPL + size: 10003233 + timestamp: 1738951520234 +- conda: https://prefix.dev/conda-forge/osx-64/ffmpeg-7.1.0-gpl_hf97d1e1_110.conda + sha256: 89107c2026a5b9a1299b51ebf3298078737398fe4e4c7c1e2b85154b7b79b61c + md5: 4312be1c8caf00bc10229eeacab29010 + depends: + - __osx >=10.13 + - aom >=3.9.1,<3.10.0a0 + - bzip2 >=1.0.8,<2.0a0 + - dav1d >=1.2.1,<1.2.2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - gmp >=6.3.0,<7.0a0 + - harfbuzz >=10.2.0,<11.0a0 + - lame >=3.100,<3.101.0a0 + - libass >=0.17.3,<0.17.4.0a0 + - libcxx >=18 + - libexpat >=2.6.4,<3.0a0 + - libiconv >=1.17,<2.0a0 + - liblzma >=5.6.4,<6.0a0 + - libopenvino >=2024.6.0,<2024.6.1.0a0 + - libopenvino-auto-batch-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-auto-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-hetero-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-intel-cpu-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-ir-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-onnx-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-paddle-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-pytorch-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-tensorflow-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2024.6.0,<2024.6.1.0a0 + - libopus >=1.3.1,<2.0a0 + - librsvg >=2.58.4,<3.0a0 + - libvpx >=1.14.1,<1.15.0a0 + - libxml2 >=2.13.5,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - openh264 >=2.5.0,<2.5.1.0a0 + - openssl >=3.4.0,<4.0a0 + - sdl2 >=2.30.10,<3.0a0 + - svt-av1 >=2.3.0,<2.3.1.0a0 + - x264 >=1!164.3095,<1!165 + - x265 >=3.5,<3.6.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 10140203 + timestamp: 1738952397078 +- conda: https://prefix.dev/conda-forge/osx-arm64/ffmpeg-7.1.0-gpl_h7c3f5a8_110.conda + sha256: 5d0039f0477e81476230d320e10d006df21713e4787a8bb261239713b8368bc0 + md5: ff110f13c4b047c38380bccaf167be1e + depends: + - __osx >=11.0 + - aom >=3.9.1,<3.10.0a0 + - bzip2 >=1.0.8,<2.0a0 + - dav1d >=1.2.1,<1.2.2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - gmp >=6.3.0,<7.0a0 + - harfbuzz >=10.2.0,<11.0a0 + - lame >=3.100,<3.101.0a0 + - libass >=0.17.3,<0.17.4.0a0 + - libcxx >=18 + - libexpat >=2.6.4,<3.0a0 + - libiconv >=1.17,<2.0a0 + - liblzma >=5.6.4,<6.0a0 + - libopenvino >=2024.6.0,<2024.6.1.0a0 + - libopenvino-arm-cpu-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-auto-batch-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-auto-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-hetero-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-ir-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-onnx-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-paddle-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-pytorch-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-tensorflow-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2024.6.0,<2024.6.1.0a0 + - libopus >=1.3.1,<2.0a0 + - librsvg >=2.58.4,<3.0a0 + - libvpx >=1.14.1,<1.15.0a0 + - libxml2 >=2.13.5,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - openh264 >=2.5.0,<2.5.1.0a0 + - openssl >=3.4.0,<4.0a0 + - sdl2 >=2.30.10,<3.0a0 + - svt-av1 >=2.3.0,<2.3.1.0a0 + - x264 >=1!164.3095,<1!165 + - x265 >=3.5,<3.6.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 9146518 + timestamp: 1738952024698 +- conda: https://prefix.dev/conda-forge/win-64/ffmpeg-7.1.1-gpl_h34ab625_703.conda + sha256: e6e93442691f19a3417fe080ce0b8d37b05d8ea455c9280adf58c990471910f9 + md5: a74692c8ef3989d34c2ee6ce11dc02e9 + depends: + - aom >=3.9.1,<3.10.0a0 + - bzip2 >=1.0.8,<2.0a0 + - dav1d >=1.2.1,<1.2.2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.13.3,<3.0a0 + - harfbuzz >=10.4.0,<11.0a0 + - lame >=3.100,<3.101.0a0 + - libexpat >=2.6.4,<3.0a0 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.6.4,<6.0a0 + - libopus >=1.3.1,<2.0a0 + - librsvg >=2.58.4,<3.0a0 + - libvorbis >=1.3.7,<1.4.0a0 + - libxml2 >=2.13.7,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - openh264 >=2.6.0,<2.6.1.0a0 + - openssl >=3.4.1,<4.0a0 + - sdl2 >=2.32.50,<3.0a0 + - svt-av1 >=3.0.2,<3.0.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - x264 >=1!164.3095,<1!165 + - x265 >=3.5,<3.6.0a0 + constrains: + - __cuda >=12.4 + license: GPL-2.0-or-later + license_family: GPL + size: 10062740 + timestamp: 1743287367646 +- conda: https://prefix.dev/conda-forge/linux-64/flann-1.9.2-h3ef53d8_3.conda + sha256: 161408b82d4fb968346817d95ceaed5602ac3842a6bdcc0da42976d553cf627d + md5: 78987081cfa3f7fd9718d0087ec6a989 + depends: + - __glibc >=2.17,<3.0.a0 + - _openmp_mutex >=4.5 + - hdf5 >=1.14.4,<1.14.5.0a0 + - libgcc >=13 + - libstdcxx >=13 + - lz4-c >=1.9.3,<1.10.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1573362 + timestamp: 1733306823915 +- conda: https://prefix.dev/conda-forge/linux-aarch64/flann-1.9.2-h7e74b68_3.conda + sha256: 3e15ecb26d84132495fd9e340b7b8f5323594ff04ebc72e961bcfbe38f3ff866 + md5: 8a4a1b10638fdd584df560a5fce8a80b + depends: + - _openmp_mutex >=4.5 + - hdf5 >=1.14.4,<1.14.5.0a0 + - libgcc >=13 + - libstdcxx >=13 + - lz4-c >=1.9.3,<1.10.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1782962 + timestamp: 1733306815187 +- conda: https://prefix.dev/conda-forge/osx-64/flann-1.9.2-h680e343_3.conda + sha256: 537e0a89c2c3b7d594d972f62ef04df04b3bad9e11fcc88849edf1429402a192 + md5: 51302a45e6863352f6151cdb5adfc16e + depends: + - __osx >=10.13 + - hdf5 >=1.14.4,<1.14.5.0a0 + - libcxx >=18 + - llvm-openmp >=18.1.8 + - lz4-c >=1.9.3,<1.10.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1358957 + timestamp: 1733307131076 +- conda: https://prefix.dev/conda-forge/osx-arm64/flann-1.9.2-h9c23b55_3.conda + sha256: 5eb72d5fbc4fbbceff40b1c9777d5a23134d07e06d3f46230dd0621c584fecf4 + md5: 161cdf595e66df4cfc6e3c8ad4897d80 + depends: + - __osx >=11.0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - libcxx >=18 + - llvm-openmp >=18.1.8 + - lz4-c >=1.9.3,<1.10.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1469598 + timestamp: 1733307300816 +- conda: https://prefix.dev/conda-forge/win-64/flann-1.9.2-h8958603_3.conda + sha256: 77b5f20ff934e4ea75376310801c72a37d723c143b23f7e486043e38951910a3 + md5: d8ae638d6bf742f041ab5a16afef5888 + depends: + - hdf5 >=1.14.4,<1.14.5.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 4324346 + timestamp: 1733307273846 +- conda: https://prefix.dev/conda-forge/linux-64/fltk-1.3.10-hff38c0f_0.conda + sha256: acd4cd48be0fbb5a35c20c041572b1cc8498c0e15c5f49c1d9054c203b409146 + md5: 2d345e1c676fa81aef2c129ac0ed5608 + depends: + - __glibc >=2.17,<3.0.a0 + - freetype >=2.12.1,<3.0a0 + - libgcc >=13 + - libglu + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libstdcxx >=13 + - libxcb >=1.17.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - xorg-libice >=1.1.1,<2.0a0 + - xorg-libsm >=1.2.4,<2.0a0 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxdmcp >=1.1.5,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - xorg-libxrender >=0.9.11,<0.10.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 1500520 + timestamp: 1731908526487 +- conda: https://prefix.dev/conda-forge/linux-aarch64/fltk-1.3.10-hc36ef9c_0.conda + sha256: 2ddf3b8b387fb8fa374367cd1a2c08480b13f3a0970dd2a15cf3046af946d4f2 + md5: 4b4e7099e90f2af2ee4aad9e7b767972 + depends: + - freetype >=2.12.1,<3.0a0 + - libgcc >=13 + - libglu + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libstdcxx >=13 + - libxcb >=1.17.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - xorg-libice >=1.1.1,<2.0a0 + - xorg-libsm >=1.2.4,<2.0a0 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxdmcp >=1.1.5,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - xorg-libxrender >=0.9.11,<0.10.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 1431524 + timestamp: 1731908588986 +- conda: https://prefix.dev/conda-forge/osx-64/fltk-1.3.10-h11de4b3_0.conda + sha256: 1501c41aee9a97531f43029fe4ada66667df24e997d988456e4decd9759ac7a6 + md5: ad48bcf414044c03cafd677f9e79b5f7 + depends: + - __osx >=10.13 + - libcxx >=18 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libxcb >=1.17.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - xorg-libice >=1.1.1,<2.0a0 + - xorg-libsm >=1.2.4,<2.0a0 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxdmcp >=1.1.5,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - xorg-libxrender >=0.9.11,<0.10.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 1273575 + timestamp: 1731908744649 +- conda: https://prefix.dev/conda-forge/osx-arm64/fltk-1.3.10-h46aaf7c_0.conda + sha256: 6823bfe6b3d4c8f17e00e944b185a7a6b72b2b271880302e033702daef5b22c4 + md5: a39e1d4086ea651657c7a71c7e97349b + depends: + - __osx >=11.0 + - libcxx >=18 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libxcb >=1.17.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - xorg-libice >=1.1.1,<2.0a0 + - xorg-libsm >=1.2.4,<2.0a0 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxdmcp >=1.1.5,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - xorg-libxrender >=0.9.11,<0.10.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 1067027 + timestamp: 1731908658623 +- conda: https://prefix.dev/conda-forge/win-64/fltk-1.3.9-h27fc217_1.conda + sha256: 7a2436738bb84a906750d90b44d8be7ec5a62ed1f9ed9f575471c2a3e1cac2a7 + md5: cf0f26c4a2922b57677f3aa26bf2adec + depends: + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.43,<1.7.0a0 + - libxcb >=1.16,<2.0.0a0 + - libzlib >=1.3.1,<2.0a0 + - vc >=14.1,<15 + - vc14_runtime >=14.16.27033 + - xorg-libice >=1.1.1,<2.0a0 + - xorg-libsm >=1.2.4,<2.0a0 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxdmcp + - xorg-libxext >=1.3.4,<2.0a0 + - xorg-libxfixes + - xorg-libxrender >=0.9.11,<0.10.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 1622795 + timestamp: 1720536327400 +- conda: https://prefix.dev/conda-forge/linux-64/fmt-11.1.4-h07f6e7f_1.conda + sha256: 2db2a6a1629bc2ac649b31fd990712446394ce35930025e960e1765a9249af5d + md5: 288a90e722fd7377448b00b2cddcb90d + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: MIT + license_family: MIT + size: 191161 + timestamp: 1742833273257 +- conda: https://prefix.dev/conda-forge/linux-aarch64/fmt-11.1.4-h97e1849_1.conda + sha256: 3bf4d518959db59981334decfa72f86d0152c3174a6a00290ed74eab71d2f1e4 + md5: 04fb431df94c2572f9e0e369325a7e6e + depends: + - libgcc >=13 + - libstdcxx >=13 + license: MIT + license_family: MIT + size: 188134 + timestamp: 1742833331238 +- conda: https://prefix.dev/conda-forge/osx-64/fmt-11.1.4-hbf61d64_1.conda + sha256: 89bf2bcc03738a3d4904dfc9736000033003d4a04647d93d2c867568bf2339ef + md5: dce40ffbf3008b17cb090ad05b13e036 + depends: + - __osx >=10.13 + - libcxx >=18 + license: MIT + license_family: MIT + size: 182448 + timestamp: 1742833422742 +- conda: https://prefix.dev/conda-forge/osx-arm64/fmt-11.1.4-h440487c_1.conda + sha256: 39249dc4021742f1a126ad0efc39904fe058c89fdf43240f39316d34f948f3f1 + md5: f957ef7cf1dda0c27acdfbeff72ddb84 + depends: + - __osx >=11.0 + - libcxx >=18 + license: MIT + license_family: MIT + size: 178005 + timestamp: 1742833557859 +- conda: https://prefix.dev/conda-forge/win-64/fmt-11.1.4-h5f12afc_1.conda + sha256: fd88cd4796572d649da4d249ffb91bd387558c75ab14ad344b7ac45f714079b6 + md5: 65be2289e596e757fc03a5383072a2e7 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 184746 + timestamp: 1742833874774 +- conda: https://prefix.dev/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b + md5: 0c96522c6bdaed4b1566d11387caaf45 + license: BSD-3-Clause + license_family: BSD + size: 397370 + timestamp: 1566932522327 +- conda: https://prefix.dev/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c + md5: 34893075a5c9e55cdafac56607368fc6 + license: OFL-1.1 + license_family: Other + size: 96530 + timestamp: 1620479909603 +- conda: https://prefix.dev/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 + md5: 4d59c254e01d9cde7957100457e2d5fb + license: OFL-1.1 + license_family: Other + size: 700814 + timestamp: 1620479612257 +- conda: https://prefix.dev/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda + sha256: 2821ec1dc454bd8b9a31d0ed22a7ce22422c0aef163c59f49dfdf915d0f0ca14 + md5: 49023d73832ef61042f6a237cb2687e7 + license: LicenseRef-Ubuntu-Font-Licence-Version-1.0 + license_family: Other + size: 1620504 + timestamp: 1727511233259 +- conda: https://prefix.dev/conda-forge/linux-64/fontconfig-2.15.0-h7e30c49_1.conda + sha256: 7093aa19d6df5ccb6ca50329ef8510c6acb6b0d8001191909397368b65b02113 + md5: 8f5b0b297b59e1ac160ad4beec99dbee + depends: + - __glibc >=2.17,<3.0.a0 + - freetype >=2.12.1,<3.0a0 + - libexpat >=2.6.3,<3.0a0 + - libgcc >=13 + - libuuid >=2.38.1,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 265599 + timestamp: 1730283881107 +- conda: https://prefix.dev/conda-forge/linux-aarch64/fontconfig-2.15.0-h8dda3cd_1.conda + sha256: fe023bb8917c8a3138af86ef537b70c8c5d60c44f93946a87d1e8bb1a6634b55 + md5: 112b71b6af28b47c624bcbeefeea685b + depends: + - freetype >=2.12.1,<3.0a0 + - libexpat >=2.6.3,<3.0a0 + - libgcc >=13 + - libuuid >=2.38.1,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 277832 + timestamp: 1730284967179 +- conda: https://prefix.dev/conda-forge/osx-64/fontconfig-2.15.0-h37eeddb_1.conda + sha256: 61a9aa1d2dd115ffc1ab372966dc8b1ac7b69870e6b1744641da276b31ea5c0b + md5: 84ccec5ee37eb03dd352db0a3f89ada3 + depends: + - __osx >=10.13 + - freetype >=2.12.1,<3.0a0 + - libexpat >=2.6.3,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 232313 + timestamp: 1730283983397 +- conda: https://prefix.dev/conda-forge/osx-arm64/fontconfig-2.15.0-h1383a14_1.conda + sha256: f79d3d816fafbd6a2b0f75ebc3251a30d3294b08af9bb747194121f5efa364bc + md5: 7b29f48742cea5d1ccb5edd839cb5621 + depends: + - __osx >=11.0 + - freetype >=2.12.1,<3.0a0 + - libexpat >=2.6.3,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 234227 + timestamp: 1730284037572 +- conda: https://prefix.dev/conda-forge/win-64/fontconfig-2.15.0-h765892d_1.conda + sha256: ed122fc858fb95768ca9ca77e73c8d9ddc21d4b2e13aaab5281e27593e840691 + md5: 9bb0026a2131b09404c59c4290c697cd + depends: + - freetype >=2.12.1,<3.0a0 + - libexpat >=2.6.3,<3.0a0 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 192355 + timestamp: 1730284147944 +- conda: https://prefix.dev/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + md5: fee5683a3f04bd15cbd8318b096a27ab + depends: + - fonts-conda-forge + license: BSD-3-Clause + license_family: BSD + size: 3667 + timestamp: 1566974674465 +- conda: https://prefix.dev/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 + md5: f766549260d6815b0c52253f1fb1bb29 + depends: + - font-ttf-dejavu-sans-mono + - font-ttf-inconsolata + - font-ttf-source-code-pro + - font-ttf-ubuntu + license: BSD-3-Clause + license_family: BSD + size: 4102 + timestamp: 1566932280397 +- conda: https://prefix.dev/conda-forge/linux-64/fonttools-4.56.0-py312h178313f_0.conda + sha256: 76ca95b4111fe27e64d74111b416b3462ad3db99f7109cbdf50e6e4b67dcf5b7 + md5: 2f8a66f2f9eb931cdde040d02c6ab54c + depends: + - __glibc >=2.17,<3.0.a0 + - brotli + - libgcc >=13 + - munkres + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - unicodedata2 >=15.1.0 + license: MIT + license_family: MIT + size: 2834054 + timestamp: 1738940929849 +- conda: https://prefix.dev/conda-forge/linux-aarch64/fonttools-4.56.0-py312hcc812fe_0.conda + sha256: b76344ebd6c48f1e89fc8c34e739db73a7f182398af6bea2b7e0846b4417f688 + md5: d82ee4c4cedaed76ceba8769d4365e32 + depends: + - brotli + - libgcc >=13 + - munkres + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - unicodedata2 >=15.1.0 + license: MIT + license_family: MIT + size: 2783736 + timestamp: 1738940566488 +- conda: https://prefix.dev/conda-forge/osx-64/fonttools-4.56.0-py312h3520af0_0.conda + sha256: 9b206989c9d5e68120d264b6798b9afdfbca6b9a8705cdd71b68a75ce58f81b7 + md5: 9b603b2fa3072c966ef2ff119e8203f3 + depends: + - __osx >=10.13 + - brotli + - munkres + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - unicodedata2 >=15.1.0 + license: MIT + license_family: MIT + size: 2761261 + timestamp: 1738940558929 +- conda: https://prefix.dev/conda-forge/osx-arm64/fonttools-4.56.0-py312h998013c_0.conda + sha256: 6b003a5100ec58e1bd456bf55d0727606f7b067628aed1a7c5d8cf4f0174bfc5 + md5: a5cf7d0629863be81d90054882de908c + depends: + - __osx >=11.0 + - brotli + - munkres + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - unicodedata2 >=15.1.0 + license: MIT + license_family: MIT + size: 2753059 + timestamp: 1738940607300 +- conda: https://prefix.dev/conda-forge/win-64/fonttools-4.56.0-py312h31fea79_0.conda + sha256: 31f245d4ceb7a8e9df8d292ff1efdb4be9a8fa7a9be7a1d0394465aa7f824d50 + md5: 7c08698c54ca6390314c19167c16745e + depends: + - brotli + - munkres + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - unicodedata2 >=15.1.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 2413563 + timestamp: 1738940929060 +- conda: . + name: freecad + version: 1.1.0dev + build: h3c70cbc_0 + subdir: win-64 + depends: + - blas + - blinker + - calculix + - debugpy + - docutils + - gmsh + - graphviz + - jinja2 + - lark + - lxml + - matplotlib-base + - nine + - noqt5 + - numpy + - occt + - olefile + - opencamlib + - opencv + - pandas + - pip + - pivy + - ply + - pycollada + - pyside6 + - python ==3.12.9 + - pythonocc-core + - pyyaml + - qt6-main ==6.8.2 + - requests + - scipy + - sympy + - vtk + - xlutils + - qt6-main >=6.8.2,<6.9.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - pcl >=1.15.0,<1.15.1.0a0 + - libzlib >=1.3.1,<2.0a0 + - libboost >=1.86.0,<1.87.0a0 + - occt >=7.8.1,<7.8.2.0a0 + - xerces-c >=3.3.0,<3.4.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + - coin3d >=4.0.3,<4.1.0a0 + - fmt >=11.1.4,<11.2.0a0 + - freetype >=2.13.3,<3.0a0 + - numpy >=1.21,<3 + - python_abi 3.12.* *_cp312 + - smesh >=9.9.0.0,<9.9.1.0a0 + - vtk-base >=9.3.1,<9.3.2.0a0 + input: + hash: 106cd18262120554d85fdaabb15ac65eb8eae03675654ff6ae26f2b7820cf1a2 + globs: + - pixi.toml +- conda: . + name: freecad + version: 1.1.0dev + build: h6d4d2f9_0 + subdir: linux-aarch64 + depends: + - blas + - blinker + - calculix + - debugpy + - docutils + - gmsh + - graphviz + - jinja2 + - lark + - lxml + - matplotlib-base + - nine + - noqt5 + - numpy + - occt + - olefile + - opencamlib + - opencv + - pandas + - pip + - pivy + - ply + - pycollada + - pyside6 + - python ==3.12.9 + - pythonocc-core + - pyyaml + - qt6-main ==6.8.2 + - requests + - scipy + - sympy + - vtk + - xlutils + - libspnav + - numpy >=1.21,<3 + - smesh >=9.9.0.0,<9.9.1.0a0 + - libboost >=1.86.0,<1.87.0a0 + - coin3d >=4.0.3,<4.1.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + - libzlib >=1.3.1,<2.0a0 + - fmt >=11.1.4,<11.2.0a0 + - xerces-c >=3.3.0,<3.4.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - pcl >=1.15.0,<1.15.1.0a0 + - freetype >=2.13.3,<3.0a0 + - qt6-main >=6.8.2,<6.9.0a0 + - python_abi 3.12.* *_cp312 + - vtk-base >=9.3.1,<9.3.2.0a0 + - occt >=7.8.1,<7.8.2.0a0 + input: + hash: 106cd18262120554d85fdaabb15ac65eb8eae03675654ff6ae26f2b7820cf1a2 + globs: + - pixi.toml +- conda: . + name: freecad + version: 1.1.0dev + build: h81b34b9_0 + subdir: linux-64 + depends: + - blas + - blinker + - calculix + - debugpy + - docutils + - gmsh + - graphviz + - jinja2 + - lark + - lxml + - matplotlib-base + - nine + - noqt5 + - numpy + - occt + - olefile + - opencamlib + - opencv + - pandas + - pip + - pivy + - ply + - pycollada + - pyside6 + - python ==3.12.9 + - pythonocc-core + - pyyaml + - qt6-main ==6.8.2 + - requests + - scipy + - sympy + - vtk + - xlutils + - libspnav + - __glibc >=2.17,<3.0.a0 + - qt6-main >=6.8.2,<6.9.0a0 + - xerces-c >=3.3.0,<3.4.0a0 + - python_abi 3.12.* *_cp312 + - smesh >=9.9.0.0,<9.9.1.0a0 + - libboost >=1.86.0,<1.87.0a0 + - vtk-base >=9.3.1,<9.3.2.0a0 + - coin3d >=4.0.3,<4.1.0a0 + - numpy >=1.21,<3 + - libzlib >=1.3.1,<2.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - freetype >=2.13.3,<3.0a0 + - fmt >=11.1.4,<11.2.0a0 + - occt >=7.8.1,<7.8.2.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + - pcl >=1.15.0,<1.15.1.0a0 + input: + hash: 106cd18262120554d85fdaabb15ac65eb8eae03675654ff6ae26f2b7820cf1a2 + globs: + - pixi.toml +- conda: . + name: freecad + version: 1.1.0dev + build: he0f4bc8_0 + subdir: osx-64 + depends: + - blas + - blinker + - calculix + - debugpy + - docutils + - gmsh + - graphviz + - jinja2 + - lark + - lxml + - matplotlib-base + - nine + - noqt5 + - numpy + - occt + - olefile + - opencamlib + - opencv + - pandas + - pip + - pivy + - ply + - pycollada + - pyside6 + - python ==3.12.9 + - pythonocc-core + - pyyaml + - qt6-main ==6.8.2 + - requests + - scipy + - sympy + - vtk + - xlutils + - libzlib >=1.3.1,<2.0a0 + - fmt >=11.1.4,<11.2.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + - vtk-base >=9.3.1,<9.3.2.0a0 + - libboost >=1.86.0,<1.87.0a0 + - xerces-c >=3.3.0,<3.4.0a0 + - python_abi 3.12.* *_cp312 + - hdf5 >=1.14.4,<1.14.5.0a0 + - freetype >=2.13.3,<3.0a0 + - qt6-main >=6.8.2,<6.9.0a0 + - numpy >=1.21,<3 + - coin3d >=4.0.3,<4.1.0a0 + - smesh >=9.9.0.0,<9.9.1.0a0 + - occt >=7.8.1,<7.8.2.0a0 + - pcl >=1.15.0,<1.15.1.0a0 + input: + hash: 106cd18262120554d85fdaabb15ac65eb8eae03675654ff6ae26f2b7820cf1a2 + globs: + - pixi.toml +- conda: . + name: freecad + version: 1.1.0dev + build: he8ea13f_0 + subdir: osx-arm64 + depends: + - blas + - blinker + - calculix + - debugpy + - docutils + - gmsh + - graphviz + - jinja2 + - lark + - lxml + - matplotlib-base + - nine + - noqt5 + - numpy + - occt + - olefile + - opencamlib + - opencv + - pandas + - pip + - pivy + - ply + - pycollada + - pyside6 + - python ==3.12.9 + - pythonocc-core + - pyyaml + - qt6-main ==6.8.2 + - requests + - scipy + - sympy + - vtk + - xlutils + - coin3d >=4.0.3,<4.1.0a0 + - python_abi 3.12.* *_cp312 + - qt6-main >=6.8.2,<6.9.0a0 + - libboost >=1.86.0,<1.87.0a0 + - numpy >=1.21,<3 + - fmt >=11.1.4,<11.2.0a0 + - freetype >=2.13.3,<3.0a0 + - smesh >=9.9.0.0,<9.9.1.0a0 + - vtk-base >=9.3.1,<9.3.2.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - occt >=7.8.1,<7.8.2.0a0 + - pcl >=1.15.0,<1.15.1.0a0 + - libzlib >=1.3.1,<2.0a0 + - xerces-c >=3.3.0,<3.4.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + input: + hash: 106cd18262120554d85fdaabb15ac65eb8eae03675654ff6ae26f2b7820cf1a2 + globs: + - pixi.toml +- conda: https://prefix.dev/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda + sha256: 676540a8e7f73a894cb1fcb870e7bec623ec1c0a2d277094fd713261a02d8d56 + md5: 84ec3f5b46f3076be49f2cf3f1cfbf02 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libxcb >=1.16,<2.0.0a0 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxext >=1.3.4,<2.0a0 + - xorg-libxfixes + - xorg-libxi + license: MIT + license_family: MIT + size: 144010 + timestamp: 1719014356708 +- conda: https://prefix.dev/conda-forge/linux-aarch64/freeglut-3.2.2-h5eeb66e_3.conda + sha256: 22a2104d5d6573e8445b7f264533bcd7595cff36d2b356cb1925af5ea62b6a47 + md5: c6c65566e07fec709e1ea4bc95fc56e4 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libxcb >=1.16,<2.0.0a0 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxext >=1.3.4,<2.0a0 + - xorg-libxfixes + - xorg-libxi + license: MIT + license_family: MIT + size: 144992 + timestamp: 1719014317113 +- conda: https://prefix.dev/conda-forge/win-64/freeglut-3.2.2-he0c23c2_3.conda + sha256: 8b41913ed6c8c0dadda463a649bc16f45e88faa58553efc6830f4de1138c97f2 + md5: 5872031ef7cba8435ff24af056777473 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 111956 + timestamp: 1719014753462 +- conda: https://prefix.dev/conda-forge/linux-64/freeimage-3.18.0-h3a85593_22.conda + sha256: 03ccff5d255eab7a1736de9eeb539fbb1333036fa5e37ea7c8ec428270067c99 + md5: bbdf3d43d752b793ac81f27b28c49e2d + depends: + - __glibc >=2.17,<3.0.a0 + - imath >=3.1.12,<3.1.13.0a0 + - jxrlib >=1.1,<1.2.0a0 + - libgcc >=13 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libraw >=0.21.3,<0.22.0a0 + - libstdcxx >=13 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.4.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openexr >=3.3.1,<3.4.0a0 + - openjpeg >=2.5.2,<3.0a0 + license: GPL-2.0-or-later OR GPL-3.0-or-later OR FreeImage + size: 467860 + timestamp: 1729024045245 +- conda: https://prefix.dev/conda-forge/linux-aarch64/freeimage-3.18.0-h6cb32c8_22.conda + sha256: 0a0ed82992c87aa67604569d35b6180863ca21081e94739194e6adde3f92f84d + md5: f6891bd5c49b824889b065446edefe37 + depends: + - imath >=3.1.12,<3.1.13.0a0 + - jxrlib >=1.1,<1.2.0a0 + - libgcc >=13 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libraw >=0.21.3,<0.22.0a0 + - libstdcxx >=13 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.4.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openexr >=3.3.1,<3.4.0a0 + - openjpeg >=2.5.2,<3.0a0 + license: GPL-2.0-or-later OR GPL-3.0-or-later OR FreeImage + size: 453451 + timestamp: 1729024016441 +- conda: https://prefix.dev/conda-forge/osx-64/freeimage-3.18.0-h7cd8ba8_22.conda + sha256: 89553f22495b2e22b8f603126d6a580cc0cbc5517e9c0dff4be4a3e9055f8f56 + md5: 4ea546f119eaf4a1457ded2054982d52 + depends: + - __osx >=10.13 + - imath >=3.1.12,<3.1.13.0a0 + - jxrlib >=1.1,<1.2.0a0 + - libcxx >=17 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libraw >=0.21.3,<0.22.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.4.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openexr >=3.3.1,<3.4.0a0 + - openjpeg >=2.5.2,<3.0a0 + license: GPL-2.0-or-later OR GPL-3.0-or-later OR FreeImage + size: 410944 + timestamp: 1729024174328 +- conda: https://prefix.dev/conda-forge/osx-arm64/freeimage-3.18.0-h2e169f6_22.conda + sha256: 74dec75a67f9e95058f188eccfb8d82f59e9bbd1444a733cb08f4a0c3e8f7489 + md5: 98187c5ae2ea4cd05afc2a8bf0fd3b1d + depends: + - __osx >=11.0 + - imath >=3.1.12,<3.1.13.0a0 + - jxrlib >=1.1,<1.2.0a0 + - libcxx >=17 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libraw >=0.21.3,<0.22.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.4.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openexr >=3.3.1,<3.4.0a0 + - openjpeg >=2.5.2,<3.0a0 + license: GPL-2.0-or-later OR GPL-3.0-or-later OR FreeImage + size: 366466 + timestamp: 1729024195241 +- conda: https://prefix.dev/conda-forge/win-64/freeimage-3.18.0-h8310ca0_22.conda + sha256: 89ff5bd00c94d201b76f90b939cbd9ec013171c45d9967f7dac71d330cd10343 + md5: 5c8c15da921f6a9388d37c4fc81dad4a + depends: + - imath >=3.1.12,<3.1.13.0a0 + - jxrlib >=1.1,<1.2.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libraw >=0.21.3,<0.22.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.4.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openexr >=3.3.1,<3.4.0a0 + - openjpeg >=2.5.2,<3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: GPL-2.0-or-later OR GPL-3.0-or-later OR FreeImage + size: 465887 + timestamp: 1729024520954 +- conda: https://prefix.dev/conda-forge/linux-64/freetype-2.13.3-h48d6fc4_0.conda + sha256: 7385577509a9c4730130f54bb6841b9b416249d5f4e9f74bf313e6378e313c57 + md5: 9ecfd6f2ca17077dd9c2d24770bb9ccd + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libpng >=1.6.47,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + license: GPL-2.0-only OR FTL + size: 639682 + timestamp: 1741863789964 +- conda: https://prefix.dev/conda-forge/linux-aarch64/freetype-2.13.3-he93130f_0.conda + sha256: 242eb2a7888d3d624535ec3c488c9db7d4cdfabb6e9ae78beea6abc45d6a4eae + md5: 3743da39462f21956d6429a4a554ff4f + depends: + - libgcc >=13 + - libpng >=1.6.47,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + license: GPL-2.0-only OR FTL + size: 648847 + timestamp: 1741863827451 +- conda: https://prefix.dev/conda-forge/osx-64/freetype-2.13.3-h40dfd5c_0.conda + sha256: 66cc36a313accf28f4ab9b40ad11e4a8ff757c11314cd499435d9b8df1fa0150 + md5: e391f0c2d07df272cf7c6df235e97bb9 + depends: + - __osx >=10.13 + - libpng >=1.6.47,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + license: GPL-2.0-only OR FTL + size: 602964 + timestamp: 1741863884014 +- conda: https://prefix.dev/conda-forge/osx-arm64/freetype-2.13.3-h1d14073_0.conda + sha256: 2c273de32431c431a118a8cd33afb6efc616ddbbab9e5ba0fe31e3b4d1ff57a3 + md5: 630445a505ea6e59f55714853d8c9ed0 + depends: + - __osx >=11.0 + - libpng >=1.6.47,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + license: GPL-2.0-only OR FTL + size: 590002 + timestamp: 1741863913870 +- conda: https://prefix.dev/conda-forge/win-64/freetype-2.13.3-h0b5ce68_0.conda + sha256: 67e3af0fbe6c25f5ab1af9a3d3000464c5e88a8a0b4b06602f4a5243a8a1fd42 + md5: 9c461ed7b07fb360d2c8cfe726c7d521 + depends: + - libpng >=1.6.47,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: GPL-2.0-only OR FTL + size: 510718 + timestamp: 1741864688363 +- conda: https://prefix.dev/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2 + sha256: 5d7b6c0ee7743ba41399e9e05a58ccc1cfc903942e49ff6f677f6e423ea7a627 + md5: ac7bc6a654f8f41b352b38f4051135f8 + depends: + - libgcc-ng >=7.5.0 + license: LGPL-2.1 + size: 114383 + timestamp: 1604416621168 +- conda: https://prefix.dev/conda-forge/linux-aarch64/fribidi-1.0.10-hb9de7d4_0.tar.bz2 + sha256: bcb5a40f1aaf4ea8cda2fc6b2b12aa336403772121350281ce31fd2d9d3e214e + md5: f6c91a43eace6fb926a8730b3b9a8a50 + depends: + - libgcc-ng >=7.5.0 + license: LGPL-2.1 + size: 115689 + timestamp: 1604417149643 +- conda: https://prefix.dev/conda-forge/osx-64/fribidi-1.0.10-hbcb3906_0.tar.bz2 + sha256: 4f6db86ecc4984cd4ac88ca52030726c3cfd11a64dfb15c8602025ee3001a2b5 + md5: f1c6b41e0f56998ecd9a3e210faa1dc0 + license: LGPL-2.1 + size: 65388 + timestamp: 1604417213 +- conda: https://prefix.dev/conda-forge/osx-arm64/fribidi-1.0.10-h27ca646_0.tar.bz2 + sha256: 4b37ea851a2cf85edf0a63d2a63266847ec3dcbba4a31156d430cdd6aa811303 + md5: c64443234ff91d70cb9c7dc926c58834 + license: LGPL-2.1 + size: 60255 + timestamp: 1604417405528 +- conda: https://prefix.dev/conda-forge/win-64/fribidi-1.0.10-h8d14728_0.tar.bz2 + sha256: e0323e6d7b6047042970812ee810c6b1e1a11a3af4025db26d0965ae5d206104 + md5: 807e81d915f2bb2e49951648615241f6 + depends: + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 + license: LGPL-2.1 + size: 64567 + timestamp: 1604417122064 +- conda: https://prefix.dev/conda-forge/linux-64/frozenlist-1.5.0-py312h178313f_1.conda + sha256: 501e20626798b6d7f130f4db0fb02c0385d8f4c11ca525925602a4208afb343f + md5: fb986e1c089021979dc79606af78ef8f + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: APACHE + size: 60939 + timestamp: 1737645356438 +- conda: https://prefix.dev/conda-forge/linux-aarch64/frozenlist-1.5.0-py312hcc812fe_1.conda + sha256: 84895c5e207e0cb2044f3607fb36b82eb8cb45f0a009d03dc04c777ed975757d + md5: 9090bf5c43e8011fb2e9a82a1db20cc3 + depends: + - libgcc >=13 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: APACHE + size: 60472 + timestamp: 1737645511278 +- conda: https://prefix.dev/conda-forge/osx-64/frozenlist-1.5.0-py312h3520af0_1.conda + sha256: 332d78beaec0ab79f176656e71b819d75bb72a9a9c99bb1dc0387c7f0c34f016 + md5: 887a4fa613758220fff7641b9d3ead95 + depends: + - __osx >=10.13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: APACHE + size: 56391 + timestamp: 1737645535865 +- conda: https://prefix.dev/conda-forge/osx-arm64/frozenlist-1.5.0-py312h998013c_1.conda + sha256: d503ac8c050abdbd129253973f23be34944978d510de78ef5a3e6aa1e3d9552d + md5: 5eb3715c7e3fa9b533361375bfefe6ee + depends: + - __osx >=11.0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: APACHE + size: 57256 + timestamp: 1737645503377 +- conda: https://prefix.dev/conda-forge/win-64/frozenlist-1.5.0-py312h31fea79_1.conda + sha256: cd76ed5939c4a8ade6305fb204c8816a4ba1e1dfed8c589aa05ec4005369c5cd + md5: 2f8a0fcbbd39e3c5d363a1918198d434 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 54592 + timestamp: 1737645777248 +- conda: https://prefix.dev/conda-forge/linux-64/gdk-pixbuf-2.42.12-hb9ae30d_0.conda + sha256: d5283b95a8d49dcd88d29b360d8b38694aaa905d968d156d72ab71d32b38facb + md5: 201db6c2d9a3c5e46573ac4cb2e92f4f + depends: + - libgcc-ng >=12 + - libglib >=2.80.2,<3.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.43,<1.7.0a0 + - libtiff >=4.6.0,<4.8.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 528149 + timestamp: 1715782983957 +- conda: https://prefix.dev/conda-forge/linux-aarch64/gdk-pixbuf-2.42.12-ha61d561_0.conda + sha256: 608f64aa9cf3085e91da8d417aa7680715130b4da73d8aabc50b19e29de697d2 + md5: 332ed304e6d1c1333ccbdc0fdd722fe9 + depends: + - libgcc-ng >=12 + - libglib >=2.80.2,<3.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.43,<1.7.0a0 + - libtiff >=4.6.0,<4.8.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 536613 + timestamp: 1715784386033 +- conda: https://prefix.dev/conda-forge/osx-64/gdk-pixbuf-2.42.12-ha587570_0.conda + sha256: 92cb602ef86feb35252ee909e19536fa043bd85b8507450ad8264cfa518a5881 + md5: ee186d2e8db4605030753dc05025d4a0 + depends: + - __osx >=10.13 + - libglib >=2.80.2,<3.0a0 + - libintl >=0.22.5,<1.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.43,<1.7.0a0 + - libtiff >=4.6.0,<4.8.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 516815 + timestamp: 1715783154558 +- conda: https://prefix.dev/conda-forge/osx-arm64/gdk-pixbuf-2.42.12-h7ddc832_0.conda + sha256: 72bcf0a4d3f9aa6d99d7d1d224d19f76ccdb3a4fa85e60f77d17e17985c81bd2 + md5: 151309a7e1eb57a3c2ab8088a1d74f3e + depends: + - __osx >=11.0 + - libglib >=2.80.2,<3.0a0 + - libintl >=0.22.5,<1.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.43,<1.7.0a0 + - libtiff >=4.6.0,<4.8.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 509570 + timestamp: 1715783199780 +- conda: https://prefix.dev/conda-forge/win-64/gdk-pixbuf-2.42.12-hed59a49_0.conda + sha256: 7a7768a5e65092242071f99b4cafe3e59546f9260ae472d3aa10a9a9aa869c3c + md5: 350196a65e715882abefffd1a702172d + depends: + - libglib >=2.80.2,<3.0a0 + - libintl >=0.22.5,<1.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.43,<1.7.0a0 + - libtiff >=4.6.0,<4.8.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.1-or-later + license_family: LGPL + size: 523967 + timestamp: 1715783547727 +- conda: https://prefix.dev/conda-forge/win-64/getopt-win32-0.1-hcfcfb64_1.conda + sha256: f3b6e689724a62f36591f6f0e4657db5507feca78e7ef08690a6b2a384216a5c + md5: 714d0882dc5e692ca4683d8e520f73c6 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-3.0-only + license_family: GPL + size: 21903 + timestamp: 1694400856979 +- conda: https://prefix.dev/conda-forge/linux-64/gettext-0.23.1-h5888daf_0.conda + sha256: 9d93e75a63a8ca8f86d1be09f68f1211754e6f1e9ee4fa6d90b9d46ee0f1dabb + md5: 0754038c806eae440582da1c3af85577 + depends: + - __glibc >=2.17,<3.0.a0 + - gettext-tools 0.23.1 h5888daf_0 + - libasprintf 0.23.1 h8e693c7_0 + - libasprintf-devel 0.23.1 h8e693c7_0 + - libgcc >=13 + - libgettextpo 0.23.1 h5888daf_0 + - libgettextpo-devel 0.23.1 h5888daf_0 + - libstdcxx >=13 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 484344 + timestamp: 1739038829530 +- conda: https://prefix.dev/conda-forge/linux-aarch64/gettext-0.23.1-h5ad3122_0.conda + sha256: fae61ce07f930c00de83d7bc3b5bfc1d981d500517894434632c1565b9a6e579 + md5: 6a8190d3f7d7a171aeacf7d01bb9b14f + depends: + - gettext-tools 0.23.1 h5ad3122_0 + - libasprintf 0.23.1 h5e0f5ae_0 + - libasprintf-devel 0.23.1 h5e0f5ae_0 + - libgcc >=13 + - libgettextpo 0.23.1 h5ad3122_0 + - libgettextpo-devel 0.23.1 h5ad3122_0 + - libstdcxx >=13 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 479395 + timestamp: 1739038679347 +- conda: https://prefix.dev/conda-forge/osx-64/gettext-0.23.1-hd385c8e_0.conda + sha256: b0a259a09b23892fb93b93badb1b0badee183ba1fb1dbf8c443c3564641800fd + md5: 22d89ca70e22979c38bd0146abf21c2a + depends: + - __osx >=10.13 + - gettext-tools 0.23.1 h27064b9_0 + - libasprintf 0.23.1 h27064b9_0 + - libasprintf-devel 0.23.1 h27064b9_0 + - libcxx >=18 + - libgettextpo 0.23.1 h27064b9_0 + - libgettextpo-devel 0.23.1 h27064b9_0 + - libiconv >=1.17,<2.0a0 + - libintl 0.23.1 h27064b9_0 + - libintl-devel 0.23.1 h27064b9_0 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 484317 + timestamp: 1739039350883 +- conda: https://prefix.dev/conda-forge/osx-arm64/gettext-0.23.1-h3dcc1bd_0.conda + sha256: 9311cd9e64f0ae3bccae58b5b68a4804abd8b3c49f4f327b9573b50b026b317e + md5: 123c4d62e1bcba6274511af8c7cf40d5 + depends: + - __osx >=11.0 + - gettext-tools 0.23.1 h493aca8_0 + - libasprintf 0.23.1 h493aca8_0 + - libasprintf-devel 0.23.1 h493aca8_0 + - libcxx >=18 + - libgettextpo 0.23.1 h493aca8_0 + - libgettextpo-devel 0.23.1 h493aca8_0 + - libiconv >=1.17,<2.0a0 + - libintl 0.23.1 h493aca8_0 + - libintl-devel 0.23.1 h493aca8_0 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 484476 + timestamp: 1739039461682 +- conda: https://prefix.dev/conda-forge/linux-64/gettext-tools-0.23.1-h5888daf_0.conda + sha256: dd2b54a823ea994c2a7908fcce40e1e612ca00cb9944f2382624ff2d3aa8db03 + md5: 2f659535feef3cfb782f7053c8775a32 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: GPL-3.0-or-later + license_family: GPL + size: 2967824 + timestamp: 1739038787800 +- conda: https://prefix.dev/conda-forge/linux-aarch64/gettext-tools-0.23.1-h5ad3122_0.conda + sha256: 01f55fbf243f471ef426751de914b62fa21418ca3d0aa7a6983f0f87f6ec84e4 + md5: ba6d592245d2c0eb497cd11f70b50df7 + depends: + - libgcc >=13 + license: GPL-3.0-or-later + license_family: GPL + size: 3232815 + timestamp: 1739038646552 +- conda: https://prefix.dev/conda-forge/osx-64/gettext-tools-0.23.1-h27064b9_0.conda + sha256: e9e9afb674b0ec5af38ca42b5518d8ee52b0aada90151b76199764bb956ebb3a + md5: a6bc310a08cf42286627c818da4c0ba1 + depends: + - __osx >=10.13 + - libiconv >=1.17,<2.0a0 + - libintl 0.23.1 h27064b9_0 + license: GPL-3.0-or-later + license_family: GPL + size: 2962725 + timestamp: 1739039298909 +- conda: https://prefix.dev/conda-forge/osx-arm64/gettext-tools-0.23.1-h493aca8_0.conda + sha256: c26b38bcff84b3af52f061f55de27a45fb2e9a0544c32b3cbddf8be97c80c296 + md5: 4086817e75778198f96c9b2ed4bc5a6e + depends: + - __osx >=11.0 + - libiconv >=1.17,<2.0a0 + - libintl 0.23.1 h493aca8_0 + license: GPL-3.0-or-later + license_family: GPL + size: 2890553 + timestamp: 1739039406578 +- conda: https://prefix.dev/conda-forge/win-64/git-2.49.0-h57928b3_0.conda + sha256: 23c313d9a6e7784bdacc71d7fe9d5cd36d6984908e716422ed8ad9b38162d85f + md5: 30c89cbda81237c8501ba98adac10ad7 + license: GPL-2.0-or-later and LGPL-2.1-or-later + size: 127194688 + timestamp: 1742298397813 +- conda: https://prefix.dev/conda-forge/linux-64/gl2ps-1.4.2-hae5d5c5_1.conda + sha256: 68f071ea25e79ee427c0d6c35ccc137d66f093a37660a4e41bafe0c49d64f2d6 + md5: 00e642ec191a19bf806a3915800e9524 + depends: + - libgcc-ng >=12 + - libpng >=1.6.43,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 74102 + timestamp: 1718542981099 +- conda: https://prefix.dev/conda-forge/linux-aarch64/gl2ps-1.4.2-hedfd65a_1.conda + sha256: e6500b15fd2dbd776df204556702bb2c90d037523c18cd0a111c7c0f0d314aa2 + md5: 6a087dc84254035cbde984f2c010c9ef + depends: + - libgcc-ng >=12 + - libpng >=1.6.43,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 72023 + timestamp: 1718542978037 +- conda: https://prefix.dev/conda-forge/osx-64/gl2ps-1.4.2-hd82a5f3_1.conda + sha256: 2da5a699a75a9366996d469e05bbf2014f62102b2da70607a2230f9031ca7f52 + md5: 707318c6171d4d8b07b51e0de03c7595 + depends: + - __osx >=10.13 + - libpng >=1.6.43,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 67880 + timestamp: 1718542959037 +- conda: https://prefix.dev/conda-forge/osx-arm64/gl2ps-1.4.2-hc97c1ff_1.conda + sha256: b6088d2b1eccebc8adc1e6c36df0849b300d957cff3e6a33fc9081d2e9efaf22 + md5: 8e790b98d38f4d56b64308c642dd5533 + depends: + - __osx >=11.0 + - libpng >=1.6.43,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 63049 + timestamp: 1718543005831 +- conda: https://prefix.dev/conda-forge/win-64/gl2ps-1.4.2-had7236b_1.conda + sha256: 5a18f0aa963adb4402dbce93516f40756beaa206e82c56592aafb1eb88060ba5 + md5: 033491c5cb1ce4e915238307f0136fa0 + depends: + - libpng >=1.6.43,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.0-or-later + license_family: LGPL + size: 71943 + timestamp: 1718543473790 +- conda: https://prefix.dev/conda-forge/linux-64/glew-2.1.0-h9c3ff4c_2.tar.bz2 + sha256: 86f5484e38f4604f7694b14f64238e932e8fd8d7364e86557f4911eded2843ae + md5: fb05eb5c47590b247658243d27fc32f1 + depends: + - libgcc-ng >=9.3.0 + - libglu + - libstdcxx-ng >=9.3.0 + - xorg-libx11 + - xorg-libxext + license: BSD-3-Clause + license_family: BSD + size: 662569 + timestamp: 1607113198887 +- conda: https://prefix.dev/conda-forge/linux-aarch64/glew-2.1.0-h01db608_2.tar.bz2 + sha256: f872cc93507b833ec5f2f08e479cc0074e5d73defe4f91d54f667a324d0b4f61 + md5: 2a46529de1ff766f31333d3cdff2b734 + depends: + - libgcc-ng >=9.3.0 + - libglu + - libstdcxx-ng >=9.3.0 + - xorg-libx11 + - xorg-libxext + license: BSD-3-Clause + license_family: BSD + size: 649830 + timestamp: 1607113149975 +- conda: https://prefix.dev/conda-forge/osx-64/glew-2.1.0-h046ec9c_2.tar.bz2 + sha256: 1d114d93fd4bf043aa6fccc550379c0ac0a48461633cd1e1e49abe55be8562df + md5: 6b753c8c7e4c46a8eb17b6f1781f958a + depends: + - libcxx >=11.0.0 + license: BSD-3-Clause + license_family: BSD + size: 708867 + timestamp: 1607113212595 +- conda: https://prefix.dev/conda-forge/osx-arm64/glew-2.1.0-h9f76cd9_2.tar.bz2 + sha256: 582991e48b1000eea38a1df68309652a92c1af62fa96f78e6659c799d28d00cf + md5: ec67d4b810ad567618722a2772e9755c + depends: + - libcxx >=11.0.0 + license: BSD-3-Clause + license_family: BSD + size: 783742 + timestamp: 1607113139225 +- conda: https://prefix.dev/conda-forge/win-64/glew-2.1.0-h39d44d4_2.tar.bz2 + sha256: 6a780b5ca7253129ea5e63671f0aeafc8f119167e170a60ccbd8573669ef848d + md5: 840d21c1ee66b91af3d0211e7766393a + depends: + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 + license: BSD-3-Clause + license_family: BSD + size: 963275 + timestamp: 1607113700054 +- conda: https://prefix.dev/conda-forge/linux-64/glib-tools-2.84.0-h4833e2c_0.conda + sha256: bb9124c26e382627f343ffb7da48d30eadb27b40d461b1d50622610e48c45595 + md5: 2d876130380b1593f25c20998df37880 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libglib 2.84.0 h2ff4ddf_0 + license: LGPL-2.1-or-later + size: 117012 + timestamp: 1743038948388 +- conda: https://prefix.dev/conda-forge/linux-aarch64/glib-tools-2.84.0-h78ca943_0.conda + sha256: 5df4f6f24bf400b0ad1ac899c6e28ec805e50cdbfedfdbf2ea3269311a8bf317 + md5: 7fc718e1c9b5e282519e7d3e343148f9 + depends: + - libgcc >=13 + - libglib 2.84.0 hc486b8e_0 + license: LGPL-2.1-or-later + size: 126349 + timestamp: 1743038687696 +- conda: https://prefix.dev/conda-forge/osx-64/glib-tools-2.84.0-hf8faeaf_0.conda + sha256: 6ea60fa3aee44ba7223ee4a5955dc341a4dac1f2256a8511a821741545a6da27 + md5: 03d506bd28830a841105d3015744612e + depends: + - __osx >=10.13 + - libglib 2.84.0 h5c976ab_0 + - libintl >=0.23.1,<1.0a0 + license: LGPL-2.1-or-later + size: 101520 + timestamp: 1743039032850 +- conda: https://prefix.dev/conda-forge/osx-arm64/glib-tools-2.84.0-h1dc7a0c_0.conda + sha256: 55d1f1dc1884f434936917dc6bec938d6e552e361c3936cc85f606404fe16c65 + md5: a4374a5bc561b673045db55e090cb6cb + depends: + - __osx >=11.0 + - libglib 2.84.0 hdff4504_0 + - libintl >=0.23.1,<1.0a0 + license: LGPL-2.1-or-later + size: 101237 + timestamp: 1743039115361 +- conda: https://prefix.dev/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda + sha256: 309cf4f04fec0c31b6771a5809a1909b4b3154a2208f52351e1ada006f4c750c + md5: c94a5994ef49749880a8139cf9afcbe1 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: GPL-2.0-or-later OR LGPL-3.0-or-later + size: 460055 + timestamp: 1718980856608 +- conda: https://prefix.dev/conda-forge/linux-aarch64/gmp-6.3.0-h0a1ffab_2.conda + sha256: a5e341cbf797c65d2477b27d99091393edbaa5178c7d69b7463bb105b0488e69 + md5: 7cbfb3a8bb1b78a7f5518654ac6725ad + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: GPL-2.0-or-later OR LGPL-3.0-or-later + size: 417323 + timestamp: 1718980707330 +- conda: https://prefix.dev/conda-forge/osx-64/gmp-6.3.0-hf036a51_2.conda + sha256: 75aa5e7a875afdcf4903b7dc98577672a3dc17b528ac217b915f9528f93c85fc + md5: 427101d13f19c4974552a4e5b072eef1 + depends: + - __osx >=10.13 + - libcxx >=16 + license: GPL-2.0-or-later OR LGPL-3.0-or-later + size: 428919 + timestamp: 1718981041839 +- conda: https://prefix.dev/conda-forge/osx-arm64/gmp-6.3.0-h7bae524_2.conda + sha256: 76e222e072d61c840f64a44e0580c2503562b009090f55aa45053bf1ccb385dd + md5: eed7278dfbab727b56f2c0b64330814b + depends: + - __osx >=11.0 + - libcxx >=16 + license: GPL-2.0-or-later OR LGPL-3.0-or-later + size: 365188 + timestamp: 1718981343258 +- conda: https://prefix.dev/conda-forge/linux-64/gmpy2-2.1.5-py312h7201bc8_3.conda + sha256: addd0bc226ca86c11f1223ab322d12b67501c2b3d93749bdab2068ccaedd8ef0 + md5: 673ef4d6611f5b4ca7b5c1f8c65a38dc + depends: + - __glibc >=2.17,<3.0.a0 + - gmp >=6.3.0,<7.0a0 + - libgcc >=13 + - mpc >=1.3.1,<2.0a0 + - mpfr >=4.2.1,<5.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: LGPL-3.0-or-later + license_family: LGPL + size: 209631 + timestamp: 1733462668219 +- conda: https://prefix.dev/conda-forge/linux-aarch64/gmpy2-2.1.5-py312he9d48ea_3.conda + sha256: b92ffcb02ee027db2b3b8b1256ecf9e04afd4c1680467574889419c9ed42c089 + md5: 9defe233dc6909ac868a1ca50b2ca84d + depends: + - gmp >=6.3.0,<7.0a0 + - libgcc >=13 + - mpc >=1.3.1,<2.0a0 + - mpfr >=4.2.1,<5.0a0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: LGPL-3.0-or-later + license_family: LGPL + size: 201489 + timestamp: 1733462747377 +- conda: https://prefix.dev/conda-forge/osx-64/gmpy2-2.1.5-py312h068713c_3.conda + sha256: 5f3411b2520ec3a27e6047a0fae057d37cb9caf035e196f85c888320d473ce1e + md5: 02d900885f1af6fcf7646fdf847cad3b + depends: + - __osx >=10.13 + - gmp >=6.3.0,<7.0a0 + - mpc >=1.3.1,<2.0a0 + - mpfr >=4.2.1,<5.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: LGPL-3.0-or-later + license_family: LGPL + size: 156280 + timestamp: 1733462745476 +- conda: https://prefix.dev/conda-forge/osx-arm64/gmpy2-2.1.5-py312h524cf62_3.conda + sha256: 0ea196e4b706321951af1eebdb6a4eb9307faa1fd5361bcf49acb150e71774f7 + md5: ab7a5d10c7b4e249a9fe7bc280909803 + depends: + - __osx >=11.0 + - gmp >=6.3.0,<7.0a0 + - mpc >=1.3.1,<2.0a0 + - mpfr >=4.2.1,<5.0a0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: LGPL-3.0-or-later + license_family: LGPL + size: 147983 + timestamp: 1733462785197 +- conda: https://prefix.dev/conda-forge/linux-64/gmsh-4.13.1-hccb25f3_1.conda + sha256: 18700e7480c8829b1f6c69c497f04c99d1788d3634663bf174321488b5b088a7 + md5: 2b0a79df0047cd897b4cb10e49697637 + depends: + - __glibc >=2.17,<3.0.a0 + - cairo >=1.18.0,<2.0a0 + - fltk >=1.3.9,<1.4.0a0 + - gmp >=6.3.0,<7.0a0 + - libblas >=3.9.0,<4.0a0 + - libgcc >=13 + - libglu + - libjpeg-turbo >=3.0.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - occt >=7.8.1,<7.8.2.0a0 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - xorg-libxmu >=1.2.1,<2.0a0 + - xorg-libxrender >=0.9.11,<0.10.0a0 + - zlib + license: GPL-2.0-or-later + license_family: GPL + size: 8008766 + timestamp: 1729092018788 +- conda: https://prefix.dev/conda-forge/linux-aarch64/gmsh-4.13.1-h334f342_1.conda + sha256: e3eeec4bfa06200bc7d09d818a62d2f01c2cb7e9273240afc8881ae7d4c8ab30 + md5: e291db451eae909f92b0eebdff52cd23 + depends: + - cairo >=1.18.0,<2.0a0 + - fltk >=1.3.9,<1.4.0a0 + - gmp >=6.3.0,<7.0a0 + - libblas >=3.9.0,<4.0a0 + - libgcc >=13 + - libglu + - libjpeg-turbo >=3.0.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - occt >=7.8.1,<7.8.2.0a0 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - xorg-libxmu >=1.2.1,<2.0a0 + - xorg-libxrender >=0.9.11,<0.10.0a0 + - zlib + license: GPL-2.0-or-later + license_family: GPL + size: 9481963 + timestamp: 1729091813742 +- conda: https://prefix.dev/conda-forge/osx-64/gmsh-4.13.1-h36a9002_1.conda + sha256: 7f16a497d7691e0cc0a929a1a35fc70843d89717a95f2a1369efb2556d904bc7 + md5: 027c8b64fdad6be8be348565c792c804 + depends: + - __osx >=10.13 + - cairo >=1.18.0,<2.0a0 + - fltk >=1.3.9,<1.4.0a0 + - gmp >=6.3.0,<7.0a0 + - libblas >=3.9.0,<4.0a0 + - libcxx >=17 + - libjpeg-turbo >=3.0.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + - occt >=7.8.1,<7.8.2.0a0 + - zlib + license: GPL-2.0-or-later + license_family: GPL + size: 8770644 + timestamp: 1729092372885 +- conda: https://prefix.dev/conda-forge/osx-arm64/gmsh-4.13.1-h88a6c1f_1.conda + sha256: 49f3d91b9e37befc9ec7f5ae3eec3410bd77df9380298349a789b65dcad7d170 + md5: ab45ee45d12f7e79843099764f55f941 + depends: + - __osx >=11.0 + - cairo >=1.18.0,<2.0a0 + - fltk >=1.3.9,<1.4.0a0 + - gmp >=6.3.0,<7.0a0 + - libblas >=3.9.0,<4.0a0 + - libcxx >=17 + - libjpeg-turbo >=3.0.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + - occt >=7.8.1,<7.8.2.0a0 + - zlib + license: GPL-2.0-or-later + license_family: GPL + size: 7810178 + timestamp: 1729091977632 +- conda: https://prefix.dev/conda-forge/win-64/gmsh-4.13.1-h9b07e6e_1.conda + sha256: bc69fb947d1f649fddfc23bd56012df5ad226b02c49183cfd1432d2181eeeacf + md5: b92132395d4718926fd518f9568d4909 + depends: + - cairo >=1.18.0,<2.0a0 + - fltk >=1.3.9,<1.4.0a0 + - libblas >=3.9.0,<4.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + - occt >=7.8.1,<7.8.2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zlib + license: GPL-2.0-or-later + license_family: GPL + size: 9082458 + timestamp: 1729093614417 +- conda: https://prefix.dev/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda + sha256: 0595b009f20f8f60f13a6398e7cdcbd2acea5f986633adcf85f5a2283c992add + md5: f87c7b7c2cb45f323ffbce941c78ab7c + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: LGPL-2.0-or-later + license_family: LGPL + size: 96855 + timestamp: 1711634169756 +- conda: https://prefix.dev/conda-forge/linux-aarch64/graphite2-1.3.13-h2f0025b_1003.conda + sha256: c7585e1fb536120583790080f3b3875c04d5f2d64eafbc87e9aa39895e4118c0 + md5: f33009add6a08358bc12d114ceec1304 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: LGPL-2.0-or-later + license_family: LGPL + size: 99453 + timestamp: 1711634223220 +- conda: https://prefix.dev/conda-forge/osx-64/graphite2-1.3.13-h73e2aa4_1003.conda + sha256: b71db966e47cd83b16bfcc2099b8fa87c07286f24a0742078fede4c84314f91a + md5: fc7124f86e1d359fc5d878accd9e814c + depends: + - libcxx >=16 + license: LGPL-2.0-or-later + license_family: LGPL + size: 84384 + timestamp: 1711634311095 +- conda: https://prefix.dev/conda-forge/osx-arm64/graphite2-1.3.13-hebf3989_1003.conda + sha256: 2eadafbfc52f5e7df3da3c3b7e5bbe34d970bea1d645ffe60b0b1c3a216657f5 + md5: 339991336eeddb70076d8ca826dac625 + depends: + - libcxx >=16 + license: LGPL-2.0-or-later + license_family: LGPL + size: 79774 + timestamp: 1711634444608 +- conda: https://prefix.dev/conda-forge/win-64/graphite2-1.3.13-h63175ca_1003.conda + sha256: 25040a4f371b9b51663f546bac620122c237fa1d5d32968e21b0751af9b7f56f + md5: 3194499ee7d1a67404a87d0eefdd92c6 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.0-or-later + license_family: LGPL + size: 95406 + timestamp: 1711634622644 +- conda: https://prefix.dev/conda-forge/linux-64/graphviz-12.2.1-h5ae0cbf_1.conda + sha256: e6866409ba03df392ac5ec6f0d6ff9751a685ed917bfbcd8a73f550c5fe83c2b + md5: df7835d2c73cd1889d377cfd6694ada4 + depends: + - __glibc >=2.17,<3.0.a0 + - adwaita-icon-theme + - cairo >=1.18.2,<2.0a0 + - fonts-conda-ecosystem + - gdk-pixbuf >=2.42.12,<3.0a0 + - gtk3 >=3.24.43,<4.0a0 + - gts >=0.7.6,<0.8.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libgd >=2.3.3,<2.4.0a0 + - libglib >=2.82.2,<3.0a0 + - librsvg >=2.58.4,<3.0a0 + - libstdcxx >=13 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pango >=1.56.1,<2.0a0 + license: EPL-1.0 + license_family: Other + size: 2413095 + timestamp: 1738602910851 +- conda: https://prefix.dev/conda-forge/linux-aarch64/graphviz-12.2.1-h044d27a_1.conda + sha256: 233f5cda023ac275644e3e3b3663adeca99d7d71cf2379b483d00c3c37163d33 + md5: c9c0b953e77213e1fd0cdb4a2590ba02 + depends: + - adwaita-icon-theme + - cairo >=1.18.2,<2.0a0 + - fonts-conda-ecosystem + - gdk-pixbuf >=2.42.12,<3.0a0 + - gtk3 >=3.24.43,<4.0a0 + - gts >=0.7.6,<0.8.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libgd >=2.3.3,<2.4.0a0 + - libglib >=2.82.2,<3.0a0 + - librsvg >=2.58.4,<3.0a0 + - libstdcxx >=13 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pango >=1.56.1,<2.0a0 + license: EPL-1.0 + license_family: Other + size: 2530145 + timestamp: 1738603119015 +- conda: https://prefix.dev/conda-forge/osx-64/graphviz-12.2.1-h44a0556_1.conda + sha256: 3a8eef238000e8fcb8f4f31a035869d7b5ad0466f69c72e9064786b54d1812cc + md5: f1e519616cb1c137cff9849cfa1beb93 + depends: + - __osx >=10.13 + - adwaita-icon-theme + - cairo >=1.18.2,<2.0a0 + - fonts-conda-ecosystem + - gdk-pixbuf >=2.42.12,<3.0a0 + - gtk3 >=3.24.43,<4.0a0 + - gts >=0.7.6,<0.8.0a0 + - libcxx >=18 + - libexpat >=2.6.4,<3.0a0 + - libgd >=2.3.3,<2.4.0a0 + - libglib >=2.82.2,<3.0a0 + - librsvg >=2.58.4,<3.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pango >=1.56.1,<2.0a0 + license: EPL-1.0 + license_family: Other + size: 2269263 + timestamp: 1738603378351 +- conda: https://prefix.dev/conda-forge/osx-arm64/graphviz-12.2.1-hff64154_1.conda + sha256: 54e3ce5668b17ea41fed515e57fbd9e805969df468eaf7ff65389d7f53b46d54 + md5: b0b656550a16dfba7efa1479756c5b63 + depends: + - __osx >=11.0 + - adwaita-icon-theme + - cairo >=1.18.2,<2.0a0 + - fonts-conda-ecosystem + - gdk-pixbuf >=2.42.12,<3.0a0 + - gtk3 >=3.24.43,<4.0a0 + - gts >=0.7.6,<0.8.0a0 + - libcxx >=18 + - libexpat >=2.6.4,<3.0a0 + - libgd >=2.3.3,<2.4.0a0 + - libglib >=2.82.2,<3.0a0 + - librsvg >=2.58.4,<3.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pango >=1.56.1,<2.0a0 + license: EPL-1.0 + license_family: Other + size: 2189259 + timestamp: 1738603343083 +- conda: https://prefix.dev/conda-forge/win-64/graphviz-12.2.1-hf40819d_1.conda + sha256: f68aa78450917dd0e3c18340b249bdaed05425e0ab5d64e1ebbe16c1416b807c + md5: 981641a62e6786479ac4d425dc853989 + depends: + - cairo >=1.18.2,<2.0a0 + - getopt-win32 >=0.1,<0.2.0a0 + - gts >=0.7.6,<0.8.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgd >=2.3.3,<2.4.0a0 + - libglib >=2.82.2,<3.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pango >=1.56.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: EPL-1.0 + license_family: Other + size: 1172679 + timestamp: 1738603383430 +- conda: https://prefix.dev/conda-forge/linux-64/gtk3-3.24.43-h021d004_4.conda + sha256: fc8abccb4b0d454891847bdd8163332ff8607aa33ea9cf1e43b3828fc88c42ce + md5: a891e341072432fafb853b3762957cbf + depends: + - __glibc >=2.17,<3.0.a0 + - at-spi2-atk >=2.38.0,<3.0a0 + - atk-1.0 >=2.38.0 + - cairo >=1.18.4,<2.0a0 + - epoxy >=1.5.10,<1.6.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - fribidi >=1.0.10,<2.0a0 + - gdk-pixbuf >=2.42.12,<3.0a0 + - glib-tools + - harfbuzz >=10.4.0,<11.0a0 + - hicolor-icon-theme + - libcups >=2.3.3,<2.4.0a0 + - libcups >=2.3.3,<3.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libglib >=2.82.2,<3.0a0 + - liblzma >=5.6.4,<6.0a0 + - libxkbcommon >=1.8.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pango >=1.56.1,<2.0a0 + - wayland >=1.23.1,<2.0a0 + - xorg-libx11 >=1.8.11,<2.0a0 + - xorg-libxcomposite >=0.4.6,<1.0a0 + - xorg-libxcursor >=1.2.3,<2.0a0 + - xorg-libxdamage >=1.1.6,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - xorg-libxi >=1.8.2,<2.0a0 + - xorg-libxinerama >=1.1.5,<1.2.0a0 + - xorg-libxrandr >=1.5.4,<2.0a0 + - xorg-libxrender >=0.9.12,<0.10.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 5563940 + timestamp: 1741694746664 +- conda: https://prefix.dev/conda-forge/linux-aarch64/gtk3-3.24.43-hd0cad38_4.conda + sha256: f93db23673420fdce94f941c72a2ab6b9dc772685e6ad7ba1f90d613a07da61c + md5: 628d8a36bf3acdbfe3d13a7bf44d9ec2 + depends: + - at-spi2-atk >=2.38.0,<3.0a0 + - atk-1.0 >=2.38.0 + - cairo >=1.18.4,<2.0a0 + - epoxy >=1.5.10,<1.6.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - fribidi >=1.0.10,<2.0a0 + - gdk-pixbuf >=2.42.12,<3.0a0 + - glib-tools + - harfbuzz >=10.4.0,<11.0a0 + - hicolor-icon-theme + - libcups >=2.3.3,<2.4.0a0 + - libcups >=2.3.3,<3.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libglib >=2.82.2,<3.0a0 + - liblzma >=5.6.4,<6.0a0 + - libxkbcommon >=1.8.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pango >=1.56.1,<2.0a0 + - wayland >=1.23.1,<2.0a0 + - xorg-libx11 >=1.8.11,<2.0a0 + - xorg-libxcomposite >=0.4.6,<1.0a0 + - xorg-libxcursor >=1.2.3,<2.0a0 + - xorg-libxdamage >=1.1.6,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - xorg-libxi >=1.8.2,<2.0a0 + - xorg-libxinerama >=1.1.5,<1.2.0a0 + - xorg-libxrandr >=1.5.4,<2.0a0 + - xorg-libxrender >=0.9.12,<0.10.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 5642921 + timestamp: 1741700832622 +- conda: https://prefix.dev/conda-forge/osx-64/gtk3-3.24.43-h82a860e_4.conda + sha256: fc74cae058d39dc25697572b39d97cf2a39b3b37d6d9a557a1b9f95b75d39b3a + md5: 522364f052b5e18bfea181e33d1eed1b + depends: + - __osx >=10.13 + - atk-1.0 >=2.38.0 + - cairo >=1.18.4,<2.0a0 + - epoxy >=1.5.10,<1.6.0a0 + - fribidi >=1.0.10,<2.0a0 + - gdk-pixbuf >=2.42.12,<3.0a0 + - glib-tools + - harfbuzz >=10.4.0,<11.0a0 + - hicolor-icon-theme + - libexpat >=2.6.4,<3.0a0 + - libglib >=2.82.2,<3.0a0 + - libintl >=0.23.1,<1.0a0 + - liblzma >=5.6.4,<6.0a0 + - libzlib >=1.3.1,<2.0a0 + - pango >=1.56.1,<2.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 4910558 + timestamp: 1741695295277 +- conda: https://prefix.dev/conda-forge/osx-arm64/gtk3-3.24.43-he7bb075_4.conda + sha256: 5adbee61709811186022ba0013cdda2029ae340be4de95c909a718045ec79d00 + md5: a01d2dd60413e43f581445d1b2ed8d5d + depends: + - __osx >=11.0 + - atk-1.0 >=2.38.0 + - cairo >=1.18.4,<2.0a0 + - epoxy >=1.5.10,<1.6.0a0 + - fribidi >=1.0.10,<2.0a0 + - gdk-pixbuf >=2.42.12,<3.0a0 + - glib-tools + - harfbuzz >=10.4.0,<11.0a0 + - hicolor-icon-theme + - libexpat >=2.6.4,<3.0a0 + - libglib >=2.82.2,<3.0a0 + - libintl >=0.23.1,<1.0a0 + - liblzma >=5.6.4,<6.0a0 + - libzlib >=1.3.1,<2.0a0 + - pango >=1.56.1,<2.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 4773126 + timestamp: 1741695489897 +- conda: https://prefix.dev/conda-forge/linux-64/gts-0.7.6-h977cf35_4.conda + sha256: b5cd16262fefb836f69dc26d879b6508d29f8a5c5948a966c47fe99e2e19c99b + md5: 4d8df0b0db060d33c9a702ada998a8fe + depends: + - libgcc-ng >=12 + - libglib >=2.76.3,<3.0a0 + - libstdcxx-ng >=12 + license: LGPL-2.0-or-later + license_family: LGPL + size: 318312 + timestamp: 1686545244763 +- conda: https://prefix.dev/conda-forge/linux-aarch64/gts-0.7.6-he293c15_4.conda + sha256: 1e9cc30d1c746d5a3399a279f5f642a953f37d9f9c82fd4d55b301e9c2a23f7c + md5: 2aeaeddbd89e84b60165463225814cfc + depends: + - libgcc-ng >=12 + - libglib >=2.76.3,<3.0a0 + - libstdcxx-ng >=12 + license: LGPL-2.0-or-later + license_family: LGPL + size: 332673 + timestamp: 1686545222091 +- conda: https://prefix.dev/conda-forge/osx-64/gts-0.7.6-h53e17e3_4.conda + sha256: d5b82a36f7e9d7636b854e56d1b4fe01c4d895128a7b73e2ec6945b691ff3314 + md5: 848cc963fcfbd063c7a023024aa3bec0 + depends: + - libcxx >=15.0.7 + - libglib >=2.76.3,<3.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 280972 + timestamp: 1686545425074 +- conda: https://prefix.dev/conda-forge/osx-arm64/gts-0.7.6-he42f4ea_4.conda + sha256: e0f8c7bc1b9ea62ded78ffa848e37771eeaaaf55b3146580513c7266862043ba + md5: 21b4dd3098f63a74cf2aa9159cbef57d + depends: + - libcxx >=15.0.7 + - libglib >=2.76.3,<3.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 304331 + timestamp: 1686545503242 +- conda: https://prefix.dev/conda-forge/win-64/gts-0.7.6-h6b5321d_4.conda + sha256: b79755d2f9fc2113b6949bfc170c067902bc776e2c20da26e746e780f4f5a2d4 + md5: a41f14768d5e377426ad60c613f2923b + depends: + - libglib >=2.76.3,<3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.0-or-later + license_family: LGPL + size: 188688 + timestamp: 1686545648050 +- conda: https://prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda + sha256: 0aa1cdc67a9fe75ea95b5644b734a756200d6ec9d0dff66530aec3d1c1e9df75 + md5: b4754fb1bdcb70c8fd54f918301582c6 + depends: + - hpack >=4.1,<5 + - hyperframe >=6.1,<7 + - python >=3.9 + license: MIT + license_family: MIT + size: 53888 + timestamp: 1738578623567 +- conda: https://prefix.dev/conda-forge/linux-64/harfbuzz-10.4.0-h76408a6_0.conda + sha256: 3b4ccabf170e1bf98c593f724cc4defe286d64cb19288751a50c63809ca32d5f + md5: 81f137b4153cf111ff8e3188b6fb8e73 + depends: + - __glibc >=2.17,<3.0.a0 + - cairo >=1.18.2,<2.0a0 + - freetype >=2.12.1,<3.0a0 + - graphite2 + - icu >=75.1,<76.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libglib >=2.82.2,<3.0a0 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 1694183 + timestamp: 1741016164622 +- conda: https://prefix.dev/conda-forge/linux-aarch64/harfbuzz-10.4.0-hb5e3f52_0.conda + sha256: 0b7223aef98ba34c7c6f937b394cdf25048ac752908ab0f5cb96673002a330e3 + md5: f28b4d75b1ee821c768311613d3dd225 + depends: + - cairo >=1.18.2,<2.0a0 + - freetype >=2.12.1,<3.0a0 + - graphite2 + - icu >=75.1,<76.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libglib >=2.82.2,<3.0a0 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 1709988 + timestamp: 1741019766031 +- conda: https://prefix.dev/conda-forge/osx-64/harfbuzz-10.4.0-h86b413f_0.conda + sha256: 87e47de769f93f756e61e40555796382fb1dc3cb754e2e068958a949b3df33f7 + md5: 05493515d0b4467f8229f1e154ec80c3 + depends: + - __osx >=10.13 + - cairo >=1.18.2,<2.0a0 + - freetype >=2.12.1,<3.0a0 + - graphite2 + - icu >=75.1,<76.0a0 + - libcxx >=18 + - libexpat >=2.6.4,<3.0a0 + - libglib >=2.82.2,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 1442847 + timestamp: 1741016606354 +- conda: https://prefix.dev/conda-forge/osx-arm64/harfbuzz-10.4.0-hb72c1af_0.conda + sha256: 5c0ba63cdc0ccda3309923deff839528cf870daf4ae0173ab07e275698236321 + md5: c13f50a1000cc3adadb2d93c76dcedab + depends: + - __osx >=11.0 + - cairo >=1.18.2,<2.0a0 + - freetype >=2.12.1,<3.0a0 + - graphite2 + - icu >=75.1,<76.0a0 + - libcxx >=18 + - libexpat >=2.6.4,<3.0a0 + - libglib >=2.82.2,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 1380378 + timestamp: 1741016758098 +- conda: https://prefix.dev/conda-forge/win-64/harfbuzz-10.4.0-h9e37d49_0.conda + sha256: 4e8a5219328697247b682b161e02577613b50d20237d4b3e575713d811036895 + md5: 63185f1b04a3f5ebd728cf1bec2dbedc + depends: + - cairo >=1.18.2,<2.0a0 + - freetype >=2.12.1,<3.0a0 + - graphite2 + - icu >=75.1,<76.0a0 + - libexpat >=2.6.4,<3.0a0 + - libglib >=2.82.2,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 1112646 + timestamp: 1741017842033 +- conda: https://prefix.dev/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda + sha256: 0d09b6dc1ce5c4005ae1c6a19dc10767932ef9a5e9c755cfdbb5189ac8fb0684 + md5: bd77f8da987968ec3927990495dc22e4 + depends: + - libgcc-ng >=12 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<2.0.0a0 + license: BSD-3-Clause + license_family: BSD + size: 756742 + timestamp: 1695661547874 +- conda: https://prefix.dev/conda-forge/linux-aarch64/hdf4-4.2.15-hb6ba311_7.conda + sha256: 70d1e2d3e0b9ae1b149a31a4270adfbb5a4ceb2f8c36d17feffcd7bcb6208022 + md5: e1b6676b77b9690d07ea25de48aed97e + depends: + - libgcc-ng >=12 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<2.0.0a0 + license: BSD-3-Clause + license_family: BSD + size: 773862 + timestamp: 1695661552544 +- conda: https://prefix.dev/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda + sha256: 8c767cc71226e9eb62649c903c68ba73c5f5e7e3696ec0319d1f90586cebec7d + md5: 7ce543bf38dbfae0de9af112ee178af2 + depends: + - libcxx >=15.0.7 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libzlib >=1.2.13,<2.0.0a0 + license: BSD-3-Clause + license_family: BSD + size: 724103 + timestamp: 1695661907511 +- conda: https://prefix.dev/conda-forge/osx-arm64/hdf4-4.2.15-h2ee6834_7.conda + sha256: c3b01e3c3fe4ca1c4d28c287eaa5168a4f2fd3ffd76690082ac919244c22fa90 + md5: ff5d749fd711dc7759e127db38005924 + depends: + - libcxx >=15.0.7 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libzlib >=1.2.13,<2.0.0a0 + license: BSD-3-Clause + license_family: BSD + size: 762257 + timestamp: 1695661864625 +- conda: https://prefix.dev/conda-forge/win-64/hdf4-4.2.15-h5557f11_7.conda + sha256: 52fa5dde69758c19c69ab68a3d7ebfb2c9042e3a55d405c29a59d3b0584fd790 + md5: 84344a916a73727c1326841007b52ca8 + depends: + - libjpeg-turbo >=3.0.0,<4.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 779637 + timestamp: 1695662145568 +- conda: https://prefix.dev/conda-forge/linux-64/hdf5-1.14.4-nompi_h2d575fe_105.conda + sha256: 93d2bfc672f3ee0988d277ce463330a467f3686d3f7ee37812a3d8ca11776d77 + md5: d76fff0092b6389a12134ddebc0929bd + depends: + - __glibc >=2.17,<3.0.a0 + - libaec >=1.1.3,<2.0a0 + - libcurl >=8.10.1,<9.0a0 + - libgcc >=13 + - libgfortran + - libgfortran5 >=13.3.0 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.0,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 3950601 + timestamp: 1733003331788 +- conda: https://prefix.dev/conda-forge/linux-aarch64/hdf5-1.14.4-nompi_h6ed7ac7_105.conda + sha256: 57db9910da8bcc3b6456ab0e52a8e215b97f30941b416d2b052b3461097a8e09 + md5: 337b0bbe9c3ee631ec0982c990d21fc2 + depends: + - libaec >=1.1.3,<2.0a0 + - libcurl >=8.10.1,<9.0a0 + - libgcc >=13 + - libgfortran + - libgfortran5 >=13.3.0 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.0,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 4034228 + timestamp: 1733010297124 +- conda: https://prefix.dev/conda-forge/osx-64/hdf5-1.14.4-nompi_h1607680_105.conda + sha256: 56500937894b1ca917e1ae1bea64b873a9eec57d581173579189d0b1f590db26 + md5: 12ebafc40b10d4bf519e4c2074c52aef + depends: + - __osx >=10.13 + - libaec >=1.1.3,<2.0a0 + - libcurl >=8.10.1,<9.0a0 + - libcxx >=18 + - libgfortran 5.* + - libgfortran5 >=13.2.0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.0,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 3732340 + timestamp: 1733003702265 +- conda: https://prefix.dev/conda-forge/osx-arm64/hdf5-1.14.4-nompi_ha698983_105.conda + sha256: 1746cd2465832bf23d1e91b680935655dea9053d51e526deea86b0afb0b9d6a3 + md5: 7e85ea8b6a35b163a516e8c483960600 + depends: + - __osx >=11.0 + - libaec >=1.1.3,<2.0a0 + - libcurl >=8.10.1,<9.0a0 + - libcxx >=18 + - libgfortran 5.* + - libgfortran5 >=13.2.0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.0,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 3485821 + timestamp: 1733002735281 +- conda: https://prefix.dev/conda-forge/win-64/hdf5-1.14.4-nompi_hd5d9e70_105.conda + sha256: e8ced65c604a3b9e4803758a25149d71d8096f186fe876817a0d1d97190550c0 + md5: 4381be33460283890c34341ecfa42d97 + depends: + - libaec >=1.1.3,<2.0a0 + - libcurl >=8.10.1,<9.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.0,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 2048450 + timestamp: 1733003052575 +- conda: https://prefix.dev/conda-forge/linux-64/hicolor-icon-theme-0.17-ha770c72_2.tar.bz2 + sha256: 336f29ceea9594f15cc8ec4c45fdc29e10796573c697ee0d57ebb7edd7e92043 + md5: bbf6f174dcd3254e19a2f5d2295ce808 + license: GPL-2.0-or-later + license_family: GPL + size: 13841 + timestamp: 1605162808667 +- conda: https://prefix.dev/conda-forge/linux-aarch64/hicolor-icon-theme-0.17-h8af1aa0_2.tar.bz2 + sha256: 479a0f95cf3e7d7db795fb7a14337cab73c2c926a5599c8512a3e8f8466f9e54 + md5: 331add9f855e921695d7b569aa23d5ec + license: GPL-2.0-or-later + license_family: GPL + size: 13896 + timestamp: 1605162856037 +- conda: https://prefix.dev/conda-forge/osx-64/hicolor-icon-theme-0.17-h694c41f_2.tar.bz2 + sha256: a5cb0c03d731bfb09b4262a3afdeae33bef98bc73972f1bd6b7e3fcd240bea41 + md5: f64218f19d9a441e80343cea13be1afb + license: GPL-2.0-or-later + license_family: GPL + size: 13821 + timestamp: 1605162984889 +- conda: https://prefix.dev/conda-forge/osx-arm64/hicolor-icon-theme-0.17-hce30654_2.tar.bz2 + sha256: 286e33fb452f61133a3a61d002890235d1d1378554218ab063d6870416440281 + md5: 237b05b7eb284d7eebc3c5d93f5e4bca + license: GPL-2.0-or-later + license_family: GPL + size: 13800 + timestamp: 1611053664863 +- conda: https://prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda + sha256: 6ad78a180576c706aabeb5b4c8ceb97c0cb25f1e112d76495bff23e3779948ba + md5: 0a802cb9888dd14eeefc611f05c40b6e + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 30731 + timestamp: 1737618390337 +- conda: https://prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda + sha256: 77af6f5fe8b62ca07d09ac60127a30d9069fdc3c68d6b256754d0ffb1f7779f8 + md5: 8e6923fc12f1fe8f8c4e5c9f343256ac + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 17397 + timestamp: 1737618427549 +- conda: https://prefix.dev/conda-forge/linux-64/icu-75.1-he02047a_0.conda + sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e + md5: 8b189310083baabfb622af68fd9d3ae3 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + size: 12129203 + timestamp: 1720853576813 +- conda: https://prefix.dev/conda-forge/linux-aarch64/icu-75.1-hf9b3779_0.conda + sha256: 813298f2e54ef087dbfc9cc2e56e08ded41de65cff34c639cc8ba4e27e4540c9 + md5: 268203e8b983fddb6412b36f2024e75c + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + size: 12282786 + timestamp: 1720853454991 +- conda: https://prefix.dev/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda + sha256: 2e64307532f482a0929412976c8450c719d558ba20c0962832132fd0d07ba7a7 + md5: d68d48a3060eb5abdc1cdc8e2a3a5966 + depends: + - __osx >=10.13 + license: MIT + license_family: MIT + size: 11761697 + timestamp: 1720853679409 +- conda: https://prefix.dev/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda + sha256: 9ba12c93406f3df5ab0a43db8a4b4ef67a5871dfd401010fbe29b218b2cbe620 + md5: 5eb22c1d7b3fc4abb50d92d621583137 + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 11857802 + timestamp: 1720853997952 +- conda: https://prefix.dev/conda-forge/win-64/icu-75.1-he0c23c2_0.conda + sha256: 1d04369a1860a1e9e371b9fc82dd0092b616adcf057d6c88371856669280e920 + md5: 8579b6bb8d18be7c0b27fb08adeeeb40 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 14544252 + timestamp: 1720853966338 +- conda: https://prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 + md5: 39a4f67be3286c86d696df570b1201b7 + depends: + - python >=3.9 + license: BSD-3-Clause + license_family: BSD + size: 49765 + timestamp: 1733211921194 +- conda: https://prefix.dev/conda-forge/linux-64/imath-3.1.12-h7955e40_0.conda + sha256: 4d8d07a4d5079d198168b44556fb86d094e6a716e8979b25a9f6c9c610e9fe56 + md5: 37f5e1ab0db3691929f37dee78335d1b + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 159630 + timestamp: 1725971591485 +- conda: https://prefix.dev/conda-forge/linux-aarch64/imath-3.1.12-hf428078_0.conda + sha256: ad8f18472425da83ba0e9324ab715f5d232cece8b0efaf218bd2ea9e1b6adb6d + md5: ae8535ff689663fe430bec00be24a854 + depends: + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 153368 + timestamp: 1725971683794 +- conda: https://prefix.dev/conda-forge/osx-64/imath-3.1.12-h2016aa1_0.conda + sha256: 5bf9c041b97b1af21808938fcaa64acafe0d853de5478fa08005176664ee4552 + md5: 326b3d68ab3f43396e7d7e0e9a496f73 + depends: + - __osx >=10.13 + - libcxx >=17 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 155534 + timestamp: 1725971674035 +- conda: https://prefix.dev/conda-forge/osx-arm64/imath-3.1.12-h025cafa_0.conda + sha256: 8fcf6c3bf91993451412c0003b92044c9fc7980fe3f178ab3260f90ac4099072 + md5: b7e259bd81b5a7432ca045083959b83a + depends: + - __osx >=11.0 + - libcxx >=17 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 153017 + timestamp: 1725971790238 +- conda: https://prefix.dev/conda-forge/win-64/imath-3.1.12-hbb528cf_0.conda + sha256: 184c796615cebaa73246f351144f164ee7b61ea809e4ba3c5d98fa9ca333e058 + md5: c25af729c8c1c41f96202f8a96652bbe + depends: + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 160408 + timestamp: 1725972042635 +- conda: https://prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda + sha256: acc1d991837c0afb67c75b77fdc72b4bf022aac71fedd8b9ea45918ac9b08a80 + md5: c85c76dc67d75619a92f51dfbce06992 + depends: + - python >=3.9 + - zipp >=3.1.0 + constrains: + - importlib-resources >=6.5.2,<6.5.3.0a0 + license: Apache-2.0 + license_family: APACHE + size: 33781 + timestamp: 1736252433366 +- conda: https://prefix.dev/conda-forge/linux-64/jack-1.9.22-h7c63dc7_2.conda + sha256: 5e44a3a4b9791d1268636811628555ad40d4a8dd5c3be3334062df75580ae25b + md5: f56277b7f079f1b13cbf7fb9b4f194c4 + depends: + - alsa-lib >=1.2.10,<1.3.0.0a0 + - libdb >=6.2.32,<6.3.0a0 + - libgcc-ng >=12 + - libopus >=1.3.1,<2.0a0 + - libstdcxx-ng >=12 + license: LGPL-2.0-only + license_family: LGPL + size: 464144 + timestamp: 1693879949990 +- conda: https://prefix.dev/conda-forge/linux-aarch64/jack-1.9.22-h5c6c0ed_2.conda + sha256: 4b5714f0798fb38e19d0aced7e5a9069eebf3c8ee9f541d643d4e6d0edcf388f + md5: e6abd2a51bd727a1b62a54524f760864 + depends: + - alsa-lib >=1.2.10,<1.3.0.0a0 + - libdb >=6.2.32,<6.3.0a0 + - libgcc-ng >=12 + - libopus >=1.3.1,<2.0a0 + - libstdcxx-ng >=12 + license: LGPL-2.0-only + license_family: LGPL + size: 489040 + timestamp: 1693881455137 +- conda: https://prefix.dev/conda-forge/linux-64/jasper-4.2.5-h1920b20_0.conda + sha256: 59a4de9d5daee552b901b0edef28a495016fb4a9d35d3b91d69fc9328a6159ee + md5: ec8824a45bd7c50a46788fa16216d6c2 + depends: + - __glibc >=2.17,<3.0.a0 + - freeglut >=3.2.2,<4.0a0 + - libgcc >=13 + - libglu >=9.0.3,<10.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + license: JasPer-2.0 + size: 688287 + timestamp: 1743026000524 +- conda: https://prefix.dev/conda-forge/linux-aarch64/jasper-4.2.5-h9d5db0e_0.conda + sha256: ae2c7a850391b2e35412049e53879d435503c2e5c6806bd71925bb2da3f29c95 + md5: db269b531654b7491990869c63435252 + depends: + - freeglut >=3.2.2,<4.0a0 + - libgcc >=13 + - libglu >=9.0.3,<10.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + license: JasPer-2.0 + size: 711142 + timestamp: 1743026001983 +- conda: https://prefix.dev/conda-forge/osx-64/jasper-4.2.5-had675a4_0.conda + sha256: 76595be4bd7c75751e876fdb2c79ea42adafee0c96cf3ac4f5124d46dcbc2415 + md5: e8e77b66dccf07b26b03fe4b0d82592d + depends: + - __osx >=10.13 + - libjpeg-turbo >=3.0.0,<4.0a0 + license: JasPer-2.0 + size: 572691 + timestamp: 1743026141580 +- conda: https://prefix.dev/conda-forge/osx-arm64/jasper-4.2.5-h743e416_0.conda + sha256: 193313ae1f7890610265a0c3cde156c1b27278c2b6a3bc573e829c215d9f6038 + md5: d123c14856a18043c5e98cb35cd29278 + depends: + - __osx >=11.0 + - libjpeg-turbo >=3.0.0,<4.0a0 + license: JasPer-2.0 + size: 583405 + timestamp: 1743026314941 +- conda: https://prefix.dev/conda-forge/win-64/jasper-4.2.5-h99a1cce_0.conda + sha256: 62477b43742e7c29588b784c054e4d8010b460d5ed0bd46adfcab6e6da494100 + md5: ca32a34da20bc7b247d8de3190bd8f42 + depends: + - freeglut >=3.2.2,<4.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: JasPer-2.0 + size: 442279 + timestamp: 1743026476640 +- conda: https://prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda + sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af + md5: 446bd6c8cb26050d528881df495ce646 + depends: + - markupsafe >=2.0 + - python >=3.9 + license: BSD-3-Clause + license_family: BSD + size: 112714 + timestamp: 1741263433881 +- conda: https://prefix.dev/conda-forge/linux-64/jsoncpp-1.9.6-hf42df4d_1.conda + sha256: ed4b1878be103deb2e4c6d0eea3c9bdddfd7fc3178383927dce7578fb1063520 + md5: 7bdc5e2cc11cb0a0f795bdad9732b0f2 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: LicenseRef-Public-Domain OR MIT + size: 169093 + timestamp: 1733780223643 +- conda: https://prefix.dev/conda-forge/linux-aarch64/jsoncpp-1.9.6-h34915d9_1.conda + sha256: 12f2d001e4e9ad255f1de139e873876d03d53f16396d73f7849b114eefec5291 + md5: 2f23d5c1884fac280816ac2e5f858a65 + depends: + - libgcc >=13 + - libstdcxx >=13 + license: LicenseRef-Public-Domain OR MIT + size: 162312 + timestamp: 1733779925983 +- conda: https://prefix.dev/conda-forge/osx-64/jsoncpp-1.9.6-h466cfd8_1.conda + sha256: f256282e3b137f6acb366ddb4c4b76be3eeb19e7b0eb542e1cfbfcc84a5b740a + md5: fa2e871f2fd42bacbd7458929a8c7b81 + depends: + - __osx >=10.13 + - libcxx >=18 + license: LicenseRef-Public-Domain OR MIT + size: 145556 + timestamp: 1733780384512 +- conda: https://prefix.dev/conda-forge/osx-arm64/jsoncpp-1.9.6-h726d253_1.conda + sha256: 415c2376eef1bb47f8cc07279ecc54a2fa92f6dfdb508d337dd21d0157e3c8ad + md5: 0ff996d1cf523fa1f7ed63113f6cc052 + depends: + - __osx >=11.0 + - libcxx >=18 + license: LicenseRef-Public-Domain OR MIT + size: 145287 + timestamp: 1733780601066 +- conda: https://prefix.dev/conda-forge/win-64/jsoncpp-1.9.6-hda1637e_1.conda + sha256: 5cbd1ca5b2196a9d2bce6bd3bab16674faedc2f7de56b726e8748128d81d0956 + md5: 623fa3cfe037326999434d50c9362e90 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LicenseRef-Public-Domain OR MIT + size: 342126 + timestamp: 1733780675474 +- conda: https://prefix.dev/conda-forge/linux-64/jxrlib-1.1-hd590300_3.conda + sha256: 2057ca87b313bde5b74b93b0e696f8faab69acd4cb0edebb78469f3f388040c0 + md5: 5aeabe88534ea4169d4c49998f293d6c + depends: + - libgcc-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 239104 + timestamp: 1703333860145 +- conda: https://prefix.dev/conda-forge/linux-aarch64/jxrlib-1.1-h31becfc_3.conda + sha256: 157e151068d44042c56d6dd6f634d0b2c1fe084114ae56125299f518dd8b1500 + md5: 720f7b9ccdf426ac73dafcf92f7d7bf4 + depends: + - libgcc-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 238091 + timestamp: 1703333994798 +- conda: https://prefix.dev/conda-forge/osx-64/jxrlib-1.1-h10d778d_3.conda + sha256: a548a4be14a4c76d6d992a5c1feffcbb08062f5c57abc6e4278d40c2c9a7185b + md5: cfaf81d843a80812fe16a68bdae60562 + license: BSD-2-Clause + license_family: BSD + size: 220376 + timestamp: 1703334073774 +- conda: https://prefix.dev/conda-forge/osx-arm64/jxrlib-1.1-h93a5062_3.conda + sha256: c9e0d3cf9255d4585fa9b3d07ace3bd934fdc6a67ef4532e5507282eff2364ab + md5: 879997fd868f8e9e4c2a12aec8583799 + license: BSD-2-Clause + license_family: BSD + size: 197843 + timestamp: 1703334079437 +- conda: https://prefix.dev/conda-forge/win-64/jxrlib-1.1-hcfcfb64_3.conda + sha256: a9ac265bcf65fce57cfb6512a1b072d5489445d14aa1b60c9bdf73370cf261b2 + md5: a9dff8432c11dfa980346e934c29ca3f + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 355340 + timestamp: 1703334132631 +- conda: https://prefix.dev/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb + md5: 30186d27e2c9fa62b45fb1476b7200e3 + depends: + - libgcc-ng >=10.3.0 + license: LGPL-2.1-or-later + size: 117831 + timestamp: 1646151697040 +- conda: https://prefix.dev/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2 + sha256: 6d4233d97a9b38acbb26e1268bcf8c10a8e79c2aed7e5a385ec3769967e3e65b + md5: 1f24853e59c68892452ef94ddd8afd4b + depends: + - libgcc-ng >=10.3.0 + license: LGPL-2.1-or-later + size: 112327 + timestamp: 1646166857935 +- conda: https://prefix.dev/conda-forge/win-64/khronos-opencl-icd-loader-2024.10.24-h2466b09_1.conda + sha256: 881f92399f706df1185ec4372e59c5c9832f2dbb8e7587c6030a2a9a6e8ce7f8 + md5: 71a72eb0eed16a4a76fd88359be48fec + depends: + - opencl-headers >=2024.10.24 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 46768 + timestamp: 1732916943523 +- conda: https://prefix.dev/conda-forge/linux-64/kiwisolver-1.4.8-py312h84d6215_0.conda + sha256: 3ce99d721c1543f6f8f5155e53eef11be47b2f5942a8d1060de6854f9d51f246 + md5: 6713467dc95509683bfa3aca08524e8a + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 71649 + timestamp: 1736908364705 +- conda: https://prefix.dev/conda-forge/linux-aarch64/kiwisolver-1.4.8-py312h17cf362_0.conda + sha256: 17bba2bf5067edaca39c347de45c82f8ad89419c8069afbeb3f00913aba9c517 + md5: ed706756a1cb11159b67e6bf6e900cec + depends: + - libgcc >=13 + - libstdcxx >=13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 70927 + timestamp: 1736909973849 +- conda: https://prefix.dev/conda-forge/osx-64/kiwisolver-1.4.8-py312h9275861_0.conda + sha256: 1c14526352cb9ced9ead72977ebbb5fbb167ed021af463f562b3f057c6d412a9 + md5: 88135d68c4ab7e6aedf52765b92acc70 + depends: + - __osx >=10.13 + - libcxx >=18 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 62739 + timestamp: 1736908419729 +- conda: https://prefix.dev/conda-forge/osx-arm64/kiwisolver-1.4.8-py312h2c4a281_0.conda + sha256: 01366fa9d65bedb4069266d08c8a7a2ebbe6f25cedf60eebeeb701067f162f68 + md5: a94f3ac940c391e7716b6ffd332d7463 + depends: + - __osx >=11.0 + - libcxx >=18 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 61368 + timestamp: 1736908431125 +- conda: https://prefix.dev/conda-forge/win-64/kiwisolver-1.4.8-py312hc790b64_0.conda + sha256: 2cce3d9bcc95c68069e3032cda25b732f69be7b025f94685ee4783d7b54588dd + md5: 7ef59428fc0dcb8a78a5e23dc4f50aa3 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 71318 + timestamp: 1736908754898 +- conda: https://prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda + sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 + md5: 3f43953b7d3fb3aaa1d0d0723d91e368 + depends: + - keyutils >=1.6.1,<2.0a0 + - libedit >=3.1.20191231,<3.2.0a0 + - libedit >=3.1.20191231,<4.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - openssl >=3.3.1,<4.0a0 + license: MIT + license_family: MIT + size: 1370023 + timestamp: 1719463201255 +- conda: https://prefix.dev/conda-forge/linux-aarch64/krb5-1.21.3-h50a48e9_0.conda + sha256: 0ec272afcf7ea7fbf007e07a3b4678384b7da4047348107b2ae02630a570a815 + md5: 29c10432a2ca1472b53f299ffb2ffa37 + depends: + - keyutils >=1.6.1,<2.0a0 + - libedit >=3.1.20191231,<3.2.0a0 + - libedit >=3.1.20191231,<4.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - openssl >=3.3.1,<4.0a0 + license: MIT + license_family: MIT + size: 1474620 + timestamp: 1719463205834 +- conda: https://prefix.dev/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda + sha256: 83b52685a4ce542772f0892a0f05764ac69d57187975579a0835ff255ae3ef9c + md5: d4765c524b1d91567886bde656fb514b + depends: + - __osx >=10.13 + - libcxx >=16 + - libedit >=3.1.20191231,<3.2.0a0 + - libedit >=3.1.20191231,<4.0a0 + - openssl >=3.3.1,<4.0a0 + license: MIT + license_family: MIT + size: 1185323 + timestamp: 1719463492984 +- conda: https://prefix.dev/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda + sha256: 4442f957c3c77d69d9da3521268cad5d54c9033f1a73f99cde0a3658937b159b + md5: c6dc8a0fdec13a0565936655c33069a1 + depends: + - __osx >=11.0 + - libcxx >=16 + - libedit >=3.1.20191231,<3.2.0a0 + - libedit >=3.1.20191231,<4.0a0 + - openssl >=3.3.1,<4.0a0 + license: MIT + license_family: MIT + size: 1155530 + timestamp: 1719463474401 +- conda: https://prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda + sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81 + md5: 31aec030344e962fbd7dbbbbd68e60a9 + depends: + - openssl >=3.3.1,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 712034 + timestamp: 1719463874284 +- conda: https://prefix.dev/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2 + sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab + md5: a8832b479f93521a9e7b5b743803be51 + depends: + - libgcc-ng >=12 + license: LGPL-2.0-only + license_family: LGPL + size: 508258 + timestamp: 1664996250081 +- conda: https://prefix.dev/conda-forge/linux-aarch64/lame-3.100-h4e544f5_1003.tar.bz2 + sha256: 2502904a42df6d94bd743f7b73915415391dd6d31d5f50cb57c0a54a108e7b0a + md5: ab05bcf82d8509b4243f07e93bada144 + depends: + - libgcc-ng >=12 + license: LGPL-2.0-only + license_family: LGPL + size: 604863 + timestamp: 1664997611416 +- conda: https://prefix.dev/conda-forge/osx-64/lame-3.100-hb7f2c08_1003.tar.bz2 + sha256: 0f943b08abb4c748d73207594321b53bad47eea3e7d06b6078e0f6c59ce6771e + md5: 3342b33c9a0921b22b767ed68ee25861 + license: LGPL-2.0-only + license_family: LGPL + size: 542681 + timestamp: 1664996421531 +- conda: https://prefix.dev/conda-forge/osx-arm64/lame-3.100-h1a8c8d9_1003.tar.bz2 + sha256: f40ce7324b2cf5338b766d4cdb8e0453e4156a4f83c2f31bbfff750785de304c + md5: bff0e851d66725f78dc2fd8b032ddb7e + license: LGPL-2.0-only + license_family: LGPL + size: 528805 + timestamp: 1664996399305 +- conda: https://prefix.dev/conda-forge/win-64/lame-3.100-hcfcfb64_1003.tar.bz2 + sha256: 824988a396b97bb9138823a1b3aabd8326e06da5834b3011253d72bb45fd3a88 + md5: d92e64077c44c9e32c72d4b5799d47e4 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + license: LGPL-2.0-only + license_family: LGPL + size: 570583 + timestamp: 1664996824680 +- conda: https://prefix.dev/conda-forge/noarch/lark-1.2.2-pyhd8ed1ab_1.conda + sha256: 637a9c32e15a4333f1f9c91e0a506dbab4a6dab7ee83e126951159c916c81c99 + md5: 3a8063b25e603999188ed4bbf3485404 + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 92093 + timestamp: 1734709450256 +- conda: https://prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda + sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 + md5: 000e85703f0fd9594c81710dd5066471 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + license: MIT + license_family: MIT + size: 248046 + timestamp: 1739160907615 +- conda: https://prefix.dev/conda-forge/linux-aarch64/lcms2-2.17-hc88f144_0.conda + sha256: 47cf6a4780dc41caa9bc95f020eed485b07010c9ccc85e9ef44b538fedb5341d + md5: b87b1abd2542cf65a00ad2e2461a3083 + depends: + - libgcc >=13 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + license: MIT + license_family: MIT + size: 287007 + timestamp: 1739161069194 +- conda: https://prefix.dev/conda-forge/osx-64/lcms2-2.17-h72f5680_0.conda + sha256: bcb81543e49ff23e18dea79ef322ab44b8189fb11141b1af99d058503233a5fc + md5: bf210d0c63f2afb9e414a858b79f0eaa + depends: + - __osx >=10.13 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + license: MIT + license_family: MIT + size: 226001 + timestamp: 1739161050843 +- conda: https://prefix.dev/conda-forge/osx-arm64/lcms2-2.17-h7eeda09_0.conda + sha256: 310a62c2f074ebd5aa43b3cd4b00d46385ce680fa2132ecee255a200e2d2f15f + md5: 92a61fd30b19ebd5c1621a5bfe6d8b5f + depends: + - __osx >=11.0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + license: MIT + license_family: MIT + size: 212125 + timestamp: 1739161108467 +- conda: https://prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda + sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d + md5: 3538827f77b82a837fa681a4579e37a1 + depends: + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 510641 + timestamp: 1739161381270 +- conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_4.conda + sha256: db73f38155d901a610b2320525b9dd3b31e4949215c870685fd92ea61b5ce472 + md5: 01f8d123c96816249efd255a31ad7712 + depends: + - __glibc >=2.17,<3.0.a0 + constrains: + - binutils_impl_linux-64 2.43 + license: GPL-3.0-only + license_family: GPL + size: 671240 + timestamp: 1740155456116 +- conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.43-h80caac9_4.conda + sha256: 016832a70b0aa97e1c4e47e23c00b0c34def679de25146736df353199f684f0d + md5: 80c9ad5e05e91bb6c0967af3880c9742 + constrains: + - binutils_impl_linux-aarch64 2.43 + license: GPL-3.0-only + license_family: GPL + size: 699058 + timestamp: 1740155620594 +- conda: https://prefix.dev/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 + sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 + md5: 76bbff344f0134279f225174e9064c8f + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 281798 + timestamp: 1657977462600 +- conda: https://prefix.dev/conda-forge/linux-aarch64/lerc-4.0.0-h4de3ea5_0.tar.bz2 + sha256: 2d09ef9b7796d83364957e420b41c32d94e628c3f0520b61c332518a7b5cd586 + md5: 1a0ffc65e03ce81559dbcb0695ad1476 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: Apache + size: 262096 + timestamp: 1657978241894 +- conda: https://prefix.dev/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2 + sha256: e41790fc0f4089726369b3c7f813117bbc14b533e0ed8b94cf75aba252e82497 + md5: f9d6a4c82889d5ecedec1d90eb673c55 + depends: + - libcxx >=13.0.1 + license: Apache-2.0 + license_family: Apache + size: 290319 + timestamp: 1657977526749 +- conda: https://prefix.dev/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2 + sha256: 6f068bb53dfb6147d3147d981bb851bb5477e769407ad4e6a68edf482fdcb958 + md5: de462d5aacda3b30721b512c5da4e742 + depends: + - libcxx >=13.0.1 + license: Apache-2.0 + license_family: Apache + size: 215721 + timestamp: 1657977558796 +- conda: https://prefix.dev/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 + sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 + md5: 1900cb3cab5055833cfddb0ba233b074 + depends: + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30037 + license: Apache-2.0 + license_family: Apache + size: 194365 + timestamp: 1657977692274 +- conda: https://prefix.dev/conda-forge/linux-64/level-zero-1.21.8-h84d6215_0.conda + sha256: 07850347eb8dd6459bae3e74535730f86030b964dac62b54115fd7003ba9a1d4 + md5: 90d6421a418b17d614a964485e083f53 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: MIT + license_family: MIT + size: 551825 + timestamp: 1743604154326 +- conda: https://prefix.dev/conda-forge/linux-64/libabseil-20240722.0-cxx17_hbbce691_4.conda + sha256: 143a586aa67d50622ef703de57b9d43f44945836d6568e0e7aa174bd8c45e0d4 + md5: 488f260ccda0afaf08acb286db439c2f + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + constrains: + - libabseil-static =20240722.0=cxx17* + - abseil-cpp =20240722.0 + license: Apache-2.0 + license_family: Apache + size: 1311599 + timestamp: 1736008414161 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h18dbdb1_4.conda + sha256: bb6c5fb3b8de5f90735c5252b57efb3c268ee222c755569dac18065f05147670 + md5: 633b9fe454ffea2aaf29e191d946a83b + depends: + - libgcc >=13 + - libstdcxx >=13 + constrains: + - abseil-cpp =20240722.0 + - libabseil-static =20240722.0=cxx17* + license: Apache-2.0 + license_family: Apache + size: 1334844 + timestamp: 1736008472455 +- conda: https://prefix.dev/conda-forge/osx-64/libabseil-20240722.0-cxx17_h0e468a2_4.conda + sha256: 375e98c007cbe2535b89adccf4d417480d54ce2fb4b559f0b700da294dee3985 + md5: 03dd3d0563d01c2b82881734ee0eb334 + depends: + - __osx >=10.13 + - libcxx >=18 + constrains: + - abseil-cpp =20240722.0 + - libabseil-static =20240722.0=cxx17* + license: Apache-2.0 + license_family: Apache + size: 1163503 + timestamp: 1736008705613 +- conda: https://prefix.dev/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_h07bc746_4.conda + sha256: 05fa5e5e908962b9c5aba95f962e2ca81d9599c4715aebe5e4ddb72b309d1770 + md5: c2d95bd7aa8d564a9bd7eca5e571a5b3 + depends: + - __osx >=11.0 + - libcxx >=18 + constrains: + - libabseil-static =20240722.0=cxx17* + - abseil-cpp =20240722.0 + license: Apache-2.0 + license_family: Apache + size: 1178260 + timestamp: 1736008642885 +- conda: https://prefix.dev/conda-forge/win-64/libabseil-20240722.0-cxx17_h4eb7d71_4.conda + sha256: 846eacff96d36060fe5f7b351e4df6fafae56bf34cc6426497f12b5c13f317cf + md5: c57ee7f404d1aa84deb3e15852bec6fa + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - abseil-cpp =20240722.0 + - libabseil-static =20240722.0=cxx17* + license: Apache-2.0 + license_family: Apache + size: 1784929 + timestamp: 1736008778245 +- conda: https://prefix.dev/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda + sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017 + md5: 5e97e271911b8b2001a8b71860c32faa + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 35446 + timestamp: 1711021212685 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libaec-1.1.3-h2f0025b_0.conda + sha256: 9c366233b4f4bf11e64ce886055aaac34445205a178061923300872e0564a4f2 + md5: e52c4a30901a90354855e40992af907d + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 35339 + timestamp: 1711021162162 +- conda: https://prefix.dev/conda-forge/osx-64/libaec-1.1.3-h73e2aa4_0.conda + sha256: dae5921339c5d89f4bf58a95fd4e9c76270dbf7f6a94f3c5081b574905fcccf8 + md5: 66d3c1f6dd4636216b4fca7a748d50eb + depends: + - libcxx >=16 + license: BSD-2-Clause + license_family: BSD + size: 28602 + timestamp: 1711021419744 +- conda: https://prefix.dev/conda-forge/osx-arm64/libaec-1.1.3-hebf3989_0.conda + sha256: 896189b7b48a194c46a3556ea04943ef81cbe0498521231f8eb25816a68bc8ed + md5: 6f0b8e56d2e7bae12a18fc5b2cd9f310 + depends: + - libcxx >=16 + license: BSD-2-Clause + license_family: BSD + size: 28451 + timestamp: 1711021498493 +- conda: https://prefix.dev/conda-forge/win-64/libaec-1.1.3-h63175ca_0.conda + sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf + md5: 8723000f6ffdbdaef16025f0a01b64c5 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 32567 + timestamp: 1711021603471 +- conda: https://prefix.dev/conda-forge/linux-64/libasprintf-0.23.1-h8e693c7_0.conda + sha256: 13b863584fccbb9089de73a2442e540703ce4873e4719c9d98c98e4a8e12f9d1 + md5: 988f4937281a66ca19d1adb3b5e3f859 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: LGPL-2.1-or-later + size: 43179 + timestamp: 1739038705987 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libasprintf-0.23.1-h5e0f5ae_0.conda + sha256: f80d436462d78c459758176d59b0231c3cce99502408c2e4af03bacee786fc94 + md5: b34cfd925b96e72b99286e0cff036e82 + depends: + - libgcc >=13 + - libstdcxx >=13 + license: LGPL-2.1-or-later + size: 43700 + timestamp: 1739038595159 +- conda: https://prefix.dev/conda-forge/osx-64/libasprintf-0.23.1-h27064b9_0.conda + sha256: d6a4fbf497040ab4733c5dc65dd273ed6fa827ce6e67fd12abbe08c3cc3e192e + md5: 43e1d9e1712208ac61941a513259248d + depends: + - __osx >=10.13 + - libcxx >=18 + license: LGPL-2.1-or-later + size: 42365 + timestamp: 1739039157296 +- conda: https://prefix.dev/conda-forge/osx-arm64/libasprintf-0.23.1-h493aca8_0.conda + sha256: 2b27d2ede7867fd362f94644aac1d7fb9af7f7fc3f122cb014647b47ffd402a4 + md5: baf9e4423f10a15ca7eab26480007639 + depends: + - __osx >=11.0 + - libcxx >=18 + license: LGPL-2.1-or-later + size: 41679 + timestamp: 1739039255705 +- conda: https://prefix.dev/conda-forge/win-64/libasprintf-0.22.5-h5728263_3.conda + sha256: 8e41136b7e4ec44c1c0bae0ff51cdb0d04e026d0b44eaaf5a9ff8b4e1b6b019b + md5: 9f661052be1d477dcf61ee3cd77ce5ee + license: LGPL-2.1-or-later + size: 49776 + timestamp: 1723629333404 +- conda: https://prefix.dev/conda-forge/linux-64/libasprintf-devel-0.23.1-h8e693c7_0.conda + sha256: b05a859fe5a2b43574f3a5d93552061232b92d17017b27ecab1eccca1dbb2fe4 + md5: 2827e722a963b779ce878ef9b5474534 + depends: + - __glibc >=2.17,<3.0.a0 + - libasprintf 0.23.1 h8e693c7_0 + - libgcc >=13 + license: LGPL-2.1-or-later + size: 34282 + timestamp: 1739038733352 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libasprintf-devel-0.23.1-h5e0f5ae_0.conda + sha256: 35829ce5805229b83e9b660ec6579b04c5ec83ac82ef72d93b31ea47def1ac09 + md5: ec789924a13fcd14c53cbf90ea1b8551 + depends: + - libasprintf 0.23.1 h5e0f5ae_0 + - libgcc >=13 + license: LGPL-2.1-or-later + size: 34348 + timestamp: 1739038610428 +- conda: https://prefix.dev/conda-forge/osx-64/libasprintf-devel-0.23.1-h27064b9_0.conda + sha256: 7962374bc3052db086277fd7e83fd3b05b01a66aa0d7e75c96248b35bee9277e + md5: 85b6f23aab6898c44f477f354c675721 + depends: + - __osx >=10.13 + - libasprintf 0.23.1 h27064b9_0 + license: LGPL-2.1-or-later + size: 34636 + timestamp: 1739039185415 +- conda: https://prefix.dev/conda-forge/osx-arm64/libasprintf-devel-0.23.1-h493aca8_0.conda + sha256: 25999d3c78270440e7e9e06c2e6f4a2e1ac11d2df84ac7b24280c6f530eed06f + md5: 13d4d79418eb3137fc94fe61e9e572e7 + depends: + - __osx >=11.0 + - libasprintf 0.23.1 h493aca8_0 + license: LGPL-2.1-or-later + size: 34641 + timestamp: 1739039285881 +- conda: https://prefix.dev/conda-forge/linux-64/libass-0.17.3-hba53ac1_1.conda + sha256: aaf38bcb9b78963f4eb58d882a9a6a350f500cfa162bd8a80f7f215d3831afa2 + md5: f5e75fe79d446bf4975b41d375314605 + depends: + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - harfbuzz >=10.1.0,<11.0a0 + - freetype >=2.12.1,<3.0a0 + - fribidi >=1.0.10,<2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - libiconv >=1.17,<2.0a0 + license: ISC + size: 153294 + timestamp: 1733786555242 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libass-0.17.3-hdba415e_1.conda + sha256: b86cadd617b59eb3b7328e440b84e9b956a65c0fca2054e0ff7c308d9e88efde + md5: a249c94e018480871ec16d9b7b1d6e86 + depends: + - libgcc >=13 + - freetype >=2.12.1,<3.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - libiconv >=1.17,<2.0a0 + - harfbuzz >=10.1.0,<11.0a0 + - fribidi >=1.0.10,<2.0a0 + license: ISC + size: 174398 + timestamp: 1733786606608 +- conda: https://prefix.dev/conda-forge/osx-64/libass-0.17.3-h07fa1ac_1.conda + sha256: beb9c4a31340b868bee7612abc2390d349d4e1b7a626b2dff9b86cc8e21124b2 + md5: aae0b8eaabc24bd52f3154ddc79b8bd8 + depends: + - __osx >=10.13 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - libiconv >=1.17,<2.0a0 + - harfbuzz >=10.1.0,<11.0a0 + - fribidi >=1.0.10,<2.0a0 + - freetype >=2.12.1,<3.0a0 + license: ISC + size: 157971 + timestamp: 1733786595889 +- conda: https://prefix.dev/conda-forge/osx-arm64/libass-0.17.3-h16a287c_1.conda + sha256: a7c165d34af88fa483a65412837a15cfa6d455dabc3cfd36b0f102023f8c0680 + md5: e24abda6de7004c230ee372834c88b90 + depends: + - __osx >=11.0 + - libiconv >=1.17,<2.0a0 + - fribidi >=1.0.10,<2.0a0 + - freetype >=2.12.1,<3.0a0 + - harfbuzz >=10.1.0,<11.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + license: ISC + size: 138422 + timestamp: 1733786687672 +- conda: https://prefix.dev/conda-forge/linux-64/libblas-3.9.0-31_h59b9bed_openblas.conda + build_number: 31 + sha256: 9839fc4ac0cbb0aa3b9eea520adfb57311838959222654804e58f6f2d1771db5 + md5: 728dbebd0f7a20337218beacffd37916 + depends: + - libopenblas >=0.3.29,<0.3.30.0a0 + - libopenblas >=0.3.29,<1.0a0 + constrains: + - liblapacke =3.9.0=31*_openblas + - liblapack =3.9.0=31*_openblas + - blas =2.131=openblas + - mkl <2025 + - libcblas =3.9.0=31*_openblas + license: BSD-3-Clause + license_family: BSD + size: 16859 + timestamp: 1740087969120 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libblas-3.9.0-31_h1a9f1db_openblas.conda + build_number: 31 + sha256: 67c9c81dd0444ecc712124034d9f74186ca82fd770b3df46b1a68564461c6a1a + md5: 48bd5bf15ccf3e409840be9caafc0ad5 + depends: + - libopenblas >=0.3.29,<0.3.30.0a0 + - libopenblas >=0.3.29,<1.0a0 + constrains: + - liblapack =3.9.0=31*_openblas + - blas =2.131=openblas + - libcblas =3.9.0=31*_openblas + - mkl <2025 + - liblapacke =3.9.0=31*_openblas + license: BSD-3-Clause + license_family: BSD + size: 16915 + timestamp: 1740087911042 +- conda: https://prefix.dev/conda-forge/osx-64/libblas-3.9.0-31_h53a1964_accelerate.conda + build_number: 31 + sha256: 7b792cf04c230a7f1f86799cb0eea30c33d7b8057285656ff64cfe9cdcc83e6e + md5: 1598b53b435e2741a13b5e0654f93518 + depends: + - __osx >=10.13 + - libgfortran 5.* + - libgfortran5 >=13.2.0 + constrains: + - mkl <2025 + - libcblas =3.9.0=31*_accelerate + - liblapacke =3.9.0=31*_accelerate + - liblapack =3.9.0=31*_accelerate + - blas =2.131=accelerate + track_features: + - blas_accelerate + license: BSD-3-Clause + license_family: BSD + size: 2919493 + timestamp: 1740088160992 +- conda: https://prefix.dev/conda-forge/osx-arm64/libblas-3.9.0-31_h504e6c8_accelerate.conda + build_number: 31 + sha256: 5715658219a43c0cebbef4c5120b6e17aebd410a0a075292aa26968428c177a9 + md5: cd70391dbb683b12b4518c2a38d545be + depends: + - __osx >=11.0 + - libgfortran 5.* + - libgfortran5 >=13.2.0 + constrains: + - libcblas =3.9.0=31*_accelerate + - mkl <2025 + - liblapack =3.9.0=31*_accelerate + - liblapacke =3.9.0=31*_accelerate + - blas =2.131=accelerate + track_features: + - blas_accelerate + license: BSD-3-Clause + license_family: BSD + size: 2580676 + timestamp: 1740088267494 +- conda: https://prefix.dev/conda-forge/win-64/libblas-3.9.0-31_h11dc60a_openblas.conda + build_number: 31 + sha256: 3db2c2118fd61f8cc38b9d5c89f26a0eb568f4ac5e5cf4ed48cdd141d4b5251b + md5: 3d7bc994efe79ad960391418647b66aa + depends: + - libopenblas 0.3.29 pthreads_head3c61_0 + constrains: + - liblapack =3.9.0=31*_openblas + - mkl <2025 + - libcblas =3.9.0=31*_openblas + - liblapacke =3.9.0=31*_openblas + - blas =2.131=openblas + track_features: + - blas_openblas + license: BSD-3-Clause + license_family: BSD + size: 3945007 + timestamp: 1740088602610 +- conda: https://prefix.dev/conda-forge/linux-64/libboost-1.86.0-h6c02f8c_3.conda + sha256: bad622863b3e4c8f0d107d8efd5b808e52d79cb502a20d700d05357b59a51e8f + md5: eead4e74198698d1c74f06572af753bc + depends: + - __glibc >=2.17,<3.0.a0 + - bzip2 >=1.0.8,<2.0a0 + - icu >=75.1,<76.0a0 + - libgcc >=13 + - liblzma >=5.6.3,<6.0a0 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - boost-cpp <0.0a0 + license: BSL-1.0 + size: 2946990 + timestamp: 1733501899743 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libboost-1.86.0-h4d13611_3.conda + sha256: 2793e4d102d5822dfeb71ba1c0844df8357d041810eedf8144a7292921f89498 + md5: b5042cc0004a036390a6e4b007d77966 + depends: + - bzip2 >=1.0.8,<2.0a0 + - icu >=75.1,<76.0a0 + - libgcc >=13 + - liblzma >=5.6.3,<6.0a0 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - boost-cpp <0.0a0 + license: BSL-1.0 + size: 3049840 + timestamp: 1733502105682 +- conda: https://prefix.dev/conda-forge/osx-64/libboost-1.86.0-hf0da243_3.conda + sha256: 7758971337b07d1f4fd0c55eed4bfb06e3c0512a7e4549c648a01383926c1fcd + md5: 1e25fad7b2c160cd3b9b52f3507eb272 + depends: + - __osx >=10.13 + - bzip2 >=1.0.8,<2.0a0 + - icu >=75.1,<76.0a0 + - libcxx >=18 + - liblzma >=5.6.3,<6.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - boost-cpp <0.0a0 + license: BSL-1.0 + size: 2134033 + timestamp: 1733503407177 +- conda: https://prefix.dev/conda-forge/osx-arm64/libboost-1.86.0-hc9fb7c5_3.conda + sha256: 793da2d2f7e2e14ed34549e3085771eefcc13ee6e06de2409a681ff0a545e905 + md5: 722715e61d51bcc7bd74f7a2b133f0d7 + depends: + - __osx >=11.0 + - bzip2 >=1.0.8,<2.0a0 + - icu >=75.1,<76.0a0 + - libcxx >=18 + - liblzma >=5.6.3,<6.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - boost-cpp <0.0a0 + license: BSL-1.0 + size: 1937185 + timestamp: 1733503730683 +- conda: https://prefix.dev/conda-forge/win-64/libboost-1.86.0-hb0986bb_3.conda + sha256: 0e1f19d03c2755f424321e0bebf3a62f864e084e812d172b3953e5215d4e4d36 + md5: d0550e3c23e9e9885bf410fe6f519361 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libiconv >=1.17,<2.0a0 + - liblzma >=5.6.3,<6.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - boost-cpp <0.0a0 + license: BSL-1.0 + size: 2502049 + timestamp: 1733503877084 +- conda: https://prefix.dev/conda-forge/linux-64/libboost-python-1.86.0-py312hc39e661_3.conda + sha256: 55e95db9dff3de283f135003954767b651e747377cd159752171e589bd4c697b + md5: 99acbdbbd31f223f9ce0ef4fca944d1c + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - numpy >=1.19,<3 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - boost <0.0a0 + - py-boost <0.0a0 + license: BSL-1.0 + size: 123391 + timestamp: 1733502113645 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libboost-python-1.86.0-py312h4f0fe26_3.conda + sha256: 526a4dcea20f46c2cff6bd856a6b4d89dddb3395707ce7f8dc024c4985a11f70 + md5: 26af72971bc14e9033f5045c0bae9131 + depends: + - libgcc >=13 + - libstdcxx >=13 + - numpy >=1.19,<3 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + constrains: + - py-boost <0.0a0 + - boost <0.0a0 + license: BSL-1.0 + size: 117850 + timestamp: 1733502482830 +- conda: https://prefix.dev/conda-forge/osx-64/libboost-python-1.86.0-py312hdf63323_3.conda + sha256: 357db90573e04b560d2a07553710bcc95ac41aa3932343388f656e8e4da087a7 + md5: 6b73e61cd7c1c148a942e834d0bc7506 + depends: + - __osx >=10.13 + - libcxx >=18 + - numpy >=1.19,<3 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - py-boost <0.0a0 + - boost <0.0a0 + license: BSL-1.0 + size: 105915 + timestamp: 1733504049540 +- conda: https://prefix.dev/conda-forge/osx-arm64/libboost-python-1.86.0-py312h72cd453_3.conda + sha256: 555ea5fb3bc196157dfedc25cbf4bab040f3ea1a6e141ed87f6a8695adf5b128 + md5: d8de9ac33fcb16636ee7944d2381fa0e + depends: + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.19,<3 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + constrains: + - py-boost <0.0a0 + - boost <0.0a0 + license: BSL-1.0 + size: 104484 + timestamp: 1733505043401 +- conda: https://prefix.dev/conda-forge/win-64/libboost-python-1.86.0-py312hbaa7e33_3.conda + sha256: b5b5107a7a11a67d545e0f3ea066f36a79c5cd7b3dbeeea49fd90bc44d4e2497 + md5: 243c8986d4e623d2aa07559a98bf91bc + depends: + - numpy >=1.19,<3 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - boost <0.0a0 + - py-boost <0.0a0 + license: BSL-1.0 + size: 111640 + timestamp: 1733504689305 +- conda: https://prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda + sha256: d9db2de60ea917298e658143354a530e9ca5f9c63471c65cf47ab39fd2f429e3 + md5: 41b599ed2b02abcfdd84302bff174b23 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 68851 + timestamp: 1725267660471 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libbrotlicommon-1.1.0-h86ecc28_2.conda + sha256: 64112af913974b309d67fd342e065fd184347043a6387933b3db796778a28019 + md5: 3ee026955c688f551a9999840cff4c67 + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 68982 + timestamp: 1725267774142 +- conda: https://prefix.dev/conda-forge/osx-64/libbrotlicommon-1.1.0-h00291cd_2.conda + sha256: b377056470a9fb4a100aa3c51b3581aab6496ba84d21cd99bcc1d5ef0359b1b6 + md5: 58f2c4bdd56c46cc7451596e4ae68e0b + depends: + - __osx >=10.13 + license: MIT + license_family: MIT + size: 67267 + timestamp: 1725267768667 +- conda: https://prefix.dev/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hd74edd7_2.conda + sha256: 839dacb741bdbb25e58f42088a2001b649f4f12195aeb700b5ddfca3267749e5 + md5: d0bf1dff146b799b319ea0434b93f779 + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 68426 + timestamp: 1725267943211 +- conda: https://prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_2.conda + sha256: 33e8851c6cc8e2d93059792cd65445bfe6be47e4782f826f01593898ec95764c + md5: f7dc9a8f21d74eab46456df301da2972 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 70526 + timestamp: 1725268159739 +- conda: https://prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda + sha256: 2892d512cad096cb03f1b66361deeab58b64e15ba525d6592bb6d609e7045edf + md5: 9566f0bd264fbd463002e759b8a82401 + depends: + - __glibc >=2.17,<3.0.a0 + - libbrotlicommon 1.1.0 hb9d3cd8_2 + - libgcc >=13 + license: MIT + license_family: MIT + size: 32696 + timestamp: 1725267669305 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h86ecc28_2.conda + sha256: 94c808d9ca3eb6ef30976a9843e27f027cf3a1e84e8c6835cbb696b7bdb35c4c + md5: e64d0f3b59c7c4047446b97a8624a72d + depends: + - libbrotlicommon 1.1.0 h86ecc28_2 + - libgcc >=13 + license: MIT + license_family: MIT + size: 31708 + timestamp: 1725267783442 +- conda: https://prefix.dev/conda-forge/osx-64/libbrotlidec-1.1.0-h00291cd_2.conda + sha256: 4d49ea72e2f44d2d7a8be5472e4bd0bc2c6b89c55569de2c43576363a0685c0c + md5: 34709a1f5df44e054c4a12ab536c5459 + depends: + - __osx >=10.13 + - libbrotlicommon 1.1.0 h00291cd_2 + license: MIT + license_family: MIT + size: 29872 + timestamp: 1725267807289 +- conda: https://prefix.dev/conda-forge/osx-arm64/libbrotlidec-1.1.0-hd74edd7_2.conda + sha256: 6c6862eb274f21a7c0b60e5345467a12e6dda8b9af4438c66d496a2c1a538264 + md5: 55e66e68ce55523a6811633dd1ac74e2 + depends: + - __osx >=11.0 + - libbrotlicommon 1.1.0 hd74edd7_2 + license: MIT + license_family: MIT + size: 28378 + timestamp: 1725267980316 +- conda: https://prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_2.conda + sha256: 234fc92f4c4f1cf22f6464b2b15bfc872fa583c74bf3ab9539ff38892c43612f + md5: 9bae75ce723fa34e98e239d21d752a7e + depends: + - libbrotlicommon 1.1.0 h2466b09_2 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 32685 + timestamp: 1725268208844 +- conda: https://prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda + sha256: 779f58174e99de3600e939fa46eddb453ec5d3c60bb46cdaa8b4c127224dbf29 + md5: 06f70867945ea6a84d35836af780f1de + depends: + - __glibc >=2.17,<3.0.a0 + - libbrotlicommon 1.1.0 hb9d3cd8_2 + - libgcc >=13 + license: MIT + license_family: MIT + size: 281750 + timestamp: 1725267679782 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libbrotlienc-1.1.0-h86ecc28_2.conda + sha256: 41385e17bc73834b235c5aff12d6d82eccb534acb3c30986996f9dad92a0d54c + md5: 0e9bd365480c72b25c71a448257b537d + depends: + - libbrotlicommon 1.1.0 h86ecc28_2 + - libgcc >=13 + license: MIT + license_family: MIT + size: 290230 + timestamp: 1725267792697 +- conda: https://prefix.dev/conda-forge/osx-64/libbrotlienc-1.1.0-h00291cd_2.conda + sha256: 477d236d389473413a1ccd2bec1b66b2f1d2d7d1b4a57bb56421b7b611a56cd1 + md5: 691f0dcb36f1ae67f5c489f20ae987ea + depends: + - __osx >=10.13 + - libbrotlicommon 1.1.0 h00291cd_2 + license: MIT + license_family: MIT + size: 296353 + timestamp: 1725267822076 +- conda: https://prefix.dev/conda-forge/osx-arm64/libbrotlienc-1.1.0-hd74edd7_2.conda + sha256: eeb1eb0d58b9d02bc1b98dc0a058f104ab168eb2f7d1c7bfa0570a12cfcdb7b7 + md5: 4f3a434504c67b2c42565c0b85c1885c + depends: + - __osx >=11.0 + - libbrotlicommon 1.1.0 hd74edd7_2 + license: MIT + license_family: MIT + size: 279644 + timestamp: 1725268003553 +- conda: https://prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_2.conda + sha256: 3d0dd7ef505962f107b7ea8f894e0b3dd01bf46852b362c8a7fc136b039bc9e1 + md5: 85741a24d97954a991e55e34bc55990b + depends: + - libbrotlicommon 1.1.0 h2466b09_2 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 245929 + timestamp: 1725268238259 +- conda: https://prefix.dev/conda-forge/linux-64/libcap-2.71-h39aace5_0.conda + sha256: 2bbefac94f4ab8ff7c64dc843238b6c8edcc9ff1f2b5a0a48407a904dc7ccfb2 + md5: dd19e4e3043f6948bd7454b946ee0983 + depends: + - __glibc >=2.17,<3.0.a0 + - attr >=2.5.1,<2.6.0a0 + - libgcc >=13 + license: BSD-3-Clause + license_family: BSD + size: 102268 + timestamp: 1729940917945 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libcap-2.71-h51d75a7_0.conda + sha256: 2b66e66e6a0768e833e7edc764649679881ec0a6b37d9bf254b1ceb3b8b434ef + md5: 29f6092b6e938516ca0b042837e64fa5 + depends: + - attr >=2.5.1,<2.6.0a0 + - libgcc >=13 + license: BSD-3-Clause + license_family: BSD + size: 106877 + timestamp: 1729940936697 +- conda: https://prefix.dev/conda-forge/linux-64/libcblas-3.9.0-31_he106b2a_openblas.conda + build_number: 31 + sha256: ede8545011f5b208b151fe3e883eb4e31d495ab925ab7b9ce394edca846e0c0d + md5: abb32c727da370c481a1c206f5159ce9 + depends: + - libblas 3.9.0 31_h59b9bed_openblas + constrains: + - liblapacke =3.9.0=31*_openblas + - liblapack =3.9.0=31*_openblas + - blas =2.131=openblas + license: BSD-3-Clause + license_family: BSD + size: 16796 + timestamp: 1740087984429 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libcblas-3.9.0-31_hab92f65_openblas.conda + build_number: 31 + sha256: f0457a1d2982f0a28bfbadaa02621677c324e88f7c8198c24fb3e3214c468dba + md5: 6b81dbae56a519f1ec2f25e0ee2f4334 + depends: + - libblas 3.9.0 31_h1a9f1db_openblas + constrains: + - liblapack =3.9.0=31*_openblas + - blas =2.131=openblas + - liblapacke =3.9.0=31*_openblas + license: BSD-3-Clause + license_family: BSD + size: 16824 + timestamp: 1740087917500 +- conda: https://prefix.dev/conda-forge/osx-64/libcblas-3.9.0-31_h6bc05c3_accelerate.conda + build_number: 31 + sha256: 40b6d35197e07b07ea1f702e82a20d60b40d4e35cad0b704340b2f63c10b635a + md5: 8250dffde88f180d741520ddbe68fb82 + depends: + - libblas 3.9.0 31_h53a1964_accelerate + constrains: + - liblapacke =3.9.0=31*_accelerate + - liblapack =3.9.0=31*_accelerate + - blas =2.131=accelerate + track_features: + - blas_accelerate + license: BSD-3-Clause + license_family: BSD + size: 16971 + timestamp: 1740088185868 +- conda: https://prefix.dev/conda-forge/osx-arm64/libcblas-3.9.0-31_h8d39bcd_accelerate.conda + build_number: 31 + sha256: aa57621db2076a5131c041fe8957d70b4fea74f31f5e74eb8bcf5c5ed63707ba + md5: d64de08ef8a0e517c3f126dc726b2dd2 + depends: + - libblas 3.9.0 31_h504e6c8_accelerate + constrains: + - liblapack =3.9.0=31*_accelerate + - liblapacke =3.9.0=31*_accelerate + - blas =2.131=accelerate + track_features: + - blas_accelerate + license: BSD-3-Clause + license_family: BSD + size: 17026 + timestamp: 1740088279975 +- conda: https://prefix.dev/conda-forge/win-64/libcblas-3.9.0-31_h9bd4c3b_openblas.conda + build_number: 31 + sha256: 66108a918143bd3b7d20102665fc05012480cb89e08003f5c3a4770421a2d72b + md5: 72ea5b0c5d1c3016ce522a8f692139c0 + depends: + - libblas 3.9.0 31_h11dc60a_openblas + - libopenblas * pthreads* + constrains: + - liblapack =3.9.0=31*_openblas + - blas =2.131=openblas + - liblapacke =3.9.0=31*_openblas + track_features: + - blas_openblas + license: BSD-3-Clause + license_family: BSD + size: 3946225 + timestamp: 1740088645546 +- conda: https://prefix.dev/conda-forge/osx-64/libclang-cpp18.1-18.1.8-default_h3571c67_8.conda + sha256: 9e9af164c1ddfd114a786aceacf64df0041c3528a97cc96c06f3bf1040485e29 + md5: 1444a2cd1f78fccea7dacb658f8aeb39 + depends: + - __osx >=10.13 + - libcxx >=18.1.8 + - libllvm18 >=18.1.8,<18.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 13905920 + timestamp: 1742266347128 +- conda: https://prefix.dev/conda-forge/osx-arm64/libclang-cpp18.1-18.1.8-default_hf90f093_8.conda + sha256: b736c4c3a32d4aa16b4af7b2094b4f3786ea34723cccb9918579206706000f90 + md5: a5f883cd77dcc0f62a0eca8445d9e147 + depends: + - __osx >=11.0 + - libcxx >=18.1.8 + - libllvm18 >=18.1.8,<18.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 13330731 + timestamp: 1742265504673 +- conda: https://prefix.dev/conda-forge/linux-64/libclang-cpp19.1-19.1.7-default_hb5137d0_2.conda + sha256: 658c8000f3be74ad926b376b48903036611b5beccc07f729417730c49bd73a30 + md5: 62d6f9353753a12a281ae99e0a3403c4 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libllvm19 >=19.1.7,<19.2.0a0 + - libstdcxx >=13 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 20556230 + timestamp: 1742267376167 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libclang-cpp19.1-19.1.7-default_he324ac1_2.conda + sha256: ee624228956159cb2be407574b8467c67a7bbb538547e2f9299209f08f4a9d7b + md5: 0424f44a2b8b81c0da4ade147eacdae2 + depends: + - libgcc >=13 + - libllvm19 >=19.1.7,<19.2.0a0 + - libstdcxx >=13 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 20098820 + timestamp: 1742269466891 +- conda: https://prefix.dev/conda-forge/linux-64/libclang13-20.1.1-default_h9c6a7e4_0.conda + sha256: e73fef6a7eeb800220b435561126597639e78e3bc1d8f2f32ad6f89de07b5308 + md5: f8b1b8c13c0a0fede5e1a204eafb48f8 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libllvm20 >=20.1.1,<20.2.0a0 + - libstdcxx >=13 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 12114034 + timestamp: 1742506367797 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libclang13-20.1.1-default_h4390ef5_0.conda + sha256: 33ed5913fca61fbb3e7c89bd1e6ffdc47ef18bf7f39122e26c04e570cdea6e76 + md5: faa5920ac55e48c39732b018ba13d11c + depends: + - libgcc >=13 + - libllvm20 >=20.1.1,<20.2.0a0 + - libstdcxx >=13 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 11878811 + timestamp: 1742506614558 +- conda: https://prefix.dev/conda-forge/osx-64/libclang13-20.1.1-default_hf2b7afa_0.conda + sha256: e49812f2208a7a3f7739ba2a482f1bc9deff4ea3b761cb0e7a0f7521d21f5e5c + md5: 9fc8a7d8c2e4d170602c5c918aab40d0 + depends: + - __osx >=10.13 + - libcxx >=20.1.1 + - libllvm20 >=20.1.1,<20.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 8661104 + timestamp: 1742504540424 +- conda: https://prefix.dev/conda-forge/osx-arm64/libclang13-20.1.1-default_h81d93ff_0.conda + sha256: 3f8cd8a86046042392432e036f44f2b8b176b103a54e0c7b249d36cfd361e437 + md5: 43a4b87f51de4cbea46600b84d5ce1ad + depends: + - __osx >=11.0 + - libcxx >=20.1.1 + - libllvm20 >=20.1.1,<20.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 8433379 + timestamp: 1742505151444 +- conda: https://prefix.dev/conda-forge/win-64/libclang13-20.1.1-default_ha5278ca_0.conda + sha256: f8aa908391700fc19e736ab1c598a952bef1bbb72192790988a414216929cab8 + md5: c432d7ab334986169fd534725fc9375d + depends: + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28339961 + timestamp: 1742537164 +- conda: https://prefix.dev/conda-forge/linux-64/libcups-2.3.3-h4637d8d_4.conda + sha256: bc67b9b21078c99c6bd8595fe7e1ed6da1f721007726e717f0449de7032798c4 + md5: d4529f4dff3057982a7617c7ac58fde3 + depends: + - krb5 >=1.21.1,<1.22.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<2.0.0a0 + license: Apache-2.0 + license_family: Apache + size: 4519402 + timestamp: 1689195353551 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libcups-2.3.3-h405e4a8_4.conda + sha256: f9007d5ca44741de72f9d7be03e74c911b61af062ed7a3761594675f30f5890c + md5: d42c670b0c96c1795fd859d5e0275a55 + depends: + - krb5 >=1.21.1,<1.22.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<2.0.0a0 + license: Apache-2.0 + license_family: Apache + size: 4551247 + timestamp: 1689195336749 +- conda: https://prefix.dev/conda-forge/linux-64/libcurl-8.13.0-h332b0f4_0.conda + sha256: 38e528acfaa0276b7052f4de44271ff9293fdb84579650601a8c49dac171482a + md5: cbdc92ac0d93fe3c796e36ad65c7905c + depends: + - __glibc >=2.17,<3.0.a0 + - krb5 >=1.21.3,<1.22.0a0 + - libgcc >=13 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.1,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: curl + license_family: MIT + size: 438088 + timestamp: 1743601695669 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libcurl-8.13.0-h6702fde_0.conda + sha256: 47d5bdf013ed59429b569fb856d04db5a7071d51fcd237d899a0da646b59c592 + md5: bc91624cc60090963b8ca9e88d773a65 + depends: + - krb5 >=1.21.3,<1.22.0a0 + - libgcc >=13 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.1,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: curl + license_family: MIT + size: 455164 + timestamp: 1743601846734 +- conda: https://prefix.dev/conda-forge/osx-64/libcurl-8.13.0-h5dec5d8_0.conda + sha256: 137d92f1107141d9eb39598fb05837be4f9aad4ead957194d94364834f3cc590 + md5: a35b1976d746d55cd7380c8842d9a1b5 + depends: + - __osx >=10.13 + - krb5 >=1.21.3,<1.22.0a0 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.1,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: curl + license_family: MIT + size: 418479 + timestamp: 1743601943696 +- conda: https://prefix.dev/conda-forge/osx-arm64/libcurl-8.13.0-h73640d1_0.conda + sha256: 747f7e8aad390b9b39a300401579ff1b5731537a586869b724dc071a9b315f03 + md5: 4a5d33f75f9ead15089b04bed8d0eafe + depends: + - __osx >=11.0 + - krb5 >=1.21.3,<1.22.0a0 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.1,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: curl + license_family: MIT + size: 397929 + timestamp: 1743601888428 +- conda: https://prefix.dev/conda-forge/win-64/libcurl-8.13.0-h88aaa65_0.conda + sha256: 185553b37c0299b7a15dc66a7a7e2a0d421adaac784ec9298a0b2ad745116ca5 + md5: c9cf6eb842decbb66c2f34e72c3580d6 + depends: + - krb5 >=1.21.3,<1.22.0a0 + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: curl + license_family: MIT + size: 357142 + timestamp: 1743602240803 +- conda: https://prefix.dev/conda-forge/osx-64/libcxx-20.1.2-hf95d169_0.conda + sha256: 44a62b1fdc70ba07a9375eaca433bdac50518ffee6e0c6977eb65069fb70977e + md5: 25cc3210a5a8a1b332e12d20db11c6dd + depends: + - __osx >=10.13 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 563556 + timestamp: 1743573278971 +- conda: https://prefix.dev/conda-forge/osx-arm64/libcxx-20.1.2-ha82da77_0.conda + sha256: e3ad5ba1ff49f988c1476f47f395499e841bdd8eafc3908cb1b64daae3a83f3b + md5: 85ea0d49eb61f57e02ce98dc29ca161f + depends: + - __osx >=11.0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 566452 + timestamp: 1743573280445 +- conda: https://prefix.dev/conda-forge/linux-64/libdb-6.2.32-h9c3ff4c_0.tar.bz2 + sha256: 21fac1012ff05b131d4b5d284003dbbe7b5c4c652aa9e401b46279ed5a784372 + md5: 3f3258d8f841fbac63b36b75bdac1afd + depends: + - libgcc-ng >=9.3.0 + - libstdcxx-ng >=9.3.0 + license: AGPL-3.0-only + license_family: AGPL + size: 24409456 + timestamp: 1609539093147 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libdb-6.2.32-h01db608_0.tar.bz2 + sha256: 1f74d30c72d95c39315c6b5c3f1b328d00c4d5a2feff1e871fe5b71b4cb26811 + md5: 7cbfba14d5adfa65db945d5112909394 + depends: + - libgcc-ng >=9.3.0 + - libstdcxx-ng >=9.3.0 + license: AGPL-3.0-only + license_family: AGPL + size: 24449415 + timestamp: 1609538998176 +- conda: https://prefix.dev/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_0.conda + sha256: 511d801626d02f4247a04fff957cc6e9ec4cc7e8622bd9acd076bcdc5de5fe66 + md5: 8dfae1d2e74767e9ce36d5fa0d8605db + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 72255 + timestamp: 1734373823254 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libdeflate-1.23-h5e3c512_0.conda + sha256: 959419d87cd2b789a9055db95704c614f31aeb70bef7949fa2f734122a3a2863 + md5: 7e7ca2607b11b180120cefc2354fc0cb + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 69862 + timestamp: 1734373858306 +- conda: https://prefix.dev/conda-forge/osx-64/libdeflate-1.23-he65b83e_0.conda + sha256: 20c1e685e7409bb82c819ba55b9f7d9a654e8e6d597081581493badb7464520e + md5: 120f8f7ba6a8defb59f4253447db4bb4 + depends: + - __osx >=10.13 + license: MIT + license_family: MIT + size: 69309 + timestamp: 1734374105905 +- conda: https://prefix.dev/conda-forge/osx-arm64/libdeflate-1.23-hec38601_0.conda + sha256: 887c02deaed6d583459eba6367023e36d8761085b2f7126e389424f57155da53 + md5: 1d8b9588be14e71df38c525767a1ac30 + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 54132 + timestamp: 1734373971372 +- conda: https://prefix.dev/conda-forge/win-64/libdeflate-1.23-h9062f6e_0.conda + sha256: 96c47725a8258159295996ea2758fa0ff9bea330e72b59641642e16be8427ce8 + md5: a9624935147a25b06013099d3038e467 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 155723 + timestamp: 1734374084110 +- conda: https://prefix.dev/conda-forge/linux-64/libdrm-2.4.124-hb9d3cd8_0.conda + sha256: f0d5ffbdf3903a7840184d14c14154b503e1a96767c328f61d99ad24b6963e52 + md5: 8bc89311041d7fcb510238cf0848ccae + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libpciaccess >=0.18,<0.19.0a0 + license: MIT + license_family: MIT + size: 242533 + timestamp: 1733424409299 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libdrm-2.4.124-h86ecc28_0.conda + sha256: a0a89edcd142942ec5730f2b7d3b3f3e702b9be2d4c675fea3a8b62d40e6adc3 + md5: a8058bcb6b4fa195aaa20452437c7727 + depends: + - libgcc >=13 + - libpciaccess >=0.18,<0.19.0a0 + license: MIT + license_family: MIT + size: 246299 + timestamp: 1733424417343 +- conda: https://prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda + sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 + md5: c277e0a4d549b03ac1e9d6cbbe3d017b + depends: + - ncurses + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - ncurses >=6.5,<7.0a0 + license: BSD-2-Clause + license_family: BSD + size: 134676 + timestamp: 1738479519902 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libedit-3.1.20250104-pl5321h976ea20_0.conda + sha256: c0b27546aa3a23d47919226b3a1635fccdb4f24b94e72e206a751b33f46fd8d6 + md5: fb640d776fc92b682a14e001980825b1 + depends: + - ncurses + - libgcc >=13 + - ncurses >=6.5,<7.0a0 + license: BSD-2-Clause + license_family: BSD + size: 148125 + timestamp: 1738479808948 +- conda: https://prefix.dev/conda-forge/osx-64/libedit-3.1.20250104-pl5321ha958ccf_0.conda + sha256: 6cc49785940a99e6a6b8c6edbb15f44c2dd6c789d9c283e5ee7bdfedd50b4cd6 + md5: 1f4ed31220402fcddc083b4bff406868 + depends: + - ncurses + - __osx >=10.13 + - ncurses >=6.5,<7.0a0 + license: BSD-2-Clause + license_family: BSD + size: 115563 + timestamp: 1738479554273 +- conda: https://prefix.dev/conda-forge/osx-arm64/libedit-3.1.20250104-pl5321hafb1f1b_0.conda + sha256: 66aa216a403de0bb0c1340a88d1a06adaff66bae2cfd196731aa24db9859d631 + md5: 44083d2d2c2025afca315c7a172eab2b + depends: + - ncurses + - __osx >=11.0 + - ncurses >=6.5,<7.0a0 + license: BSD-2-Clause + license_family: BSD + size: 107691 + timestamp: 1738479560845 +- conda: https://prefix.dev/conda-forge/linux-64/libegl-1.7.0-ha4b6fd6_2.conda + sha256: 7fd5408d359d05a969133e47af580183fbf38e2235b562193d427bb9dad79723 + md5: c151d5eb730e9b7480e6d48c0fc44048 + depends: + - __glibc >=2.17,<3.0.a0 + - libglvnd 1.7.0 ha4b6fd6_2 + license: LicenseRef-libglvnd + size: 44840 + timestamp: 1731330973553 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libegl-1.7.0-hd24410f_2.conda + sha256: 8962abf38a58c235611ce356b9899f6caeb0352a8bce631b0bcc59352fda455e + md5: cf105bce884e4ef8c8ccdca9fe6695e7 + depends: + - libglvnd 1.7.0 hd24410f_2 + license: LicenseRef-libglvnd + size: 53551 + timestamp: 1731330990477 +- conda: https://prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda + sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 + md5: 172bf1cd1ff8629f2b1179945ed45055 + depends: + - libgcc-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 112766 + timestamp: 1702146165126 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda + sha256: 973af77e297f1955dd1f69c2cbdc5ab9dfc88388a5576cd152cda178af0fd006 + md5: a9a13cb143bbaa477b1ebaefbe47a302 + depends: + - libgcc-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 115123 + timestamp: 1702146237623 +- conda: https://prefix.dev/conda-forge/osx-64/libev-4.33-h10d778d_2.conda + sha256: 0d238488564a7992942aa165ff994eca540f687753b4f0998b29b4e4d030ff43 + md5: 899db79329439820b7e8f8de41bca902 + license: BSD-2-Clause + license_family: BSD + size: 106663 + timestamp: 1702146352558 +- conda: https://prefix.dev/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda + sha256: 95cecb3902fbe0399c3a7e67a5bed1db813e5ab0e22f4023a5e0f722f2cc214f + md5: 36d33e440c31857372a72137f78bacf5 + license: BSD-2-Clause + license_family: BSD + size: 107458 + timestamp: 1702146414478 +- conda: https://prefix.dev/conda-forge/linux-64/libexpat-2.7.0-h5888daf_0.conda + sha256: 33ab03438aee65d6aa667cf7d90c91e5e7d734c19a67aa4c7040742c0a13d505 + md5: db0bfbe7dd197b68ad5f30333bae6ce0 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + constrains: + - expat 2.7.0.* + license: MIT + license_family: MIT + size: 74427 + timestamp: 1743431794976 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libexpat-2.7.0-h5ad3122_0.conda + sha256: e3a0d95fe787cccf286f5dced9fa9586465d3cd5ec8e04f7ad7f0e72c4afd089 + md5: d41a057e7968705dae8dcb7c8ba2c8dd + depends: + - libgcc >=13 + constrains: + - expat 2.7.0.* + license: MIT + license_family: MIT + size: 73155 + timestamp: 1743432002397 +- conda: https://prefix.dev/conda-forge/osx-64/libexpat-2.7.0-h240833e_0.conda + sha256: 976f2e23ad2bb2b8e92c99bfa2ead3ad557b17a129b170f7e2dfcf233193dd7e + md5: 026d0a1056ba2a3dbbea6d4b08188676 + depends: + - __osx >=10.13 + constrains: + - expat 2.7.0.* + license: MIT + license_family: MIT + size: 71894 + timestamp: 1743431912423 +- conda: https://prefix.dev/conda-forge/osx-arm64/libexpat-2.7.0-h286801f_0.conda + sha256: ee550e44765a7bbcb2a0216c063dcd53ac914a7be5386dd0554bd06e6be61840 + md5: 6934bbb74380e045741eb8637641a65b + depends: + - __osx >=11.0 + constrains: + - expat 2.7.0.* + license: MIT + license_family: MIT + size: 65714 + timestamp: 1743431789879 +- conda: https://prefix.dev/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda + sha256: 1a227c094a4e06bd54e8c2f3ec40c17ff99dcf3037d812294f842210aa66dbeb + md5: b6f5352fdb525662f4169a0431d2dd7a + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - expat 2.7.0.* + license: MIT + license_family: MIT + size: 140896 + timestamp: 1743432122520 +- conda: https://prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda + sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab + md5: ede4673863426c0883c0063d853bbd85 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 57433 + timestamp: 1743434498161 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libffi-3.4.6-he21f813_1.conda + sha256: 608b8c8b0315423e524b48733d91edd43f95cb3354a765322ac306a858c2cd2e + md5: 15a131f30cae36e9a655ca81fee9a285 + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 55847 + timestamp: 1743434586764 +- conda: https://prefix.dev/conda-forge/osx-64/libffi-3.4.6-h281671d_1.conda + sha256: 6394b1bc67c64a21a5cc73d1736d1d4193a64515152e861785c44d2cfc49edf3 + md5: 4ca9ea59839a9ca8df84170fab4ceb41 + depends: + - __osx >=10.13 + license: MIT + license_family: MIT + size: 51216 + timestamp: 1743434595269 +- conda: https://prefix.dev/conda-forge/osx-arm64/libffi-3.4.6-h1da3d7d_1.conda + sha256: c6a530924a9b14e193ea9adfe92843de2a806d1b7dbfd341546ece9653129e60 + md5: c215a60c2935b517dcda8cad4705734d + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 39839 + timestamp: 1743434670405 +- conda: https://prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda + sha256: d3b0b8812eab553d3464bbd68204f007f1ebadf96ce30eb0cbc5159f72e353f5 + md5: 85d8fa5e55ed8f93f874b3b23ed54ec6 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 44978 + timestamp: 1743435053850 +- conda: https://prefix.dev/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda + sha256: 65908b75fa7003167b8a8f0001e11e58ed5b1ef5e98b96ab2ba66d7c1b822c7d + md5: ee48bf17cc83a00f59ca1494d5646869 + depends: + - gettext >=0.21.1,<1.0a0 + - libgcc-ng >=12 + - libogg 1.3.* + - libogg >=1.3.4,<1.4.0a0 + - libstdcxx-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 394383 + timestamp: 1687765514062 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libflac-1.4.3-h2f0025b_0.conda + sha256: b54935360349d3418b0663d787f20b3cba0b7ce3fcdf3ba5e7ef02b884759049 + md5: 520b12eab32a92e19b1f239ac545ec03 + depends: + - gettext >=0.21.1,<1.0a0 + - libgcc-ng >=12 + - libogg 1.3.* + - libogg >=1.3.4,<1.4.0a0 + - libstdcxx-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 371550 + timestamp: 1687765491794 +- conda: https://prefix.dev/conda-forge/linux-64/libgcc-14.2.0-h767d61c_2.conda + sha256: 3a572d031cb86deb541d15c1875aaa097baefc0c580b54dc61f5edab99215792 + md5: ef504d1acbd74b7cc6849ef8af47dd03 + depends: + - __glibc >=2.17,<3.0.a0 + - _openmp_mutex >=4.5 + constrains: + - libgomp 14.2.0 h767d61c_2 + - libgcc-ng ==14.2.0=*_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 847885 + timestamp: 1740240653082 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-14.2.0-he277a41_2.conda + sha256: a57f7f9ba2a12f56eafdcd25b6d75f7be10b8fc1a802a58b76a77ca8c66f4503 + md5: 6b4268a60b10f29257b51b9b67ff8d76 + depends: + - _openmp_mutex >=4.5 + constrains: + - libgcc-ng ==14.2.0=*_2 + - libgomp 14.2.0 he277a41_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 535507 + timestamp: 1740241069780 +- conda: https://prefix.dev/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_2.conda + sha256: fb7558c328b38b2f9d2e412c48da7890e7721ba018d733ebdfea57280df01904 + md5: a2222a6ada71fb478682efe483ce0f92 + depends: + - libgcc 14.2.0 h767d61c_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 53758 + timestamp: 1740240660904 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-ng-14.2.0-he9431aa_2.conda + sha256: 9647f75cddc18b07eebe6e1f21500eed50a6af2c43c84e831b4c7a597e10d226 + md5: 692c2bb75f32cfafb6799cf6d1c5d0e0 + depends: + - libgcc 14.2.0 he277a41_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 53622 + timestamp: 1740241074834 +- conda: https://prefix.dev/conda-forge/linux-64/libgcrypt-lib-1.11.0-hb9d3cd8_2.conda + sha256: ffc3602f9298da248786f46b00d0594d26a18feeb1b07ce88f3d7d61075e39e6 + md5: e55712ff40a054134d51b89afca57dbc + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libgpg-error >=1.51,<2.0a0 + license: LGPL-2.1-or-later + size: 586185 + timestamp: 1732523190369 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgcrypt-lib-1.11.0-h86ecc28_2.conda + sha256: 7b0b59e11511e1c20e4d1b89ac458b4a0799da2ef10980302a5f033ecc434dee + md5: 07c1e27a75b217e5502bff34cd23c353 + depends: + - libgcc >=13 + - libgpg-error >=1.51,<2.0a0 + license: LGPL-2.1-or-later + size: 635094 + timestamp: 1732523317415 +- conda: https://prefix.dev/conda-forge/linux-64/libgd-2.3.3-h6f5c62b_11.conda + sha256: 19e5be91445db119152217e8e8eec4fd0499d854acc7d8062044fb55a70971cd + md5: 68fc66282364981589ef36868b1a7c78 + depends: + - __glibc >=2.17,<3.0.a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - icu >=75.1,<76.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.45,<1.7.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + license: GD + license_family: BSD + size: 177082 + timestamp: 1737548051015 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgd-2.3.3-hc8d7b1d_11.conda + sha256: 7e199bb390f985b34aee38cdb1f0d166abc09ed44bd703a1b91a3c6cd9912d45 + md5: d256b0311b7a207a2c6b68d2b399f707 + depends: + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - icu >=75.1,<76.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.45,<1.7.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + license: GD + license_family: BSD + size: 191033 + timestamp: 1737548098172 +- conda: https://prefix.dev/conda-forge/osx-64/libgd-2.3.3-h8555400_11.conda + sha256: af8ca696b229236e4a692220a26421a4f3d28a6ceff16723cd1fe12bc7e6517c + md5: 0eea404372aa41cf95e71c604534b2a2 + depends: + - __osx >=10.13 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - icu >=75.1,<76.0a0 + - libexpat >=2.6.4,<3.0a0 + - libiconv >=1.17,<2.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.45,<1.7.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + license: GD + license_family: BSD + size: 162601 + timestamp: 1737548422107 +- conda: https://prefix.dev/conda-forge/osx-arm64/libgd-2.3.3-hb2c3a21_11.conda + sha256: be038eb8dfe296509aee2df21184c72cb76285b0340448525664bc396aa6146d + md5: 4581aa3cfcd1a90967ed02d4a9f3db4b + depends: + - __osx >=11.0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - icu >=75.1,<76.0a0 + - libexpat >=2.6.4,<3.0a0 + - libiconv >=1.17,<2.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.45,<1.7.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + license: GD + license_family: BSD + size: 156868 + timestamp: 1737548290283 +- conda: https://prefix.dev/conda-forge/win-64/libgd-2.3.3-h7208af6_11.conda + sha256: 485a30af9e710feeda8d5b537b2db1e32e41f29ef24683bbe7deb6f7fd915825 + md5: 2070a706123b2d5e060b226a00e96488 + depends: + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - icu >=75.1,<76.0a0 + - libexpat >=2.6.4,<3.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.45,<1.7.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - xorg-libxpm >=3.5.17,<4.0a0 + license: GD + license_family: BSD + size: 165838 + timestamp: 1737548342665 +- conda: https://prefix.dev/conda-forge/linux-64/libgettextpo-0.23.1-h5888daf_0.conda + sha256: 190097140d9c16637aa516757d8087f17e8c22cc844c87288da64404b81ef43c + md5: a09ce5decdef385bcce78c32809fa794 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: GPL-3.0-or-later + license_family: GPL + size: 166867 + timestamp: 1739038720211 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgettextpo-0.23.1-h5ad3122_0.conda + sha256: 5fe9ea0f19d4f89c5f5030a5aad853e05d1fe001ee003e102e4a2a01b0e157cc + md5: 04aa6b35d4581b59aafb2683345579d7 + depends: + - libgcc >=13 + license: GPL-3.0-or-later + license_family: GPL + size: 207214 + timestamp: 1739038603075 +- conda: https://prefix.dev/conda-forge/osx-64/libgettextpo-0.23.1-h27064b9_0.conda + sha256: 52c2423df75223df4ebee991eb33e3827b9d360957211022246145b99c672dc5 + md5: 352ffb2b7788775a65a32c018d972a8a + depends: + - __osx >=10.13 + - libiconv >=1.17,<2.0a0 + - libintl 0.23.1 h27064b9_0 + license: GPL-3.0-or-later + license_family: GPL + size: 183258 + timestamp: 1739039203159 +- conda: https://prefix.dev/conda-forge/osx-arm64/libgettextpo-0.23.1-h493aca8_0.conda + sha256: 4dbd3f698d027330033f06778567eda5b985e2348ca92900083654a114ddd051 + md5: 18ad77def4cb7326692033eded9c815d + depends: + - __osx >=11.0 + - libiconv >=1.17,<2.0a0 + - libintl 0.23.1 h493aca8_0 + license: GPL-3.0-or-later + license_family: GPL + size: 166929 + timestamp: 1739039303132 +- conda: https://prefix.dev/conda-forge/win-64/libgettextpo-0.22.5-h5728263_3.conda + sha256: 6747bd29a0896b21ee1fe07bd212210475655354a3e8033c25b797e054ddd821 + md5: e46c142e2d2d9ccef31ad3d176b10fab + depends: + - libiconv >=1.17,<2.0a0 + - libintl 0.22.5 h5728263_3 + license: GPL-3.0-or-later + license_family: GPL + size: 171120 + timestamp: 1723629671164 +- conda: https://prefix.dev/conda-forge/linux-64/libgettextpo-devel-0.23.1-h5888daf_0.conda + sha256: 90f29ec7a7e2d758cb61459e643dcb54933dcf92194be6c29b0a1591fcbb163e + md5: 7a5d5c245a6807deab87558e9efd3ef0 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libgettextpo 0.23.1 h5888daf_0 + license: GPL-3.0-or-later + license_family: GPL + size: 36818 + timestamp: 1739038746565 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgettextpo-devel-0.23.1-h5ad3122_0.conda + sha256: e56df439c17f8a273ba7e9719def4ac3ff7aaadf37cad92179f4437d753e81a6 + md5: cb0245a67410b455cb8ee80f407f185f + depends: + - libgcc >=13 + - libgettextpo 0.23.1 h5ad3122_0 + license: GPL-3.0-or-later + license_family: GPL + size: 37031 + timestamp: 1739038617604 +- conda: https://prefix.dev/conda-forge/osx-64/libgettextpo-devel-0.23.1-h27064b9_0.conda + sha256: b027dcc98ef20813c73e8aba8de7028ee0641cb0f7eec5f3b153fce4271669e0 + md5: fea8af9c8a5d38b3b1b7f72dc3d7080a + depends: + - __osx >=10.13 + - libgettextpo 0.23.1 h27064b9_0 + - libiconv >=1.17,<2.0a0 + - libintl 0.23.1 h27064b9_0 + license: GPL-3.0-or-later + license_family: GPL + size: 37271 + timestamp: 1739039234636 +- conda: https://prefix.dev/conda-forge/osx-arm64/libgettextpo-devel-0.23.1-h493aca8_0.conda + sha256: 6031e57ba3c03ca34422b847b98fb70e697a5c10556c8d7b30410a96754c25d8 + md5: e6f75805f4b533d449a5a6d60cbc9a71 + depends: + - __osx >=11.0 + - libgettextpo 0.23.1 h493aca8_0 + - libiconv >=1.17,<2.0a0 + - libintl 0.23.1 h493aca8_0 + license: GPL-3.0-or-later + license_family: GPL + size: 37264 + timestamp: 1739039332924 +- conda: https://prefix.dev/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_2.conda + sha256: e05263e8960da03c341650f2a3ffa4ccae4e111cb198e8933a2908125459e5a6 + md5: fb54c4ea68b460c278d26eea89cfbcc3 + depends: + - libgfortran5 14.2.0 hf1ad2bd_2 + constrains: + - libgfortran-ng ==14.2.0=*_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 53733 + timestamp: 1740240690977 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgfortran-14.2.0-he9431aa_2.conda + sha256: 996d3c0505301901a7ab23b5e7daad21635d1c065240bb0f4faf7e4f75d7f49d + md5: d8b9d9dc0c8cd97d375b48e55947ba70 + depends: + - libgfortran5 14.2.0 hb6113d0_2 + constrains: + - libgfortran-ng ==14.2.0=*_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 53611 + timestamp: 1740241100147 +- conda: https://prefix.dev/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda + sha256: 4874422e567b68334705c135c17e5acdca1404de8255673ce30ad3510e00be0d + md5: 0b6e23a012ee7a9a5f6b244f5a92c1d5 + depends: + - libgfortran5 13.2.0 h2873a65_3 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 110106 + timestamp: 1707328956438 +- conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda + sha256: 44e541b4821c96b28b27fef5630883a60ce4fee91fd9c79f25a199f8f73f337b + md5: 4a55d9e169114b2b90d3ec4604cd7bbf + depends: + - libgfortran5 13.2.0 hf226fd6_3 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 110233 + timestamp: 1707330749033 +- conda: https://prefix.dev/conda-forge/linux-64/libgfortran5-14.2.0-hf1ad2bd_2.conda + sha256: c17b7cf3073a1f4e1f34d50872934fa326346e104d3c445abc1e62481ad6085c + md5: 556a4fdfac7287d349b8f09aba899693 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14.2.0 + constrains: + - libgfortran 14.2.0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 1461978 + timestamp: 1740240671964 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgfortran5-14.2.0-hb6113d0_2.conda + sha256: 7b9e1d3666a00e5a52e5d43c003bd1c73ab472804be513c070aaedca9c4c2a9a + md5: cd754566661513808ef2408c4ab99a2f + depends: + - libgcc >=14.2.0 + constrains: + - libgfortran 14.2.0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 1100765 + timestamp: 1740241083241 +- conda: https://prefix.dev/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda + sha256: da3db4b947e30aec7596a3ef92200d17e774cccbbf7efc47802529a4ca5ca31b + md5: e4fb4d23ec2870ff3c40d10afe305aec + depends: + - llvm-openmp >=8.0.0 + constrains: + - libgfortran 5.0.0 13_2_0_*_3 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 1571379 + timestamp: 1707328880361 +- conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda + sha256: bafc679eedb468a86aa4636061c55966186399ee0a04b605920d208d97ac579a + md5: 66ac81d54e95c534ae488726c1f698ea + depends: + - llvm-openmp >=8.0.0 + constrains: + - libgfortran 5.0.0 13_2_0_*_3 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 997381 + timestamp: 1707330687590 +- conda: https://prefix.dev/conda-forge/linux-64/libgl-1.7.0-ha4b6fd6_2.conda + sha256: dc2752241fa3d9e40ce552c1942d0a4b5eeb93740c9723873f6fcf8d39ef8d2d + md5: 928b8be80851f5d8ffb016f9c81dae7a + depends: + - __glibc >=2.17,<3.0.a0 + - libglvnd 1.7.0 ha4b6fd6_2 + - libglx 1.7.0 ha4b6fd6_2 + license: LicenseRef-libglvnd + size: 134712 + timestamp: 1731330998354 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgl-1.7.0-hd24410f_2.conda + sha256: 3e954380f16255d1c8ae5da3bd3044d3576a0e1ac2e3c3ff2fe8f2f1ad2e467a + md5: 0d00176464ebb25af83d40736a2cd3bb + depends: + - libglvnd 1.7.0 hd24410f_2 + - libglx 1.7.0 hd24410f_2 + license: LicenseRef-libglvnd + size: 145442 + timestamp: 1731331005019 +- conda: https://prefix.dev/conda-forge/linux-64/libglib-2.84.0-h2ff4ddf_0.conda + sha256: 8e8737ca776d897d81a97e3de28c4bb33c45b5877bbe202b9b0ad2f61ca39397 + md5: 40cdeafb789a5513415f7bdbef053cf5 + depends: + - __glibc >=2.17,<3.0.a0 + - libffi >=3.4,<4.0a0 + - libgcc >=13 + - libiconv >=1.18,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pcre2 >=10.44,<10.45.0a0 + constrains: + - glib 2.84.0 *_0 + license: LGPL-2.1-or-later + size: 3998765 + timestamp: 1743038881905 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libglib-2.84.0-hc486b8e_0.conda + sha256: 4ffe7f527760e701b1b14cc492fd4ed51883c3b7d7c589bdad934b0495c45296 + md5: 0e32e3c613a7cd492c8ff99772b77fc6 + depends: + - libffi >=3.4,<4.0a0 + - libgcc >=13 + - libiconv >=1.18,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pcre2 >=10.44,<10.45.0a0 + constrains: + - glib 2.84.0 *_0 + license: LGPL-2.1-or-later + size: 4056691 + timestamp: 1743038654141 +- conda: https://prefix.dev/conda-forge/osx-64/libglib-2.84.0-h5c976ab_0.conda + sha256: 6345cb63429ca1d216e47502a04dcce8b9f8a4fe08547cef42bbc040dc453b9e + md5: 9d9e772b8e01ce350ddff9b277503514 + depends: + - __osx >=10.13 + - libffi >=3.4,<4.0a0 + - libiconv >=1.18,<2.0a0 + - libintl >=0.23.1,<1.0a0 + - libzlib >=1.3.1,<2.0a0 + - pcre2 >=10.44,<10.45.0a0 + constrains: + - glib 2.84.0 *_0 + license: LGPL-2.1-or-later + size: 3729801 + timestamp: 1743038946054 +- conda: https://prefix.dev/conda-forge/osx-arm64/libglib-2.84.0-hdff4504_0.conda + sha256: 70a414faef075e11e7a51861e9e9c953d8373b0089070f98136a7578d8cda67e + md5: 86bdf23c648be3498294c4ab861e7090 + depends: + - __osx >=11.0 + - libffi >=3.4,<4.0a0 + - libiconv >=1.18,<2.0a0 + - libintl >=0.23.1,<1.0a0 + - libzlib >=1.3.1,<2.0a0 + - pcre2 >=10.44,<10.45.0a0 + constrains: + - glib 2.84.0 *_0 + license: LGPL-2.1-or-later + size: 3698518 + timestamp: 1743039055882 +- conda: https://prefix.dev/conda-forge/win-64/libglib-2.84.0-h7025463_0.conda + sha256: 0b4f9581e2dba58bc38cb00453e145140cf6230a56887ff1195e63e2b1e3f1c2 + md5: ea8df8a5c5c7adf4c03bf9e3db1637c3 + depends: + - libffi >=3.4,<4.0a0 + - libiconv >=1.18,<2.0a0 + - libintl >=0.22.5,<1.0a0 + - libzlib >=1.3.1,<2.0a0 + - pcre2 >=10.44,<10.45.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - glib 2.84.0 *_0 + license: LGPL-2.1-or-later + size: 3842095 + timestamp: 1743039211561 +- conda: https://prefix.dev/conda-forge/linux-64/libglu-9.0.3-h03adeef_0.conda + sha256: cabd78b5ede1f3f161037d3a6cfb6b8a262ec474f9408859c364ef55ba778097 + md5: b1df5affe904efe82ef890826b68881d + depends: + - __glibc >=2.17,<3.0.a0 + - libdrm >=2.4.123,<2.5.0a0 + - libegl >=1.7.0,<2.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libstdcxx >=13 + - libxcb >=1.17.0,<2.0a0 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxdamage >=1.1.6,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxxf86vm >=1.1.5,<2.0a0 + license: SGI-2 + size: 325361 + timestamp: 1731470892413 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libglu-9.0.3-hc7f7585_0.conda + sha256: fafab7ffb5522d6b788a9c83eab44a76750efa1a71380467599a458c4f7bf849 + md5: cf9ff275dd030e5e8c9d336f5086da98 + depends: + - libdrm >=2.4.123,<2.5.0a0 + - libegl >=1.7.0,<2.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libstdcxx >=13 + - libxcb >=1.17.0,<2.0a0 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxdamage >=1.1.6,<2.0a0 + - xorg-libxdmcp >=1.1.5,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxxf86vm >=1.1.5,<2.0a0 + license: SGI-2 + size: 317433 + timestamp: 1731470978326 +- conda: https://prefix.dev/conda-forge/linux-64/libglvnd-1.7.0-ha4b6fd6_2.conda + sha256: 1175f8a7a0c68b7f81962699751bb6574e6f07db4c9f72825f978e3016f46850 + md5: 434ca7e50e40f4918ab701e3facd59a0 + depends: + - __glibc >=2.17,<3.0.a0 + license: LicenseRef-libglvnd + size: 132463 + timestamp: 1731330968309 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libglvnd-1.7.0-hd24410f_2.conda + sha256: 57ec3898a923d4bcc064669e90e8abfc4d1d945a13639470ba5f3748bd3090da + md5: 9e115653741810778c9a915a2f8439e7 + license: LicenseRef-libglvnd + size: 152135 + timestamp: 1731330986070 +- conda: https://prefix.dev/conda-forge/linux-64/libglx-1.7.0-ha4b6fd6_2.conda + sha256: 2d35a679624a93ce5b3e9dd301fff92343db609b79f0363e6d0ceb3a6478bfa7 + md5: c8013e438185f33b13814c5c488acd5c + depends: + - __glibc >=2.17,<3.0.a0 + - libglvnd 1.7.0 ha4b6fd6_2 + - xorg-libx11 >=1.8.10,<2.0a0 + license: LicenseRef-libglvnd + size: 75504 + timestamp: 1731330988898 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libglx-1.7.0-hd24410f_2.conda + sha256: 6591af640cb05a399fab47646025f8b1e1a06a0d4bbb4d2e320d6629b47a1c61 + md5: 1d4269e233636148696a67e2d30dad2a + depends: + - libglvnd 1.7.0 hd24410f_2 + - xorg-libx11 >=1.8.9,<2.0a0 + license: LicenseRef-libglvnd + size: 77736 + timestamp: 1731330998960 +- conda: https://prefix.dev/conda-forge/linux-64/libgomp-14.2.0-h767d61c_2.conda + sha256: 1a3130e0b9267e781b89399580f3163632d59fe5b0142900d63052ab1a53490e + md5: 06d02030237f4d5b3d9a7e7d348fe3c6 + depends: + - __glibc >=2.17,<3.0.a0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 459862 + timestamp: 1740240588123 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_2.conda + sha256: 4e303711fb7413bf98995beac58e731073099d7a669a3b81e49330ca8da05174 + md5: b11c09d9463daf4cae492d29806b1889 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 462783 + timestamp: 1740241005079 +- conda: https://prefix.dev/conda-forge/linux-64/libgpg-error-1.51-hbd13f7d_1.conda + sha256: 9e0c09c1faf2151ade3ccb64e52d3c1f2dde85c00e37c6a3e6a8bced2aba68be + md5: 168cc19c031482f83b23c4eebbb94e26 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: LGPL-2.1-only + license_family: GPL + size: 268740 + timestamp: 1731920927644 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgpg-error-1.51-h05609ea_1.conda + sha256: e819b3ba47dc7e195e8e8a9c874d0b45690cccb2fa741f1abd55b28323f9fc43 + md5: 9cabbbc1c3c8e9fa30e90748f14534dd + depends: + - libgcc >=13 + - libstdcxx >=13 + license: LGPL-2.1-only + license_family: GPL + size: 277785 + timestamp: 1731920977846 +- conda: https://prefix.dev/conda-forge/linux-64/libhwloc-2.11.2-default_h0d58e46_1001.conda + sha256: d14c016482e1409ae1c50109a9ff933460a50940d2682e745ab1c172b5282a69 + md5: 804ca9e91bcaea0824a341d55b1684f2 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libxml2 >=2.13.4,<3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2423200 + timestamp: 1731374922090 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libhwloc-2.11.2-default_h2c612a5_1001.conda + sha256: 8c7bf410afb4f068063c718a8691de611eeb75f3d0c6122698c7961e90820445 + md5: 8f42119cdfd1ac905e19f0eeebe9ccfa + depends: + - libgcc >=13 + - libstdcxx >=13 + - libxml2 >=2.13.4,<3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2436762 + timestamp: 1731374851939 +- conda: https://prefix.dev/conda-forge/osx-64/libhwloc-2.11.2-default_h4cdd727_1001.conda + sha256: 989917281abf762b7e7a2b5968db2b6b0e89f46e704042ab8ec61a66951e0e0b + md5: 52bbb10ac083c563d00df035c94f9a63 + depends: + - __osx >=10.13 + - libcxx >=18 + - libxml2 >=2.13.4,<3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2359326 + timestamp: 1731375067281 +- conda: https://prefix.dev/conda-forge/osx-arm64/libhwloc-2.11.2-default_hbce5d74_1001.conda + sha256: dcac7144ad93cf3f276ec14c5553aa34de07443a9b1db6b3cd8d2e117b173c40 + md5: ff6438cf47cff4899ae9900bf9253c41 + depends: + - __osx >=11.0 + - libcxx >=18 + - libxml2 >=2.13.4,<3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2332319 + timestamp: 1731375088576 +- conda: https://prefix.dev/conda-forge/win-64/libhwloc-2.11.2-default_hc8275d1_1000.conda + sha256: 29db3126762be449bf137d0ce6662e0c95ce79e83a0685359012bb86c9ceef0a + md5: 2805c2eb3a74df931b3e2b724fcb965e + depends: + - libxml2 >=2.12.7,<3.0a0 + - pthreads-win32 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 2389010 + timestamp: 1727380221363 +- conda: https://prefix.dev/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda + sha256: 18a4afe14f731bfb9cf388659994263904d20111e42f841e9eea1bb6f91f4ab4 + md5: e796ff8ddc598affdf7c173d6145f087 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: LGPL-2.1-only + size: 713084 + timestamp: 1740128065462 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libiconv-1.18-hc99b53d_1.conda + sha256: 3db14977036fe1f511a6dbecacbeff3fdb58482c5c0cf87a2ea3232f5a540836 + md5: 81541d85a45fbf4d0a29346176f1f21c + depends: + - libgcc >=13 + license: LGPL-2.1-only + size: 718600 + timestamp: 1740130562607 +- conda: https://prefix.dev/conda-forge/osx-64/libiconv-1.18-h4b5e92a_1.conda + sha256: c2a9c65a245c7bcb8c17c94dd716dad2d42b7c98e0c17cc5553a5c60242c4dda + md5: 6283140d7b2b55b6b095af939b71b13f + depends: + - __osx >=10.13 + license: LGPL-2.1-only + size: 669052 + timestamp: 1740128415026 +- conda: https://prefix.dev/conda-forge/osx-arm64/libiconv-1.18-hfe07756_1.conda + sha256: d30780d24bf3a30b4f116fca74dedb4199b34d500fe6c52cced5f8cc1e926f03 + md5: 450e6bdc0c7d986acf7b8443dce87111 + depends: + - __osx >=11.0 + license: LGPL-2.1-only + size: 681804 + timestamp: 1740128227484 +- conda: https://prefix.dev/conda-forge/win-64/libiconv-1.18-h135ad9c_1.conda + sha256: ea5ed2b362b6dbc4ba7188eb4eaf576146e3dfc6f4395e9f0db76ad77465f786 + md5: 21fc5dba2cbcd8e5e26ff976a312122c + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.1-only + size: 638142 + timestamp: 1740128665984 +- conda: https://prefix.dev/conda-forge/osx-64/libintl-0.23.1-h27064b9_0.conda + sha256: 1bce54e6c76064032129ba138898a5b188d9415c533eb585f89d48b04e00e576 + md5: 4182fe11073548596723d9cd2c23b1ac + depends: + - __osx >=10.13 + - libiconv >=1.17,<2.0a0 + license: LGPL-2.1-or-later + size: 87157 + timestamp: 1739039171974 +- conda: https://prefix.dev/conda-forge/osx-arm64/libintl-0.23.1-h493aca8_0.conda + sha256: 30d2a8a37070615a61777ce9317968b54c2197d04e9c6c2eea6cdb46e47f94dc + md5: 7b8faf3b5fc52744bda99c4cd1d6438d + depends: + - __osx >=11.0 + - libiconv >=1.17,<2.0a0 + license: LGPL-2.1-or-later + size: 78921 + timestamp: 1739039271409 +- conda: https://prefix.dev/conda-forge/win-64/libintl-0.22.5-h5728263_3.conda + sha256: c7e4600f28bcada8ea81456a6530c2329312519efcf0c886030ada38976b0511 + md5: 2cf0cf76cc15d360dfa2f17fd6cf9772 + depends: + - libiconv >=1.17,<2.0a0 + license: LGPL-2.1-or-later + size: 95568 + timestamp: 1723629479451 +- conda: https://prefix.dev/conda-forge/osx-64/libintl-devel-0.23.1-h27064b9_0.conda + sha256: 2a2cfacee2c345f79866487921d222b17e93a826ac9a80b80901a41c0b094633 + md5: 6d4a30603b01f15bb643e14a9807e46c + depends: + - __osx >=10.13 + - libiconv >=1.17,<2.0a0 + - libintl 0.23.1 h27064b9_0 + license: LGPL-2.1-or-later + size: 40027 + timestamp: 1739039220643 +- conda: https://prefix.dev/conda-forge/osx-arm64/libintl-devel-0.23.1-h493aca8_0.conda + sha256: 5db07fa57b8cb916784353aa035fbf32aa7ee2905e38a8e70b168160372833f0 + md5: f9c6d5edc5951ef4010be8cbde9f12d4 + depends: + - __osx >=11.0 + - libiconv >=1.17,<2.0a0 + - libintl 0.23.1 h493aca8_0 + license: LGPL-2.1-or-later + size: 39774 + timestamp: 1739039317742 +- conda: https://prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda + sha256: b954e09b7e49c2f2433d6f3bb73868eda5e378278b0f8c1dd10a7ef090e14f2f + md5: ea25936bb4080d843790b586850f82b8 + depends: + - libgcc-ng >=12 + constrains: + - jpeg <0.0.0a + license: IJG AND BSD-3-Clause AND Zlib + size: 618575 + timestamp: 1694474974816 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libjpeg-turbo-3.0.0-h31becfc_1.conda + sha256: 675bc1f2a8581cd34a86c412663ec29c5f90c1d9f8d11866aa1ade5cdbdf8429 + md5: ed24e702928be089d9ba3f05618515c6 + depends: + - libgcc-ng >=12 + constrains: + - jpeg <0.0.0a + license: IJG AND BSD-3-Clause AND Zlib + size: 647126 + timestamp: 1694475003570 +- conda: https://prefix.dev/conda-forge/osx-64/libjpeg-turbo-3.0.0-h0dc2134_1.conda + sha256: d9572fd1024adc374aae7c247d0f29fdf4b122f1e3586fe62acc18067f40d02f + md5: 72507f8e3961bc968af17435060b6dd6 + constrains: + - jpeg <0.0.0a + license: IJG AND BSD-3-Clause AND Zlib + size: 579748 + timestamp: 1694475265912 +- conda: https://prefix.dev/conda-forge/osx-arm64/libjpeg-turbo-3.0.0-hb547adb_1.conda + sha256: a42054eaa38e84fc1e5ab443facac4bbc9d1b6b6f23f54b7bf4f1eb687e1d993 + md5: 3ff1e053dc3a2b8e36b9bfa4256a58d1 + constrains: + - jpeg <0.0.0a + license: IJG AND BSD-3-Clause AND Zlib + size: 547541 + timestamp: 1694475104253 +- conda: https://prefix.dev/conda-forge/win-64/libjpeg-turbo-3.0.0-hcfcfb64_1.conda + sha256: 4e7808e3098b4b4ed7e287f63bb24f9045cc4d95bfd39f0db870fc2837d74dff + md5: 3f1b948619c45b1ca714d60c7389092c + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - jpeg <0.0.0a + license: IJG AND BSD-3-Clause AND Zlib + size: 822966 + timestamp: 1694475223854 +- conda: https://prefix.dev/conda-forge/linux-64/liblapack-3.9.0-31_h7ac8fdf_openblas.conda + build_number: 31 + sha256: f583661921456e798aba10972a8abbd9d33571c655c1f66eff450edc9cbefcf3 + md5: 452b98eafe050ecff932f0ec832dd03f + depends: + - libblas 3.9.0 31_h59b9bed_openblas + constrains: + - libcblas =3.9.0=31*_openblas + - liblapacke =3.9.0=31*_openblas + - blas =2.131=openblas + license: BSD-3-Clause + license_family: BSD + size: 16790 + timestamp: 1740087997375 +- conda: https://prefix.dev/conda-forge/linux-aarch64/liblapack-3.9.0-31_h411afd4_openblas.conda + build_number: 31 + sha256: 27613828ff6fb258b2e58802617df549f00089660ea8ab6c55c68f042c570162 + md5: 41dbff5eb805a75c120a7b7a1c744dc2 + depends: + - libblas 3.9.0 31_h1a9f1db_openblas + constrains: + - blas =2.131=openblas + - libcblas =3.9.0=31*_openblas + - liblapacke =3.9.0=31*_openblas + license: BSD-3-Clause + license_family: BSD + size: 16845 + timestamp: 1740087923843 +- conda: https://prefix.dev/conda-forge/osx-64/liblapack-3.9.0-31_hf5f89c0_accelerate.conda + build_number: 31 + sha256: 83d19d3e3485520fd89aa2e955df1baa20b053d75a7ccaf3a506b9ee0760f595 + md5: d7382df25575e843da30e5392d037b68 + depends: + - libblas 3.9.0 31_h53a1964_accelerate + constrains: + - liblapacke =3.9.0=31*_accelerate + - blas =2.131=accelerate + - libcblas =3.9.0=31*_accelerate + track_features: + - blas_accelerate + license: BSD-3-Clause + license_family: BSD + size: 16990 + timestamp: 1740088198504 +- conda: https://prefix.dev/conda-forge/osx-arm64/liblapack-3.9.0-31_h3c9cff3_accelerate.conda + build_number: 31 + sha256: 0a89a1e59f7d299ec13e7abc946fdd23c4394d68b3610dbc0c9d580a3b2491ea + md5: 359082561af68e6a4f2b05c99640b9fc + depends: + - libblas 3.9.0 31_h504e6c8_accelerate + constrains: + - libcblas =3.9.0=31*_accelerate + - liblapacke =3.9.0=31*_accelerate + - blas =2.131=accelerate + track_features: + - blas_accelerate + license: BSD-3-Clause + license_family: BSD + size: 17048 + timestamp: 1740088291115 +- conda: https://prefix.dev/conda-forge/win-64/liblapack-3.9.0-31_h2526c6b_openblas.conda + build_number: 31 + sha256: 44997607c6ecd94ca744049cd58432f512a8800927f65f916031e4f6b0ac8633 + md5: d7fb76c769ccd60e9c396d718949dc2e + depends: + - libblas 3.9.0 31_h11dc60a_openblas + - libopenblas * pthreads* + constrains: + - libcblas =3.9.0=31*_openblas + - blas =2.131=openblas + - liblapacke =3.9.0=31*_openblas + track_features: + - blas_openblas + license: BSD-3-Clause + license_family: BSD + size: 3944766 + timestamp: 1740088686444 +- conda: https://prefix.dev/conda-forge/linux-64/liblapacke-3.9.0-31_he2f377e_openblas.conda + build_number: 31 + sha256: 510bfe8717ab6e7a19e2b0985c27629ddf89270dbd38def8c821f7f683a369a3 + md5: 7e5fff7d0db69be3a266f7e79a3bb0e2 + depends: + - libblas 3.9.0 31_h59b9bed_openblas + - libcblas 3.9.0 31_he106b2a_openblas + - liblapack 3.9.0 31_h7ac8fdf_openblas + constrains: + - blas =2.131=openblas + license: BSD-3-Clause + license_family: BSD + size: 16819 + timestamp: 1740088012246 +- conda: https://prefix.dev/conda-forge/linux-aarch64/liblapacke-3.9.0-31_hc659ca5_openblas.conda + build_number: 31 + sha256: 1a8e9eb258c7c9c899dd4fa977b2f98e172d0138345349bc4257dff980f5168d + md5: 256bb281d78e5b8927ff13a1cde9f6f5 + depends: + - libblas 3.9.0 31_h1a9f1db_openblas + - libcblas 3.9.0 31_hab92f65_openblas + - liblapack 3.9.0 31_h411afd4_openblas + constrains: + - blas =2.131=openblas + license: BSD-3-Clause + license_family: BSD + size: 16824 + timestamp: 1740087930300 +- conda: https://prefix.dev/conda-forge/osx-64/liblapacke-3.9.0-31_h323ef19_accelerate.conda + build_number: 31 + sha256: 5c8f20fabee8101054a72e92cafa48874350d60108359d82571348c398ca5e3b + md5: f35ff4678a52d6acf344e0d33b98c701 + depends: + - libblas 3.9.0 31_h53a1964_accelerate + - libcblas 3.9.0 31_h6bc05c3_accelerate + - liblapack 3.9.0 31_hf5f89c0_accelerate + constrains: + - blas =2.131=accelerate + track_features: + - blas_accelerate + license: BSD-3-Clause + license_family: BSD + size: 16978 + timestamp: 1740088224638 +- conda: https://prefix.dev/conda-forge/osx-arm64/liblapacke-3.9.0-31_h09be921_accelerate.conda + build_number: 31 + sha256: c6e95020a6fd7bd18fb0218d2374f4e7deaca90f9aff1bb3557af5c8eaf51a0e + md5: 00a5d0135e5d4dca88c8ef4fcd3a192c + depends: + - libblas 3.9.0 31_h504e6c8_accelerate + - libcblas 3.9.0 31_h8d39bcd_accelerate + - liblapack 3.9.0 31_h3c9cff3_accelerate + constrains: + - blas =2.131=accelerate + track_features: + - blas_accelerate + license: BSD-3-Clause + license_family: BSD + size: 17057 + timestamp: 1740088298772 +- conda: https://prefix.dev/conda-forge/win-64/liblapacke-3.9.0-31_h1d0e49f_openblas.conda + build_number: 31 + sha256: f3064923c27c5374ac6571423e452f9cd55200ff039eba2499bee07aee34c0f7 + md5: 02e90817029975018119b8e1584ccc77 + depends: + - libblas 3.9.0 31_h11dc60a_openblas + - libcblas 3.9.0 31_h9bd4c3b_openblas + - liblapack 3.9.0 31_h2526c6b_openblas + - libopenblas * pthreads* + constrains: + - blas =2.131=openblas + track_features: + - blas_openblas + license: BSD-3-Clause + license_family: BSD + size: 3946231 + timestamp: 1740088726654 +- conda: https://prefix.dev/conda-forge/osx-64/libllvm18-18.1.8-hc29ff6c_3.conda + sha256: c488d96dcd0b2db0438b9ec7ea92627c1c36aa21491ebcd5cc87a9c58aa0a612 + md5: a04c2fc058fd6b0630c1a2faad322676 + depends: + - __osx >=10.13 + - libcxx >=18 + - libxml2 >=2.13.5,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 27771340 + timestamp: 1737837075440 +- conda: https://prefix.dev/conda-forge/osx-arm64/libllvm18-18.1.8-hc4b4ae8_3.conda + sha256: eaf337e7323555705ef8fad64778de506828d3b6deab2493170c6fe8ad4b7a76 + md5: 202596038a5dc079ef688bd7e17ffec1 + depends: + - __osx >=11.0 + - libcxx >=18 + - libxml2 >=2.13.5,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 25986548 + timestamp: 1737837114740 +- conda: https://prefix.dev/conda-forge/linux-64/libllvm19-19.1.7-ha7bfdaf_1.conda + sha256: 22909d64038bdc87de61311c4ae615dc574a548a7340b963bb7c9eb61b191669 + md5: 6d2362046dce932eefbdeb0540de0c38 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libxml2 >=2.13.5,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 40143643 + timestamp: 1737789465087 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libllvm19-19.1.7-h2edbd07_1.conda + sha256: dfc21af8bb57e01ae1263a5b25e493790cb11d09ff051b4a1896fdcac7cf97ef + md5: a6abe993e3fcc1ba6d133d6f061d727c + depends: + - libgcc >=13 + - libstdcxx >=13 + - libxml2 >=2.13.5,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 39385125 + timestamp: 1737785892355 +- conda: https://prefix.dev/conda-forge/linux-64/libllvm20-20.1.2-ha7bfdaf_0.conda + sha256: fbb343514f3bcee38ea157bde5834b8b5afebb936fec6d521d3de1ee4e321369 + md5: 8354769527f9f441a3a04aa1c19188d9 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libxml2 >=2.13.7,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 43003617 + timestamp: 1743601873840 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libllvm20-20.1.2-h2edbd07_0.conda + sha256: fe4db4231f4759cb9c3723767c8b5b48a1427d3d6b90c4058261807a21e9c320 + md5: a6a01576192b8b535047f2aff6563170 + depends: + - libgcc >=13 + - libstdcxx >=13 + - libxml2 >=2.13.7,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 42170185 + timestamp: 1743598708709 +- conda: https://prefix.dev/conda-forge/osx-64/libllvm20-20.1.2-hc29ff6c_0.conda + sha256: 91ebc0ebb1fefbc0af3fe6a4a30312dd8cd9942e9b39951c4516d18dae3b5118 + md5: 7149fcd0ed5c01a0081dc554ba42e831 + depends: + - __osx >=10.13 + - libcxx >=18 + - libxml2 >=2.13.7,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 30793456 + timestamp: 1743598497796 +- conda: https://prefix.dev/conda-forge/osx-arm64/libllvm20-20.1.2-hc4b4ae8_0.conda + sha256: 77c2915e2a5159f716734efa711188c9b0f83615507665ef11659e4b0d1454f6 + md5: f717d3a88705abb0ec6a9779fe2099be + depends: + - __osx >=11.0 + - libcxx >=18 + - libxml2 >=2.13.7,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28898594 + timestamp: 1743598256216 +- conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.6.4-hb9d3cd8_0.conda + sha256: cad52e10319ca4585bc37f0bc7cce99ec7c15dc9168e42ccb96b741b0a27db3f + md5: 42d5b6a0f30d3c10cd88cb8584fda1cb + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: 0BSD + size: 111357 + timestamp: 1738525339684 +- conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.6.4-h86ecc28_0.conda + sha256: 96413664f0fade54a4931940d18749cfc8e6308349dbb0cb83adb2394ca1f730 + md5: b88244e0a115cc34f7fbca9b11248e76 + depends: + - libgcc >=13 + license: 0BSD + size: 124197 + timestamp: 1738528201520 +- conda: https://prefix.dev/conda-forge/osx-64/liblzma-5.6.4-hd471939_0.conda + sha256: a895b5b16468a6ed436f022d72ee52a657f9b58214b91fabfab6230e3592a6dd + md5: db9d7b0152613f097cdb61ccf9f70ef5 + depends: + - __osx >=10.13 + license: 0BSD + size: 103749 + timestamp: 1738525448522 +- conda: https://prefix.dev/conda-forge/osx-arm64/liblzma-5.6.4-h39f12f2_0.conda + sha256: 560c59d3834cc652a84fb45531bd335ad06e271b34ebc216e380a89798fe8e2c + md5: e3fd1f8320a100f2b210e690a57cd615 + depends: + - __osx >=11.0 + license: 0BSD + size: 98945 + timestamp: 1738525462560 +- conda: https://prefix.dev/conda-forge/win-64/liblzma-5.6.4-h2466b09_0.conda + sha256: 3f552b0bdefdd1459ffc827ea3bf70a6a6920c7879d22b6bfd0d73015b55227b + md5: c48f6ad0ef0a555b27b233dfcab46a90 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: 0BSD + size: 104465 + timestamp: 1738525557254 +- conda: https://prefix.dev/conda-forge/linux-64/liblzma-devel-5.6.4-hb9d3cd8_0.conda + sha256: 34928b36a3946902196a6786db80c8a4a97f6c9418838d67be90a1388479a682 + md5: 5ab1a0df19c8f3ec00d5e63458e0a420 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - liblzma 5.6.4 hb9d3cd8_0 + license: 0BSD + size: 378821 + timestamp: 1738525353119 +- conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-devel-5.6.4-h86ecc28_0.conda + sha256: d13882eff44e3984afbdfd39ae6f32bb0f624c284ec040c997f3fb62cc77c0e9 + md5: e9e33059c0262c70538581e3a2205fb4 + depends: + - libgcc >=13 + - liblzma 5.6.4 h86ecc28_0 + license: 0BSD + size: 380207 + timestamp: 1738528405563 +- conda: https://prefix.dev/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h5ddbaa4_116.conda + sha256: 6c61842c8d8f885019f52a2f989d197b6bf33c030b030226e665f01ca0fa3f71 + md5: f51573abc223afed7e5374f34135ce05 + depends: + - __glibc >=2.17,<3.0.a0 + - blosc >=1.21.6,<2.0a0 + - bzip2 >=1.0.8,<2.0a0 + - hdf4 >=4.2.15,<4.2.16.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - libaec >=1.1.3,<2.0a0 + - libcurl >=8.10.1,<9.0a0 + - libgcc >=13 + - libstdcxx >=13 + - libxml2 >=2.13.5,<3.0a0 + - libzip >=1.11.2,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.0,<4.0a0 + - zlib + - zstd >=1.5.6,<1.6.0a0 + license: MIT + license_family: MIT + size: 832800 + timestamp: 1733232193218 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libnetcdf-4.9.2-nompi_h46655bb_116.conda + sha256: 3cef53598ba8cad6b5dd3ddedafe681f439df84599c91cd446f026532851b4d8 + md5: 94e5e219d5a306226c30472cfa429285 + depends: + - blosc >=1.21.6,<2.0a0 + - bzip2 >=1.0.8,<2.0a0 + - hdf4 >=4.2.15,<4.2.16.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - libaec >=1.1.3,<2.0a0 + - libcurl >=8.10.1,<9.0a0 + - libgcc >=13 + - libstdcxx >=13 + - libxml2 >=2.13.5,<3.0a0 + - libzip >=1.11.2,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.0,<4.0a0 + - zlib + - zstd >=1.5.6,<1.6.0a0 + license: MIT + license_family: MIT + size: 852231 + timestamp: 1733232606148 +- conda: https://prefix.dev/conda-forge/osx-64/libnetcdf-4.9.2-nompi_hd7a758f_116.conda + sha256: d0d766af25adce60b6308a41104358007a08e06359b7e9318784a24a44618c0a + md5: 25ba70595ea5495448e9dd55e4836177 + depends: + - __osx >=10.13 + - blosc >=1.21.6,<2.0a0 + - bzip2 >=1.0.8,<2.0a0 + - hdf4 >=4.2.15,<4.2.16.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - libaec >=1.1.3,<2.0a0 + - libcurl >=8.10.1,<9.0a0 + - libcxx >=18 + - libxml2 >=2.13.5,<3.0a0 + - libzip >=1.11.2,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.0,<4.0a0 + - zlib + - zstd >=1.5.6,<1.6.0a0 + license: MIT + license_family: MIT + size: 726457 + timestamp: 1733232775356 +- conda: https://prefix.dev/conda-forge/osx-arm64/libnetcdf-4.9.2-nompi_h6569565_116.conda + sha256: 09d0194d8639e1f061f1a11d809a61030abcf335feefb10a10e65e43812a1205 + md5: 6257f1136b1285acf5c3b171249fdf52 + depends: + - __osx >=11.0 + - blosc >=1.21.6,<2.0a0 + - bzip2 >=1.0.8,<2.0a0 + - hdf4 >=4.2.15,<4.2.16.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - libaec >=1.1.3,<2.0a0 + - libcurl >=8.10.1,<9.0a0 + - libcxx >=18 + - libxml2 >=2.13.5,<3.0a0 + - libzip >=1.11.2,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.0,<4.0a0 + - zlib + - zstd >=1.5.6,<1.6.0a0 + license: MIT + license_family: MIT + size: 685178 + timestamp: 1733232329857 +- conda: https://prefix.dev/conda-forge/win-64/libnetcdf-4.9.2-nompi_h5bdc103_116.conda + sha256: fa0591430e03ac302782dec8261bc85e1bb1e374f47e2bbbcd23469680d8e5f2 + md5: a95ec17163d3e07bc0bf3f5ca9c86fde + depends: + - blosc >=1.21.6,<2.0a0 + - bzip2 >=1.0.8,<2.0a0 + - hdf4 >=4.2.15,<4.2.16.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - libaec >=1.1.3,<2.0a0 + - libcurl >=8.10.1,<9.0a0 + - libxml2 >=2.13.5,<3.0a0 + - libzip >=1.11.2,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zlib + - zstd >=1.5.6,<1.6.0a0 + license: MIT + license_family: MIT + size: 625802 + timestamp: 1733232741492 +- conda: https://prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda + sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975 + md5: 19e57602824042dfd0446292ef90488b + depends: + - __glibc >=2.17,<3.0.a0 + - c-ares >=1.32.3,<2.0a0 + - libev >=4.33,<4.34.0a0 + - libev >=4.33,<5.0a0 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 + license: MIT + license_family: MIT + size: 647599 + timestamp: 1729571887612 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libnghttp2-1.64.0-hc8609a4_0.conda + sha256: c093c6d370aadbf0409c20b6c54c488ee2f6fea976181919fcc63e87ee232673 + md5: f52c614fa214a8bedece9421c771670d + depends: + - c-ares >=1.32.3,<2.0a0 + - libev >=4.33,<4.34.0a0 + - libev >=4.33,<5.0a0 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 + license: MIT + license_family: MIT + size: 714610 + timestamp: 1729571912479 +- conda: https://prefix.dev/conda-forge/osx-64/libnghttp2-1.64.0-hc7306c3_0.conda + sha256: 0dcfdcf3a445d2d7de4f3b186ab0a794dc872f4ea21622f9b997be72712c027f + md5: ab21007194b97beade22ceb7a3f6fee5 + depends: + - __osx >=10.13 + - c-ares >=1.34.2,<2.0a0 + - libcxx >=17 + - libev >=4.33,<4.34.0a0 + - libev >=4.33,<5.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 + license: MIT + license_family: MIT + size: 606663 + timestamp: 1729572019083 +- conda: https://prefix.dev/conda-forge/osx-arm64/libnghttp2-1.64.0-h6d7220d_0.conda + sha256: 00cc685824f39f51be5233b54e19f45abd60de5d8847f1a56906f8936648b72f + md5: 3408c02539cee5f1141f9f11450b6a51 + depends: + - __osx >=11.0 + - c-ares >=1.34.2,<2.0a0 + - libcxx >=17 + - libev >=4.33,<4.34.0a0 + - libev >=4.33,<5.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 + license: MIT + license_family: MIT + size: 566719 + timestamp: 1729572385640 +- conda: https://prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda + sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 + md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 + depends: + - libgcc-ng >=12 + license: LGPL-2.1-only + license_family: GPL + size: 33408 + timestamp: 1697359010159 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda + sha256: fd18c2b75d7411096428d36a70b36b1a17e31f7b8956b6905d145792d49e97f8 + md5: c14f32510f694e3185704d89967ec422 + depends: + - libgcc-ng >=12 + license: LGPL-2.1-only + license_family: GPL + size: 34501 + timestamp: 1697358973269 +- conda: https://prefix.dev/conda-forge/linux-64/libntlm-1.8-hb9d3cd8_0.conda + sha256: 3b3f19ced060013c2dd99d9d46403be6d319d4601814c772a3472fe2955612b0 + md5: 7c7927b404672409d9917d49bff5f2d6 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: LGPL-2.1-or-later + size: 33418 + timestamp: 1734670021371 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libntlm-1.4-hf897c2e_1002.tar.bz2 + sha256: 0e303d7a8845391bd1634efb65dc9d9b82b5608ebeb32fb77a56d1ed696d2eee + md5: 835c7c4137821de5c309f4266a51ba89 + depends: + - libgcc-ng >=9.3.0 + license: LGPL-2.1-or-later + size: 39449 + timestamp: 1609781865660 +- conda: https://prefix.dev/conda-forge/osx-64/libntlm-1.8-h6e16a3a_0.conda + sha256: 2ab918f7cc00852d70088e0b9e49fda4ef95229126cf3c52a8297686938385f2 + md5: 23d706dbe90b54059ad86ff826677f39 + depends: + - __osx >=10.13 + license: LGPL-2.1-or-later + size: 33742 + timestamp: 1734670081910 +- conda: https://prefix.dev/conda-forge/osx-arm64/libntlm-1.8-h5505292_0.conda + sha256: ea8c680924d957e12270dca549620327d5e986f23c4bd5f45627167ca6ef7a3b + md5: c90c1d3bd778f5ec0d4bb4ef36cbd5b6 + depends: + - __osx >=11.0 + license: LGPL-2.1-or-later + size: 31099 + timestamp: 1734670168822 +- conda: https://prefix.dev/conda-forge/linux-64/libogg-1.3.5-h4ab18f5_0.conda + sha256: 5eda3fe92b99b25dd4737226a9485078ab405672d9f621be75edcb68f1e9026d + md5: 601bfb4b3c6f0b844443bb81a56651e0 + depends: + - libgcc-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 205914 + timestamp: 1719301575771 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libogg-1.3.5-h0b9eccb_0.conda + sha256: e65acc318b7535fb8f2b5e994fe6eac3ae0be3bdb2acbe6037841d033c51f290 + md5: 15cb67b1b9dd0d4b37c81daba785e6ad + depends: + - libgcc-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 208233 + timestamp: 1719301637185 +- conda: https://prefix.dev/conda-forge/osx-64/libogg-1.3.5-hfdf4475_0.conda + sha256: bebf5797e2a278fd2094f2b0c29ccdfc51d400f4736701108a7e544a49705c64 + md5: 7497372c91a31d3e8d64ce3f1a9632e8 + depends: + - __osx >=10.13 + license: BSD-3-Clause + license_family: BSD + size: 203604 + timestamp: 1719301669662 +- conda: https://prefix.dev/conda-forge/osx-arm64/libogg-1.3.5-h99b78c6_0.conda + sha256: 685f73b7241978007dfe0cecb9cae46c6a26d87d192b6f85a09eb65023c0b99e + md5: 57b668b9b78dea2c08e44bb2385d57c0 + depends: + - __osx >=11.0 + license: BSD-3-Clause + license_family: BSD + size: 205451 + timestamp: 1719301708541 +- conda: https://prefix.dev/conda-forge/win-64/libogg-1.3.5-h2466b09_0.conda + sha256: fcffdf32c620569738b85c98ddd25e1c84c8add80cd732743d90d469b7b532bb + md5: 44a4d173e62c5ed6d715f18ae7c46b7a + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 35459 + timestamp: 1719302192495 +- conda: https://prefix.dev/conda-forge/linux-64/libopenblas-0.3.29-pthreads_h94d23a6_0.conda + sha256: cc5389ea254f111ef17a53df75e8e5209ef2ea6117e3f8aced88b5a8e51f11c4 + md5: 0a4d0252248ef9a0f88f2ba8b8a08e12 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libgfortran + - libgfortran5 >=14.2.0 + constrains: + - openblas >=0.3.29,<0.3.30.0a0 + license: BSD-3-Clause + license_family: BSD + size: 5919288 + timestamp: 1739825731827 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenblas-0.3.29-pthreads_h9d3fd7e_0.conda + sha256: 3a2ccf4c9098cd18a636e9b7fff947fdeb4962bcfb75c9d6fd80b8c50caf6a3c + md5: a99e2bfcb1ad6362544c71281eb617e9 + depends: + - libgcc >=14 + - libgfortran + - libgfortran5 >=14.2.0 + constrains: + - openblas >=0.3.29,<0.3.30.0a0 + license: BSD-3-Clause + license_family: BSD + size: 4801657 + timestamp: 1739825308974 +- conda: https://prefix.dev/conda-forge/win-64/libopenblas-0.3.29-pthreads_head3c61_0.conda + sha256: fbf704748b8a95a476f84cb3827dea4be95ba94cee3e88ed3d967058238ca291 + md5: bded9e09740c357edc4eacb47f0ff6bf + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - openblas >=0.3.29,<0.3.30.0a0 + license: BSD-3-Clause + license_family: BSD + size: 3938876 + timestamp: 1739829020535 +- conda: https://prefix.dev/conda-forge/linux-64/libopencv-4.10.0-qt6_py312h02963e2_615.conda + sha256: 3b0d2de9a2477db6b66b260c9501685643fa85142c175bdf3bf9d0cc61e0bd17 + md5: 21efa1534805de3a7440eca31b2e4b1f + depends: + - __glibc >=2.17,<3.0.a0 + - _openmp_mutex >=4.5 + - ffmpeg >=7.1.0,<8.0a0 + - freetype >=2.12.1,<3.0a0 + - harfbuzz >=10.1.0,<11.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - jasper >=4.2.4,<5.0a0 + - libasprintf >=0.22.5,<1.0a0 + - libcblas >=3.9.0,<4.0a0 + - libegl >=1.7.0,<2.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libgettextpo >=0.22.5,<1.0a0 + - libgl >=1.7.0,<2.0a0 + - libglib >=2.82.2,<3.0a0 + - libiconv >=1.17,<2.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - liblapacke >=3.9.0,<4.0a0 + - libopenvino >=2024.6.0,<2024.6.1.0a0 + - libopenvino-auto-batch-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-auto-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-hetero-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-intel-cpu-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-intel-gpu-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-intel-npu-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-ir-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-onnx-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-paddle-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-pytorch-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-tensorflow-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2024.6.0,<2024.6.1.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - libstdcxx >=13 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - numpy >=1.19,<3 + - openexr >=3.3.2,<3.4.0a0 + - qt6-main >=6.8.1,<6.9.0a0 + license: Apache-2.0 + license_family: Apache + size: 30925111 + timestamp: 1735820164097 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopencv-4.10.0-headless_py312h664d0dd_15.conda + sha256: 58be710bf512075f32510ce77cbf9e15a823947f5e5cfecd50c35a068bec5043 + md5: c748c4976d9e4f1d2e072ae1eb1a2a59 + depends: + - _openmp_mutex >=4.5 + - ffmpeg >=7.1.0,<8.0a0 + - freetype >=2.12.1,<3.0a0 + - harfbuzz >=10.1.0,<11.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - jasper >=4.2.4,<5.0a0 + - libasprintf >=0.22.5,<1.0a0 + - libcblas >=3.9.0,<4.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libgettextpo >=0.22.5,<1.0a0 + - libglib >=2.82.2,<3.0a0 + - libiconv >=1.17,<2.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - liblapacke >=3.9.0,<4.0a0 + - libopenvino >=2024.6.0,<2024.6.1.0a0 + - libopenvino-arm-cpu-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-auto-batch-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-auto-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-hetero-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-ir-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-onnx-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-paddle-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-pytorch-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-tensorflow-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2024.6.0,<2024.6.1.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - libstdcxx >=13 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - numpy >=1.19,<3 + - openexr >=3.3.2,<3.4.0a0 + - python >=3.12,<3.13.0a0 *_cpython + license: Apache-2.0 + license_family: Apache + size: 20080611 + timestamp: 1735823186014 +- conda: https://prefix.dev/conda-forge/osx-64/libopencv-4.10.0-headless_py312hd33687b_15.conda + sha256: ba19f1cbe97d580f8aed6ee11ee6f51d795dce99d07b2cd7517b46facdbd8a4a + md5: 3de4d2afc42e4c46ea5cb30cc40134ad + depends: + - __osx >=10.13 + - ffmpeg >=7.1.0,<8.0a0 + - freetype >=2.12.1,<3.0a0 + - harfbuzz >=10.1.0,<11.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - jasper >=4.2.4,<5.0a0 + - libasprintf >=0.22.5,<1.0a0 + - libcblas >=3.9.0,<4.0a0 + - libcxx >=18 + - libexpat >=2.6.4,<3.0a0 + - libgettextpo >=0.22.5,<1.0a0 + - libglib >=2.82.2,<3.0a0 + - libiconv >=1.17,<2.0a0 + - libintl >=0.22.5,<1.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - liblapacke >=3.9.0,<4.0a0 + - libopenvino >=2024.6.0,<2024.6.1.0a0 + - libopenvino-auto-batch-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-auto-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-hetero-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-intel-cpu-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-ir-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-onnx-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-paddle-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-pytorch-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-tensorflow-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2024.6.0,<2024.6.1.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - numpy >=1.19,<3 + - openexr >=3.3.2,<3.4.0a0 + license: Apache-2.0 + license_family: Apache + size: 27479425 + timestamp: 1735820187604 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopencv-4.10.0-headless_py312hb22ed7f_15.conda + sha256: f95c332767c84671a11a8d24fce918c5656437c77f459e8d34e3afb6b4247f2e + md5: 8a0388d077f0598db8ffc72fd224c1ef + depends: + - __osx >=11.0 + - ffmpeg >=7.1.0,<8.0a0 + - freetype >=2.12.1,<3.0a0 + - harfbuzz >=10.1.0,<11.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - jasper >=4.2.4,<5.0a0 + - libasprintf >=0.22.5,<1.0a0 + - libcblas >=3.9.0,<4.0a0 + - libcxx >=18 + - libexpat >=2.6.4,<3.0a0 + - libgettextpo >=0.22.5,<1.0a0 + - libglib >=2.82.2,<3.0a0 + - libiconv >=1.17,<2.0a0 + - libintl >=0.22.5,<1.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - liblapacke >=3.9.0,<4.0a0 + - libopenvino >=2024.6.0,<2024.6.1.0a0 + - libopenvino-arm-cpu-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-auto-batch-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-auto-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-hetero-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-ir-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-onnx-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-paddle-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-pytorch-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-tensorflow-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2024.6.0,<2024.6.1.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - numpy >=1.19,<3 + - openexr >=3.3.2,<3.4.0a0 + - python >=3.12,<3.13.0a0 *_cpython + license: Apache-2.0 + license_family: Apache + size: 22019703 + timestamp: 1735824781967 +- conda: https://prefix.dev/conda-forge/win-64/libopencv-4.10.0-qt6_py312h50f3c70_615.conda + sha256: 8d1062c3d8bfcae3e882d936268a7fcfec022f381bbdd8ba0a0ca18ab45e530e + md5: 171a1b123658da525336392ea81bf8d7 + depends: + - ffmpeg >=7.1.0,<8.0a0 + - freetype >=2.12.1,<3.0a0 + - harfbuzz >=10.1.0,<11.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - jasper >=4.2.4,<5.0a0 + - libasprintf >=0.22.5,<1.0a0 + - libcblas >=3.9.0,<4.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgettextpo >=0.22.5,<1.0a0 + - libglib >=2.82.2,<3.0a0 + - libintl >=0.22.5,<1.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - liblapacke >=3.9.0,<4.0a0 + - libopenvino >=2024.6.0,<2024.6.1.0a0 + - libopenvino-auto-batch-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-auto-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-hetero-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-intel-cpu-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-intel-gpu-plugin >=2024.6.0,<2024.6.1.0a0 + - libopenvino-ir-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-onnx-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-paddle-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-pytorch-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-tensorflow-frontend >=2024.6.0,<2024.6.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2024.6.0,<2024.6.1.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - numpy >=1.19,<3 + - openexr >=3.3.2,<3.4.0a0 + - qt6-main >=6.8.1,<6.9.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 33107304 + timestamp: 1735824922958 +- conda: https://prefix.dev/conda-forge/linux-64/libopengl-1.7.0-ha4b6fd6_2.conda + sha256: 215086c108d80349e96051ad14131b751d17af3ed2cb5a34edd62fa89bfe8ead + md5: 7df50d44d4a14d6c31a2c54f2cd92157 + depends: + - __glibc >=2.17,<3.0.a0 + - libglvnd 1.7.0 ha4b6fd6_2 + license: LicenseRef-libglvnd + size: 50757 + timestamp: 1731330993524 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopengl-1.7.0-hd24410f_2.conda + sha256: e359df399fb2f308774237384414e318fac8870c1bf6481bdc67ae16e0bd2a02 + md5: cf9d12bfab305e48d095a4c79002c922 + depends: + - libglvnd 1.7.0 hd24410f_2 + license: LicenseRef-libglvnd + size: 56355 + timestamp: 1731331001820 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-2024.6.0-hac27bb2_3.conda + sha256: a02009d753d2f6af953f6bb19d8c34acf5666baf7bab77b2535c9afbe8635d9b + md5: 10ee0153cd8ddc6bd2ec147e7fd56280 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - pugixml >=1.14,<1.15.0a0 + - tbb >=2021.13.0 + size: 5508929 + timestamp: 1735814214700 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-2024.6.0-hd7d4d4f_3.conda + sha256: 6bedd3d1a40e6ccf11afaec3135ef317ef5ca7a3222d88c61cb10e6930802de6 + md5: 78156088e69307eced6ae1e902b8ef02 + depends: + - libgcc >=13 + - libstdcxx >=13 + - pugixml >=1.14,<1.15.0a0 + - tbb >=2021.13.0 + size: 5011501 + timestamp: 1735808415300 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-2024.6.0-h5e1b680_3.conda + sha256: 5491ed4a2a93a0cff1301b2e5a9f0cbafdf4912ba9bd3228aee939f13e5bd828 + md5: 318e4f80b31f94b3fe99526a80291e17 + depends: + - __osx >=10.15 + - libcxx >=18 + - pugixml >=1.14,<1.15.0a0 + - tbb >=2021.13.0 + size: 4349521 + timestamp: 1735808738890 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-2024.6.0-h97facdf_3.conda + sha256: 17c148924803e266387c5d6ba4e32bbb194b4a7a65cfbaec589002558f18b1fe + md5: 62dca883e9b7839ffb017f7cf7aa61a9 + depends: + - __osx >=11.0 + - libcxx >=18 + - pugixml >=1.14,<1.15.0a0 + - tbb >=2021.13.0 + size: 4034356 + timestamp: 1735809774149 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-2024.6.0-hfe1841e_3.conda + sha256: a831e4b909da15583ba20d52417fed37c4b5d41997667912cbdf08bb32350a23 + md5: 0f56cd5241542ce5017f594a8e46820a + depends: + - pugixml >=1.14,<1.15.0a0 + - tbb >=2021.13.0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 3386917 + timestamp: 1735816454962 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-arm-cpu-plugin-2024.6.0-hd7d4d4f_3.conda + sha256: 1c308d35e56694c46015338ace3c88ed78666cd75c5418f9877049697fe10cbb + md5: d7182cda6c78e0b093c3d4399fe7f10d + depends: + - libgcc >=13 + - libopenvino 2024.6.0 hd7d4d4f_3 + - libstdcxx >=13 + - pugixml >=1.14,<1.15.0a0 + - tbb >=2021.13.0 + size: 8538037 + timestamp: 1735808433766 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-arm-cpu-plugin-2024.6.0-h97facdf_3.conda + sha256: a0e865d7f7f3b1fdcba499df6371899c379e669170077cc607d5262dcfa979b7 + md5: 3da816efbc5b9e5dc222904b2a9d152d + depends: + - __osx >=11.0 + - libcxx >=18 + - libopenvino 2024.6.0 h97facdf_3 + - pugixml >=1.14,<1.15.0a0 + - tbb >=2021.13.0 + size: 7525786 + timestamp: 1735809807343 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.6.0-h4d9b6c2_3.conda + sha256: 0a75925ebbc7354a4f32d76e1aad16ec5712308f1c1c26fda58be5879b633292 + md5: 9a3ade47ab98a071c3538246cfc138c2 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libopenvino 2024.6.0 hac27bb2_3 + - libstdcxx >=13 + - tbb >=2021.13.0 + size: 114567 + timestamp: 1735814240969 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-auto-batch-plugin-2024.6.0-hf15766e_3.conda + sha256: cf1deba2d031073c103e64dbb1e28c879ffaac215449c759519acaa4f4419420 + md5: 14efee7f38d46b3611570d58392e5cca + depends: + - libgcc >=13 + - libopenvino 2024.6.0 hd7d4d4f_3 + - libstdcxx >=13 + - tbb >=2021.13.0 + size: 110548 + timestamp: 1735808460688 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-auto-batch-plugin-2024.6.0-h4464f52_3.conda + sha256: 1a3db5d17a1faf03e20fcae95f5dab0a68a39896ceb0f220fe025dc0a9bbca13 + md5: 7b26b49cc8a303288930842cbf53371a + depends: + - __osx >=10.15 + - libcxx >=18 + - libopenvino 2024.6.0 h5e1b680_3 + - tbb >=2021.13.0 + size: 108568 + timestamp: 1735808768636 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-auto-batch-plugin-2024.6.0-h7f72211_3.conda + sha256: f3280e43dcfa3df63fc65c351a92404478b9c866ccb3bcb8c2e1b4b1d1044344 + md5: 19269d66687d35707ef257186ee3aa39 + depends: + - __osx >=11.0 + - libcxx >=18 + - libopenvino 2024.6.0 h97facdf_3 + - tbb >=2021.13.0 + size: 107453 + timestamp: 1735809859441 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-auto-batch-plugin-2024.6.0-h04f32e0_3.conda + sha256: 63715b97564cd851fc1fde5e156c959a611657874af4a86a3537237fa661322f + md5: 0c1766a1f813acf576fde1dc257f16eb + depends: + - libopenvino 2024.6.0 hfe1841e_3 + - tbb >=2021.13.0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 101730 + timestamp: 1735816507685 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-auto-plugin-2024.6.0-h4d9b6c2_3.conda + sha256: 74165827852afe50ae3625c832bc9dc9d8bd6f0d5ed4aa5bc4b6917974f0f553 + md5: 246bbf8c6e41b5ea85b2af7c2c51bda5 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libopenvino 2024.6.0 hac27bb2_3 + - libstdcxx >=13 + - tbb >=2021.13.0 + size: 241845 + timestamp: 1735814255900 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-auto-plugin-2024.6.0-hf15766e_3.conda + sha256: 0f764ac8885210b0b63412df763a66f7c5970c25db0b273d8f5e6989bf1e36bc + md5: 3a05f26435bfc6e224704b127eddee86 + depends: + - libgcc >=13 + - libopenvino 2024.6.0 hd7d4d4f_3 + - libstdcxx >=13 + - tbb >=2021.13.0 + size: 227993 + timestamp: 1735808471393 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-auto-plugin-2024.6.0-h4464f52_3.conda + sha256: cb39d6fdc281071e15b12ba3517620fa1a3314d8e73b780d1372150cc67058e0 + md5: e05440d009f16007193c7818622b2a8c + depends: + - __osx >=10.15 + - libcxx >=18 + - libopenvino 2024.6.0 h5e1b680_3 + - tbb >=2021.13.0 + size: 217550 + timestamp: 1735808794380 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-auto-plugin-2024.6.0-h7f72211_3.conda + sha256: 5103606717f943e924626217b055f9f6c54fa83d4c742394fe922c8749b605a2 + md5: 280df638cf92ad3198817d425a888a88 + depends: + - __osx >=11.0 + - libcxx >=18 + - libopenvino 2024.6.0 h97facdf_3 + - tbb >=2021.13.0 + size: 212834 + timestamp: 1735809891578 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-auto-plugin-2024.6.0-h04f32e0_3.conda + sha256: e277e9796af3d9ab5fe92bf53120b33098b6e4f0f563db1b7027112214c95b7f + md5: af0f3ac9c1cf732b87e4bab821807d3d + depends: + - libopenvino 2024.6.0 hfe1841e_3 + - tbb >=2021.13.0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 196097 + timestamp: 1735816552617 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-hetero-plugin-2024.6.0-h3f63f65_3.conda + sha256: 4e9e37541e03e271f58810dde57903bc913821925bbcc718769da59fa27e3e0f + md5: 0027d0eb0b43817adf23778721fc2156 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libopenvino 2024.6.0 hac27bb2_3 + - libstdcxx >=13 + - pugixml >=1.14,<1.15.0a0 + size: 201005 + timestamp: 1735814274360 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-hetero-plugin-2024.6.0-h6ef32b0_3.conda + sha256: 8cc99e4a686f95aa4a5889e770550d808b1a5eca58d863b1dd4ec373b8061aea + md5: 2f0ea6d15ae11af0aee404198451afde + depends: + - libgcc >=13 + - libopenvino 2024.6.0 hd7d4d4f_3 + - libstdcxx >=13 + - pugixml >=1.14,<1.15.0a0 + size: 186851 + timestamp: 1735808482448 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-hetero-plugin-2024.6.0-h3435d20_3.conda + sha256: 417ae8824c961d913863fe8d9bf9685afc57418edd0213dd876c38a1de72eb46 + md5: b074d38a88f4f3be85dd48009aebf57d + depends: + - __osx >=10.15 + - libcxx >=18 + - libopenvino 2024.6.0 h5e1b680_3 + - pugixml >=1.14,<1.15.0a0 + size: 185085 + timestamp: 1735808817869 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-hetero-plugin-2024.6.0-hd3d436d_3.conda + sha256: 614416be981f064d76b3b02e15f47a72e2d900530545c188cad409b16b387806 + md5: ad92cb923e315d4377222d922e3a76be + depends: + - __osx >=11.0 + - libcxx >=18 + - libopenvino 2024.6.0 h97facdf_3 + - pugixml >=1.14,<1.15.0a0 + size: 178488 + timestamp: 1735809914243 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-hetero-plugin-2024.6.0-h372dad0_3.conda + sha256: 4e48f9694939909bc948adb4ae33c17ca3a63adec838c7e44760a4ff491ebd0e + md5: d06d0a58b05c4404a42bf3ce6d2d2994 + depends: + - libopenvino 2024.6.0 hfe1841e_3 + - pugixml >=1.14,<1.15.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 162073 + timestamp: 1735816608419 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.6.0-hac27bb2_3.conda + sha256: 984bed886951bc785228c09085f5574b8a57367dce3a907f755b9852e7054213 + md5: 59f8fb2a68214d2a672b245392ffd640 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libopenvino 2024.6.0 hac27bb2_3 + - libstdcxx >=13 + - pugixml >=1.14,<1.15.0a0 + - tbb >=2021.13.0 + size: 12330259 + timestamp: 1735814289764 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-intel-cpu-plugin-2024.6.0-h5e1b680_3.conda + sha256: 7952a70f86eb2f7aba4bac8bea6fdfb581e8c9c4faf8b598e84cf4f519b8dc85 + md5: a90ff7c25aac35bd96110290ea49a0ba + depends: + - __osx >=10.15 + - libcxx >=18 + - libopenvino 2024.6.0 h5e1b680_3 + - pugixml >=1.14,<1.15.0a0 + - tbb >=2021.13.0 + size: 11347887 + timestamp: 1735808854637 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-intel-cpu-plugin-2024.6.0-hfe1841e_3.conda + sha256: a9ddb142dec23ac9bdd3404765df68d86e53604f3cf2f66f8247e82d79583bfb + md5: 4f2303ae7299f6f893fe9a96b7f2ae30 + depends: + - libopenvino 2024.6.0 hfe1841e_3 + - pugixml >=1.14,<1.15.0a0 + - tbb >=2021.13.0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 8175991 + timestamp: 1735816655106 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.6.0-hac27bb2_3.conda + sha256: 6eb5dc3c2a423d2e4096acbe87857a726b2551bbfa2d4bd047ec8078030de8ba + md5: 236616fe93f334dd180e0bf188fde7bd + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libopenvino 2024.6.0 hac27bb2_3 + - libstdcxx >=13 + - ocl-icd >=2.3.2,<3.0a0 + - pugixml >=1.14,<1.15.0a0 + - tbb >=2021.13.0 + size: 9521880 + timestamp: 1735814336571 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-intel-gpu-plugin-2024.6.0-hfe1841e_3.conda + sha256: 2f6b011a725ab9f20661e49054bf49baa469cc371587f53e158343fcec8b723b + md5: d0c94a62911436fccf1d212f133f7259 + depends: + - khronos-opencl-icd-loader >=2024.10.24 + - libopenvino 2024.6.0 hfe1841e_3 + - pugixml >=1.14,<1.15.0a0 + - tbb >=2021.13.0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 7706462 + timestamp: 1735816724542 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-npu-plugin-2024.6.0-hac27bb2_3.conda + sha256: 620dc78a00bce9586c360d565b3a051a696b075f2a350660c2bd1378ded01252 + md5: 61466e67e4cf21d832dfebc8e9368ecd + depends: + - __glibc >=2.17,<3.0.a0 + - level-zero >=1.19.2,<2.0a0 + - libgcc >=13 + - libopenvino 2024.6.0 hac27bb2_3 + - libstdcxx >=13 + - pugixml >=1.14,<1.15.0a0 + - tbb >=2021.13.0 + size: 983378 + timestamp: 1735814373420 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-ir-frontend-2024.6.0-h3f63f65_3.conda + sha256: b21dfc69dcbfaa13e230a01f0e35f5ca487f7c5e55c4b121cd212622c9ee71b0 + md5: b977bfc0c549a779f812a655a8a69e6b + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libopenvino 2024.6.0 hac27bb2_3 + - libstdcxx >=13 + - pugixml >=1.14,<1.15.0a0 + size: 210368 + timestamp: 1735814388484 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-ir-frontend-2024.6.0-h6ef32b0_3.conda + sha256: 585a435ecae4105d829782228c7a96a53d275dd10e540d0b0b5a8bdef5ca5a31 + md5: 80cae97a85295571eb86325d849d23aa + depends: + - libgcc >=13 + - libopenvino 2024.6.0 hd7d4d4f_3 + - libstdcxx >=13 + - pugixml >=1.14,<1.15.0a0 + size: 198160 + timestamp: 1735808494463 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-ir-frontend-2024.6.0-h3435d20_3.conda + sha256: 55ff112bf7f71c81a2a49426587539c071f23a2f3ad732274b40c36d1a2aff2d + md5: 0f15e576764630027251ecf707c60002 + depends: + - __osx >=10.15 + - libcxx >=18 + - libopenvino 2024.6.0 h5e1b680_3 + - pugixml >=1.14,<1.15.0a0 + size: 186851 + timestamp: 1735808925544 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-ir-frontend-2024.6.0-hd3d436d_3.conda + sha256: d9d99fc8c26d99a09f0bf15d07d1a706d30a23a24def3a03330850222ac56567 + md5: 999c4fc9d0ed1ecc7c11f368eb5fced2 + depends: + - __osx >=11.0 + - libcxx >=18 + - libopenvino 2024.6.0 h97facdf_3 + - pugixml >=1.14,<1.15.0a0 + size: 176569 + timestamp: 1735809938944 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-ir-frontend-2024.6.0-h372dad0_3.conda + sha256: 0deb10aa5b43578d4bf0baa12f2fa4560a78c8ad43f90d6401ce81e32549a35e + md5: af26d18bc8ab78b8d229aae1d52058ef + depends: + - libopenvino 2024.6.0 hfe1841e_3 + - pugixml >=1.14,<1.15.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 161486 + timestamp: 1735816789251 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-onnx-frontend-2024.6.0-h6363af5_3.conda + sha256: 28e984c3f1d45986dbd8ca6d2ba0eebc0e4baf994f34ad886e452e266ff2a822 + md5: be7d67d6363a63df1661aead734cb5cc + depends: + - __glibc >=2.17,<3.0.a0 + - libabseil * cxx17* + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libopenvino 2024.6.0 hac27bb2_3 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - libstdcxx >=13 + size: 1626413 + timestamp: 1735814403492 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-onnx-frontend-2024.6.0-h2c07a0f_3.conda + sha256: 4b8242f76acbbd0e0d04ecba9187286587857b1d66bd0ddfedac73c7bdd79e28 + md5: ed0b4eb0ad89e8cc5df77f9131c31e22 + depends: + - libabseil * cxx17* + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libopenvino 2024.6.0 hd7d4d4f_3 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - libstdcxx >=13 + size: 1460762 + timestamp: 1735808505663 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-onnx-frontend-2024.6.0-h40b3fd7_3.conda + sha256: 77dfd2d358671ac8899eb4b1264df695b609b2c1957b43bdba0a9a31269b0b0a + md5: 2c93697536a568dcfbbdc40a0bfed0f5 + depends: + - __osx >=10.15 + - libabseil * cxx17* + - libabseil >=20240722.0,<20240723.0a0 + - libcxx >=18 + - libopenvino 2024.6.0 h5e1b680_3 + - libprotobuf >=5.28.3,<5.28.4.0a0 + size: 1330841 + timestamp: 1735808971253 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-onnx-frontend-2024.6.0-h76e6831_3.conda + sha256: b6259a5910c1cb093faf8bbbecff831783433212177c6a677f40c9307e94bdaf + md5: 4f9eef45e5bfd1da700b9400c9f70f63 + depends: + - __osx >=11.0 + - libabseil * cxx17* + - libabseil >=20240722.0,<20240723.0a0 + - libcxx >=18 + - libopenvino 2024.6.0 h97facdf_3 + - libprotobuf >=5.28.3,<5.28.4.0a0 + size: 1274339 + timestamp: 1735809978819 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-onnx-frontend-2024.6.0-h6e6c283_3.conda + sha256: d091eb851d7c55018aa5e9e597b3bdb8210f5bf390027a412251155fa565ea5b + md5: 5c90e08745846c434c2260182160e762 + depends: + - libabseil * cxx17* + - libabseil >=20240722.0,<20240723.0a0 + - libopenvino 2024.6.0 hfe1841e_3 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 1026682 + timestamp: 1735816837456 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-paddle-frontend-2024.6.0-h6363af5_3.conda + sha256: 576fd23a3df95a54cc59c7e74496d02ae2d2cefc61d3495e98f1e70968fe41f7 + md5: cf097d1aa9f828ac24d9ec686411f459 + depends: + - __glibc >=2.17,<3.0.a0 + - libabseil * cxx17* + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libopenvino 2024.6.0 hac27bb2_3 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - libstdcxx >=13 + size: 660629 + timestamp: 1735814420357 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-paddle-frontend-2024.6.0-h2c07a0f_3.conda + sha256: 8308c2a6f102694534993d0f4f8c81e81d430881aa733d0f88c34eb0c5333829 + md5: f72a0067bfea95a7157c039d34f5d32e + depends: + - libabseil * cxx17* + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libopenvino 2024.6.0 hd7d4d4f_3 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - libstdcxx >=13 + size: 612643 + timestamp: 1735808518394 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-paddle-frontend-2024.6.0-h40b3fd7_3.conda + sha256: 92d2d974bf8b5a9d45fa1b836c9d63157b9f7628da15f1c7c4b2c46cc03a281c + md5: 58226f42590260e0327f25104090d793 + depends: + - __osx >=10.15 + - libabseil * cxx17* + - libabseil >=20240722.0,<20240723.0a0 + - libcxx >=18 + - libopenvino 2024.6.0 h5e1b680_3 + - libprotobuf >=5.28.3,<5.28.4.0a0 + size: 439613 + timestamp: 1735809002644 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-paddle-frontend-2024.6.0-h76e6831_3.conda + sha256: f1ecf9ef58201c217086e3c99567a475b330e1fe1412b756d90468457dadefbf + md5: 47466a871ae17d609100c6a30ab8bfeb + depends: + - __osx >=11.0 + - libabseil * cxx17* + - libabseil >=20240722.0,<20240723.0a0 + - libcxx >=18 + - libopenvino 2024.6.0 h97facdf_3 + - libprotobuf >=5.28.3,<5.28.4.0a0 + size: 429395 + timestamp: 1735810014213 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-paddle-frontend-2024.6.0-h6e6c283_3.conda + sha256: 0bdda5736fb811ee294305815d6d4d804f4354519b4a3deeca3f2ed1823301af + md5: 4351acead8a0e9a6eea31a1855f44a32 + depends: + - libabseil * cxx17* + - libabseil >=20240722.0,<20240723.0a0 + - libopenvino 2024.6.0 hfe1841e_3 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 424301 + timestamp: 1735816887982 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.6.0-h5888daf_3.conda + sha256: a1572462e7799a24f03f959c9445c57118c8903ffc832676f333fee95ab06bfc + md5: 8bd1132dd3bcc6017ca73efa06422299 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libopenvino 2024.6.0 hac27bb2_3 + - libstdcxx >=13 + size: 1110234 + timestamp: 1735814437441 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-pytorch-frontend-2024.6.0-h5ad3122_3.conda + sha256: 354ec9ff86f2df982ee0a19443dec05e7c6a1799103c2cd0f784cbc348258d5c + md5: 59156010db667b418889987b45821306 + depends: + - libgcc >=13 + - libopenvino 2024.6.0 hd7d4d4f_3 + - libstdcxx >=13 + size: 1027323 + timestamp: 1735808529687 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-pytorch-frontend-2024.6.0-hbcac03e_3.conda + sha256: 39c568f1ba53aa2c9f9f1eeee059dfc4ddf162a2c7ea6d777ae9037eec8c7787 + md5: 0f451648bdad986680d10fe0107c02b9 + depends: + - __osx >=10.15 + - libcxx >=18 + - libopenvino 2024.6.0 h5e1b680_3 + size: 817661 + timestamp: 1735809036174 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-pytorch-frontend-2024.6.0-h286801f_3.conda + sha256: 51d7c0208ec19be686e92c912feb8f75d73d17b8d56f01052757ec948861b416 + md5: 3b259e7e34c53658748bdba62d923af3 + depends: + - __osx >=11.0 + - libcxx >=18 + - libopenvino 2024.6.0 h97facdf_3 + size: 794463 + timestamp: 1735810037589 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-pytorch-frontend-2024.6.0-he0c23c2_3.conda + sha256: 7d2cffcc03eb23cdb7676f5747621fe2a386f42d0b8fc6443f7361696f2b93dd + md5: 04ecc5110a625be12494384cbb2211bf + depends: + - libopenvino 2024.6.0 hfe1841e_3 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 696656 + timestamp: 1735816933473 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.6.0-h630ec5c_3.conda + sha256: c8b26c22017b90945e69d3dd43bbfc1ee12e0b28a4a9fdd7d58e397531a73c39 + md5: c5681cdf084833631ed5633a4e1d42fc + depends: + - __glibc >=2.17,<3.0.a0 + - libabseil * cxx17* + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libopenvino 2024.6.0 hac27bb2_3 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - libstdcxx >=13 + - snappy >=1.2.1,<1.3.0a0 + size: 1314247 + timestamp: 1735814454031 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-tensorflow-frontend-2024.6.0-h8231d02_3.conda + sha256: 671961c59db6acc79e91f8270290f5cb0d7d7ec58385da737e8afad55ee17f70 + md5: fd3268684d7b5b93ebcc169eeefd10da + depends: + - libabseil * cxx17* + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libopenvino 2024.6.0 hd7d4d4f_3 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - libstdcxx >=13 + - snappy >=1.2.1,<1.3.0a0 + size: 1220609 + timestamp: 1735808542138 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-tensorflow-frontend-2024.6.0-hacd10b5_3.conda + sha256: 10388f9044fc4dbc0917ec051a5e5a78af1eac8be1fafbb251d48c3ed0200a95 + md5: 25efa940648f08f1c1bfc6e56e5af740 + depends: + - __osx >=10.15 + - libabseil * cxx17* + - libabseil >=20240722.0,<20240723.0a0 + - libcxx >=18 + - libopenvino 2024.6.0 h5e1b680_3 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - snappy >=1.2.1,<1.3.0a0 + size: 998180 + timestamp: 1735809101490 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-tensorflow-frontend-2024.6.0-he275e1d_3.conda + sha256: 043cb1ef50c984123498d2d84dd6b41b7eba885b75024318115a9353a1b8b1f5 + md5: 045f90f2aa7c3add3198db9bdb8b291b + depends: + - __osx >=11.0 + - libabseil * cxx17* + - libabseil >=20240722.0,<20240723.0a0 + - libcxx >=18 + - libopenvino 2024.6.0 h97facdf_3 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - snappy >=1.2.1,<1.3.0a0 + size: 958238 + timestamp: 1735810097527 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-tensorflow-frontend-2024.6.0-ha83d810_3.conda + sha256: d95a215784af0b1cb64f33ed562f30a85dbec113cf99492063f3f0837c8ea549 + md5: d33484b32bff992520a369c0bc1a5a90 + depends: + - libabseil * cxx17* + - libabseil >=20240722.0,<20240723.0a0 + - libopenvino 2024.6.0 hfe1841e_3 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - snappy >=1.2.1,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 895946 + timestamp: 1735816982590 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.6.0-h5888daf_3.conda + sha256: c22c2acedb95e9c1cacb06315e83ca8f9b76232085cab928b7c425085b17ade2 + md5: dfbbe82b7a068af10f55b40837e1b942 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libopenvino 2024.6.0 hac27bb2_3 + - libstdcxx >=13 + size: 489241 + timestamp: 1735814470194 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-tensorflow-lite-frontend-2024.6.0-h5ad3122_3.conda + sha256: 691e0f73ee120f686398e295b6b981cea7b357be6317d2955c9071ba05c8f179 + md5: 54c06cbd29d19434aac5040dcd42d567 + depends: + - libgcc >=13 + - libopenvino 2024.6.0 hd7d4d4f_3 + - libstdcxx >=13 + size: 451309 + timestamp: 1735808555431 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-tensorflow-lite-frontend-2024.6.0-hbcac03e_3.conda + sha256: 9078dbbe3b840ccbf2e4dbe61fac83c773dcf1ea672e0b93eb5f98131438ea42 + md5: dcab9679d1e02f2a0e2c7da61166c076 + depends: + - __osx >=10.15 + - libcxx >=18 + - libopenvino 2024.6.0 h5e1b680_3 + size: 385380 + timestamp: 1735809134950 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-tensorflow-lite-frontend-2024.6.0-h286801f_3.conda + sha256: defecfce7ba4c70e5dd96931c868d0328645c67275732684575fa03e8898fc9b + md5: 646db4cfc8ca604e411fe66756f47034 + depends: + - __osx >=11.0 + - libcxx >=18 + - libopenvino 2024.6.0 h97facdf_3 + size: 388265 + timestamp: 1735810134888 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-tensorflow-lite-frontend-2024.6.0-he0c23c2_3.conda + sha256: 991088b87dd5dc8475725dbe2e38da4acf440004cd181800c6a50b700eccec49 + md5: 5e37d666794de8aeb58d12534dacf383 + depends: + - libopenvino 2024.6.0 hfe1841e_3 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 339694 + timestamp: 1735817028472 +- conda: https://prefix.dev/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2 + sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f + md5: 15345e56d527b330e1cacbdf58676e8f + depends: + - libgcc-ng >=9.3.0 + license: BSD-3-Clause + license_family: BSD + size: 260658 + timestamp: 1606823578035 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopus-1.3.1-hf897c2e_1.tar.bz2 + sha256: 92a87ade11af2cff41c35cf941f1a79390fde1f113f8e51e1cce30d31b7c8305 + md5: ac7534c50934ed25e4749d74b04c667a + depends: + - libgcc-ng >=9.3.0 + license: BSD-3-Clause + license_family: BSD + size: 328825 + timestamp: 1606823775764 +- conda: https://prefix.dev/conda-forge/osx-64/libopus-1.3.1-hc929b4f_1.tar.bz2 + sha256: c126fc225bece591a8f010e95ca7d010ea2d02df9251830bec24a19bf823fc31 + md5: 380b9ea5f6a7a277e6c1ac27d034369b + license: BSD-3-Clause + license_family: BSD + size: 279983 + timestamp: 1606823633642 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopus-1.3.1-h27ca646_1.tar.bz2 + sha256: e9912101a58cbc609a1917c5289f3bd1f600c82ed3a1c90a6dd4ca02df77958a + md5: 3d0dbee0ccd2f6d6781d270313627b62 + license: BSD-3-Clause + license_family: BSD + size: 252854 + timestamp: 1606823635137 +- conda: https://prefix.dev/conda-forge/win-64/libopus-1.3.1-h8ffe710_1.tar.bz2 + sha256: b2e5ec193762a5b4f905f8100437370e164df3db0ea5c18b4ce09390f5d3d525 + md5: e35a6bcfeb20ea83aab21dfc50ae62a4 + depends: + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 + license: BSD-3-Clause + license_family: BSD + size: 260615 + timestamp: 1606824019288 +- conda: https://prefix.dev/conda-forge/linux-64/libpciaccess-0.18-hd590300_0.conda + sha256: c0a30ac74eba66ea76a4f0a39acc7833f5ed783a632ca3bb6665b2d81aabd2fb + md5: 48f4330bfcd959c3cfb704d424903c82 + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 28361 + timestamp: 1707101388552 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libpciaccess-0.18-h31becfc_0.conda + sha256: 0c6806dcd53da457c472cf22ad7793aef074cb198a10677a91b02c7dceeee770 + md5: 6d48179630f00e8c9ad9e30879ce1e54 + depends: + - libgcc-ng >=12 + license: MIT + license_family: MIT + size: 29211 + timestamp: 1707101477910 +- conda: https://prefix.dev/conda-forge/linux-64/libpng-1.6.47-h943b412_0.conda + sha256: 23367d71da58c9a61c8cbd963fcffb92768d4ae5ffbef9a47cdf1f54f98c5c36 + md5: 55199e2ae2c3651f6f9b2a447b47bdc9 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + license: zlib-acknowledgement + size: 288701 + timestamp: 1739952993639 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libpng-1.6.47-hec79eb8_0.conda + sha256: 3861a65106a5f876eff3fc19042c3edb528216114b9f8e64b37aebf003deda11 + md5: c4b1ba0d7cef5002759d2f156722feee + depends: + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + license: zlib-acknowledgement + size: 291536 + timestamp: 1739957375872 +- conda: https://prefix.dev/conda-forge/osx-64/libpng-1.6.47-h3c4a55f_0.conda + sha256: d00a144698debb226a01646c72eff15917eb0143f92c92e1b61ce457d9367b89 + md5: 8461ab86d2cdb76d6e971aab225be73f + depends: + - __osx >=10.13 + - libzlib >=1.3.1,<2.0a0 + license: zlib-acknowledgement + size: 266874 + timestamp: 1739953034029 +- conda: https://prefix.dev/conda-forge/osx-arm64/libpng-1.6.47-h3783ad8_0.conda + sha256: dc93cc30f59b28e7812c6f14d2c2e590b509c38092cce7ababe6b23541b7ed8f + md5: 3550e05e3af94a3fa9cef2694417ccdf + depends: + - __osx >=11.0 + - libzlib >=1.3.1,<2.0a0 + license: zlib-acknowledgement + size: 259332 + timestamp: 1739953032676 +- conda: https://prefix.dev/conda-forge/win-64/libpng-1.6.47-had7236b_0.conda + sha256: cf8a594b697de103025dcae2c917ec9c100609caf7c917a94c64a683cb1db1ac + md5: 7d717163d9dab337c65f2bf21a676b8f + depends: + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: zlib-acknowledgement + size: 346101 + timestamp: 1739953426806 +- conda: https://prefix.dev/conda-forge/linux-64/libpq-17.4-h27ae623_1.conda + sha256: ba2fd74be9d8c38489b9c6c18fa2fa87437dac76dfe285f86425c1b815e59fa2 + md5: 37fba334855ef3b51549308e61ed7a3d + depends: + - __glibc >=2.17,<3.0.a0 + - icu >=75.1,<76.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libgcc >=13 + - openldap >=2.6.9,<2.7.0a0 + - openssl >=3.4.1,<4.0a0 + license: PostgreSQL + size: 2736307 + timestamp: 1743504522214 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libpq-17.4-hf590da8_1.conda + sha256: 6d962dd2e239d552ad01b9de6ae688264f7f2d3aba609199312d129e0b4935af + md5: 10fdc78be541c9017e2144f86d092aa2 + depends: + - icu >=75.1,<76.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libgcc >=13 + - openldap >=2.6.9,<2.7.0a0 + - openssl >=3.4.1,<4.0a0 + license: PostgreSQL + size: 2682528 + timestamp: 1743504484249 +- conda: https://prefix.dev/conda-forge/osx-64/libpq-17.4-h9c5cfc2_1.conda + sha256: 3b9f9291c30765bc26cafcfa6cdd93efb3ee91f671fd94cbf44c9a81cf10b4e7 + md5: 01573599dbdb0a0ac9cf5d50355dc085 + depends: + - __osx >=10.13 + - icu >=75.1,<76.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - openldap >=2.6.9,<2.7.0a0 + - openssl >=3.4.1,<4.0a0 + license: PostgreSQL + size: 2466372 + timestamp: 1743504787138 +- conda: https://prefix.dev/conda-forge/osx-arm64/libpq-17.4-h6896619_1.conda + sha256: 7ea6665e3a9e5ab87d4dde16a8ee2bff295b71cd1b8d77d41437c030f1c39d11 + md5: 7003d9c4232f2fa496505148cd0f93f1 + depends: + - __osx >=11.0 + - icu >=75.1,<76.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - openldap >=2.6.9,<2.7.0a0 + - openssl >=3.4.1,<4.0a0 + license: PostgreSQL + size: 2575311 + timestamp: 1743504740045 +- conda: https://prefix.dev/conda-forge/linux-64/libprotobuf-5.28.3-h6128344_1.conda + sha256: 51125ebb8b7152e4a4e69fd2398489c4ec8473195c27cde3cbdf1cb6d18c5493 + md5: d8703f1ffe5a06356f06467f1d0b9464 + depends: + - __glibc >=2.17,<3.0.a0 + - libabseil * cxx17* + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2960815 + timestamp: 1735577210663 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libprotobuf-5.28.3-h44a3b7b_1.conda + sha256: ecb69f2b1668e784b41ba667493be846662d5ef702bef64fb2e013bb1364cdc4 + md5: 68f807f7cc13951652bbe048253fd405 + depends: + - libabseil * cxx17* + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2788074 + timestamp: 1735576315676 +- conda: https://prefix.dev/conda-forge/osx-64/libprotobuf-5.28.3-h6401091_1.conda + sha256: 7bd8467402040312cf1030d98427b6bdce9905e519a1979cd7aa5f0fb0902cad + md5: 5601e7ce099eb72741e9cd6413f42a07 + depends: + - __osx >=10.13 + - libabseil * cxx17* + - libabseil >=20240722.0,<20240723.0a0 + - libcxx >=18 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2312598 + timestamp: 1735576514825 +- conda: https://prefix.dev/conda-forge/osx-arm64/libprotobuf-5.28.3-h3bd63a1_1.conda + sha256: f58a16b13ad53346903c833e266f83c3d770a43a432659b98710aed85ca885e7 + md5: bdbfea4cf45ae36652c6bbcc2e7ebe91 + depends: + - __osx >=11.0 + - libabseil * cxx17* + - libabseil >=20240722.0,<20240723.0a0 + - libcxx >=18 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2271580 + timestamp: 1735576361997 +- conda: https://prefix.dev/conda-forge/win-64/libprotobuf-5.28.3-h8309712_1.conda + sha256: 78c1b917d50c0317579bd9a5714a6d544d69786fd3228a4201dc4e8710ef6348 + md5: 3be9f2fb7dce19d66d5cf1003a34b0e1 + depends: + - libabseil * cxx17* + - libabseil >=20240722.0,<20240723.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 6172959 + timestamp: 1735577517299 +- conda: https://prefix.dev/conda-forge/linux-64/libraw-0.21.3-hca62329_0.conda + sha256: 4b483d963686bcc1fbe225c41f48a2ec206bc97e1d9d1c16fac2d6b5709240b8 + md5: e99091d245425cf089b814107b40c349 + depends: + - __glibc >=2.17,<3.0.a0 + - _openmp_mutex >=4.5 + - lcms2 >=2.16,<3.0a0 + - libgcc >=13 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.1-only + license_family: LGPL + size: 640729 + timestamp: 1726766159397 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libraw-0.21.3-hf20323b_0.conda + sha256: 94c4fe562d9f962f89e28140e04fe53868e2886e12434b834f62de9a4f7970df + md5: 885621c9ba4186c2b88c5033d301bb72 + depends: + - _openmp_mutex >=4.5 + - lcms2 >=2.16,<3.0a0 + - libgcc >=13 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.1-only + license_family: LGPL + size: 650078 + timestamp: 1726766243482 +- conda: https://prefix.dev/conda-forge/osx-64/libraw-0.21.3-h8f7feda_0.conda + sha256: 6b1cebffeedbc8d3ccf203b71e488361893060ac0172c1e8812ef1fda031484d + md5: ea73d5e8ffd5f89389303c681d48ea2b + depends: + - __osx >=10.13 + - lcms2 >=2.16,<3.0a0 + - libcxx >=17 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.1-only + license_family: LGPL + size: 581665 + timestamp: 1726766248079 +- conda: https://prefix.dev/conda-forge/osx-arm64/libraw-0.21.3-hee66ff5_0.conda + sha256: 0a3d149cdd05eda13ff7bf99ed55cd52e26ae641d8bdb52386e440e118a8eb87 + md5: d2072e65b6784cf0b6000ac59f03640d + depends: + - __osx >=11.0 + - lcms2 >=2.16,<3.0a0 + - libcxx >=17 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.1-only + license_family: LGPL + size: 582358 + timestamp: 1726766236233 +- conda: https://prefix.dev/conda-forge/win-64/libraw-0.21.3-h0f5434b_0.conda + sha256: 0d2610b684cd8712bdcf0873b17b1fa3d7ce1105550264b7fd91b184a00d1a28 + md5: 075f3d5fe250279afc5d9b221d71f84b + depends: + - lcms2 >=2.16,<3.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.1-only + license_family: LGPL + size: 489267 + timestamp: 1726766863050 +- conda: https://prefix.dev/conda-forge/linux-64/librsvg-2.58.4-h49af25d_2.conda + sha256: 475013475a3209c24a82f9e80c545d56ccca2fa04df85952852f3d73caa38ff9 + md5: b9846db0abffb09847e2cb0fec4b4db6 + depends: + - __glibc >=2.17,<3.0.a0 + - cairo >=1.18.2,<2.0a0 + - freetype >=2.12.1,<3.0a0 + - gdk-pixbuf >=2.42.12,<3.0a0 + - harfbuzz >=10.1.0,<11.0a0 + - libgcc >=13 + - libglib >=2.82.2,<3.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libxml2 >=2.13.5,<3.0a0 + - pango >=1.54.0,<2.0a0 + constrains: + - __glibc >=2.17 + license: LGPL-2.1-or-later + size: 6342757 + timestamp: 1734902068235 +- conda: https://prefix.dev/conda-forge/linux-aarch64/librsvg-2.58.4-h9b423fc_2.conda + sha256: 6ce5fb6eb20e8754c025a8f758b5ecaf071f00751fed570063719a8feb792208 + md5: 57122e6d1d085802579a32ec502c6699 + depends: + - cairo >=1.18.2,<2.0a0 + - freetype >=2.12.1,<3.0a0 + - gdk-pixbuf >=2.42.12,<3.0a0 + - harfbuzz >=10.1.0,<11.0a0 + - libgcc >=13 + - libglib >=2.82.2,<3.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libxml2 >=2.13.5,<3.0a0 + - pango >=1.54.0,<2.0a0 + constrains: + - __glibc >=2.17 + license: LGPL-2.1-or-later + size: 6019802 + timestamp: 1734908318062 +- conda: https://prefix.dev/conda-forge/osx-64/librsvg-2.58.4-h21a6cfa_3.conda + sha256: 87432fca28ddfaaf82b3cd12ce4e31fcd963428d1f2c5e2a3aef35dd30e56b71 + md5: 213dcdb373bf108d1beb18d33075f51d + depends: + - __osx >=10.13 + - cairo >=1.18.4,<2.0a0 + - gdk-pixbuf >=2.42.12,<3.0a0 + - libglib >=2.84.0,<3.0a0 + - libxml2 >=2.13.7,<3.0a0 + - pango >=1.56.3,<2.0a0 + constrains: + - __osx >=10.13 + license: LGPL-2.1-or-later + size: 4946543 + timestamp: 1743368938616 +- conda: https://prefix.dev/conda-forge/osx-arm64/librsvg-2.58.4-h266df6f_3.conda + sha256: 0ec066d7f22bcd9acb6ca48b2e6a15e9be4f94e67cb55b0a2c05a37ac13f9315 + md5: 95d6ad8fb7a2542679c08ce52fafbb6c + depends: + - __osx >=11.0 + - cairo >=1.18.4,<2.0a0 + - gdk-pixbuf >=2.42.12,<3.0a0 + - libglib >=2.84.0,<3.0a0 + - libxml2 >=2.13.7,<3.0a0 + - pango >=1.56.3,<2.0a0 + constrains: + - __osx >=11.0 + license: LGPL-2.1-or-later + size: 4607782 + timestamp: 1743369546790 +- conda: https://prefix.dev/conda-forge/win-64/librsvg-2.58.4-h5ce5fed_3.conda + sha256: 8910bc40a52f2b979ced95137f09b8faf0113e14c430ca8fa7dd94dc88dafb83 + md5: 34fefcb3aed33ea39f1b040f5b9849e3 + depends: + - cairo >=1.18.4,<2.0a0 + - gdk-pixbuf >=2.42.12,<3.0a0 + - libglib >=2.84.0,<3.0a0 + - libxml2 >=2.13.7,<3.0a0 + - pango >=1.56.3,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.42.34438 + license: LGPL-2.1-or-later + size: 3919170 + timestamp: 1743369262131 +- conda: https://prefix.dev/conda-forge/linux-64/libsndfile-1.2.2-hc60ed4a_1.conda + sha256: f709cbede3d4f3aee4e2f8d60bd9e256057f410bd60b8964cb8cf82ec1457573 + md5: ef1910918dd895516a769ed36b5b3a4e + depends: + - lame >=3.100,<3.101.0a0 + - libflac >=1.4.3,<1.5.0a0 + - libgcc-ng >=12 + - libogg >=1.3.4,<1.4.0a0 + - libopus >=1.3.1,<2.0a0 + - libstdcxx-ng >=12 + - libvorbis >=1.3.7,<1.4.0a0 + - mpg123 >=1.32.1,<1.33.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 354372 + timestamp: 1695747735668 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libsndfile-1.2.2-h79657aa_1.conda + sha256: 8fcd5e45d6fb071e8baf492ebb8710203fd5eedf0cb791e007265db373c89942 + md5: ad8e62c0faec46b1442f960489c80b49 + depends: + - lame >=3.100,<3.101.0a0 + - libflac >=1.4.3,<1.5.0a0 + - libgcc-ng >=12 + - libogg >=1.3.4,<1.4.0a0 + - libopus >=1.3.1,<2.0a0 + - libstdcxx-ng >=12 + - libvorbis >=1.3.7,<1.4.0a0 + - mpg123 >=1.32.1,<1.33.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 396501 + timestamp: 1695747749825 +- conda: https://prefix.dev/conda-forge/linux-64/libspnav-1.1-h4ab18f5_2.conda + sha256: f1a8e35164ffb686fa08794c655b7793e2f15fed2b7c1b27c2e7a7e86d5081f8 + md5: e2b57c40774ddd61f112d66d8323b157 + depends: + - libgcc-ng >=12 + - xorg-libx11 >=1.8.4,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 92594 + timestamp: 1716963514988 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libspnav-1.1-h68df207_2.conda + sha256: b59985c397e0b8cfbc1fa5add725a2e21dc8d0603ce3d98130290053ff2e0817 + md5: b7b0510def0c00c6911f757c4553cc54 + depends: + - libgcc-ng >=12 + - xorg-libx11 >=1.8.4,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 76492 + timestamp: 1716963604586 +- conda: https://prefix.dev/conda-forge/linux-64/libsqlite-3.49.1-hee588c1_2.conda + sha256: a086289bf75c33adc1daed3f1422024504ffb5c3c8b3285c49f025c29708ed16 + md5: 962d6ac93c30b1dfc54c9cccafd1003e + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + license: Unlicense + size: 918664 + timestamp: 1742083674731 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libsqlite-3.49.1-h5eb1b54_2.conda + sha256: c0eb05c6db32b52cc80e06a2badfa11fbaa66b49f1e7cff77aa691b74a294dcc + md5: 7c45959e187fd3313f9f1734464baecc + depends: + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + license: Unlicense + size: 916419 + timestamp: 1742083699438 +- conda: https://prefix.dev/conda-forge/osx-64/libsqlite-3.49.1-hdb6dae5_2.conda + sha256: 82695c9b16a702de615c8303387384c6ec5cf8b98e16458e5b1935b950e4ec38 + md5: 1819e770584a7e83a81541d8253cbabe + depends: + - __osx >=10.13 + - libzlib >=1.3.1,<2.0a0 + license: Unlicense + size: 977701 + timestamp: 1742083869897 +- conda: https://prefix.dev/conda-forge/osx-arm64/libsqlite-3.49.1-h3f77e49_2.conda + sha256: 907a95f73623c343fc14785cbfefcb7a6b4f2bcf9294fcb295c121611c3a590d + md5: 3b1e330d775170ac46dff9a94c253bd0 + depends: + - __osx >=11.0 + - libzlib >=1.3.1,<2.0a0 + license: Unlicense + size: 900188 + timestamp: 1742083865246 +- conda: https://prefix.dev/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda + sha256: c092d42d00fd85cf609cc58574ba2b03c141af5762283f36f5dd445ef7c0f4fe + md5: b58b66d4ad1aaf1c2543cbbd6afb1a59 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Unlicense + size: 1081292 + timestamp: 1742083956001 +- conda: https://prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda + sha256: 0407ac9fda2bb67e11e357066eff144c845801d00b5f664efbc48813af1e7bb9 + md5: be2de152d8073ef1c01b7728475f2fe7 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.0,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 304278 + timestamp: 1732349402869 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libssh2-1.11.1-ha41c0db_0.conda + sha256: 40f2af5357457546bd11cd64a3b9043d83865180f65ce602515c35f353be35c7 + md5: aeffe03c0e598f015aab08dbb04f6ee4 + depends: + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.0,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 311577 + timestamp: 1732349396421 +- conda: https://prefix.dev/conda-forge/osx-64/libssh2-1.11.1-h3dc7d44_0.conda + sha256: ef2a81c9a15080b996a37f0e1712881da90a710b234e63d8539d69892353de90 + md5: b1caec4561059e43a5d056684c5a2de0 + depends: + - __osx >=10.13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.0,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 283874 + timestamp: 1732349525684 +- conda: https://prefix.dev/conda-forge/osx-arm64/libssh2-1.11.1-h9cc3647_0.conda + sha256: f7047c6ed44bcaeb04432e8c74da87591940d091b0a3940c0d884b7faa8062e9 + md5: ddc7194676c285513706e5fc64f214d7 + depends: + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.0,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 279028 + timestamp: 1732349599461 +- conda: https://prefix.dev/conda-forge/win-64/libssh2-1.11.1-he619c9f_0.conda + sha256: 4b3256bd2b4e4b3183005d3bd8826d651eccd1a4740b70625afa2b7e7123d191 + md5: af0cbf037dd614c34399b3b3e568c557 + depends: + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.0,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 291889 + timestamp: 1732349796504 +- conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-14.2.0-h8f9b012_2.conda + sha256: 8f5bd92e4a24e1d35ba015c5252e8f818898478cb3bc50bd8b12ab54707dc4da + md5: a78c856b6dc6bf4ea8daeb9beaaa3fb0 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc 14.2.0 h767d61c_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 3884556 + timestamp: 1740240685253 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-14.2.0-h3f4de04_2.conda + sha256: c30a74bc996013907f6d9f344da007c26d98ef9a0831151cd50aece3125c45d5 + md5: eadee2cda99697e29411c1013c187b92 + depends: + - libgcc 14.2.0 he277a41_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 3810779 + timestamp: 1740241094774 +- conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_2.conda + sha256: e86f38b007cf97cc2c67cd519f2de12a313c4ee3f5ef11652ad08932a5e34189 + md5: c75da67f045c2627f59e6fcb5f4e3a9b + depends: + - libstdcxx 14.2.0 h8f9b012_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 53830 + timestamp: 1740240722530 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-ng-14.2.0-hf1166c9_2.conda + sha256: 0107886ead6f255956d8e520f8dff260f9ab3d0d51512f18c52710c406e4b2df + md5: c934c1fddad582fcc385b608eb06a70c + depends: + - libstdcxx 14.2.0 h3f4de04_2 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 53715 + timestamp: 1740241126343 +- conda: https://prefix.dev/conda-forge/linux-64/libsystemd0-256.9-h2774228_0.conda + sha256: a93e45c12c2954942a994ff3ffc8b9a144261288032da834ed80a6210708ad49 + md5: 7b283ff97a87409a884bc11283855c17 + depends: + - __glibc >=2.17,<3.0.a0 + - libcap >=2.71,<2.72.0a0 + - libgcc >=13 + - libgcrypt-lib >=1.11.0,<2.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: LGPL-2.1-or-later + size: 410424 + timestamp: 1733312416327 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libsystemd0-256.9-hd54d049_0.conda + sha256: d04ea4fa1b3282029039ec28054f53b0c5b3ef044303450e5684e2a690e7aa52 + md5: 9ee06ecb3e342bf03e163af5080acd9f + depends: + - libcap >=2.71,<2.72.0a0 + - libgcc >=13 + - libgcrypt-lib >=1.11.0,<2.0a0 + - lz4-c >=1.9.3,<1.10.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: LGPL-2.1-or-later + size: 430930 + timestamp: 1733311785480 +- conda: https://prefix.dev/conda-forge/linux-64/libtheora-1.1.1-h4ab18f5_1006.conda + sha256: 50c8cd416ac8425e415264de167b41ae8442de22a91098dfdd993ddbf9f13067 + md5: 553281a034e9cf8693c9df49f6c78ea1 + depends: + - libgcc-ng >=12 + - libogg 1.3.* + - libogg >=1.3.5,<1.4.0a0 + - libvorbis 1.3.* + - libvorbis >=1.3.7,<1.4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 328924 + timestamp: 1719667859099 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libtheora-1.1.1-h68df207_1006.conda + sha256: b5a46b5f2cf1ab6734dcab65f370c6b95f1d62ed27d9d30fe06a828bcb9b239b + md5: 5786518d6e1eff2225fe56c0e5d573d8 + depends: + - libgcc-ng >=12 + - libogg 1.3.* + - libogg >=1.3.5,<1.4.0a0 + - libvorbis 1.3.* + - libvorbis >=1.3.7,<1.4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 335103 + timestamp: 1719667812650 +- conda: https://prefix.dev/conda-forge/osx-64/libtheora-1.1.1-hfdf4475_1006.conda + sha256: 72421637a05c2e99120d29a00951190644a4439c8155df9e8a8340983934db13 + md5: fc8c11f9f4edda643302e28aa0999b90 + depends: + - __osx >=10.13 + - libogg 1.3.* + - libogg >=1.3.5,<1.4.0a0 + - libvorbis 1.3.* + - libvorbis >=1.3.7,<1.4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 289472 + timestamp: 1719667988764 +- conda: https://prefix.dev/conda-forge/osx-arm64/libtheora-1.1.1-h99b78c6_1006.conda + sha256: 05d8f9a4ae6669ebf8d69ec7f62c47b197b885ff989641d8a8043a1159d50c22 + md5: 4b0af7570b8af42ac6796da8777589d1 + depends: + - __osx >=11.0 + - libogg 1.3.* + - libogg >=1.3.5,<1.4.0a0 + - libvorbis 1.3.* + - libvorbis >=1.3.7,<1.4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 282764 + timestamp: 1719667898064 +- conda: https://prefix.dev/conda-forge/win-64/libtheora-1.1.1-hc70643c_1006.conda + sha256: 7c4f8dca38604fa17d54061ff03f3e79aff78537a12e1eaf3b4a01be743b5633 + md5: 90cdca71edde0b3e549e8cbb43308208 + depends: + - libogg 1.3.* + - libogg >=1.3.5,<1.4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 160440 + timestamp: 1719668116346 +- conda: https://prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_3.conda + sha256: b224e16b88d76ea95e4af56e2bc638c603bd26a770b98d117d04541d3aafa002 + md5: 0ea6510969e1296cc19966fad481f6de + depends: + - __glibc >=2.17,<3.0.a0 + - lerc >=4.0.0,<5.0a0 + - libdeflate >=1.23,<1.24.0a0 + - libgcc >=13 + - libjpeg-turbo >=3.0.0,<4.0a0 + - liblzma >=5.6.3,<6.0a0 + - libstdcxx >=13 + - libwebp-base >=1.4.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: HPND + size: 428173 + timestamp: 1734398813264 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libtiff-4.7.0-h88f7998_3.conda + sha256: 5888bd66ba7606ae8596856c7dac800940ecad0aed77d6aa37db69d434c81cf0 + md5: 36a0ea4a173338c8725dc0807e99cf22 + depends: + - lerc >=4.0.0,<5.0a0 + - libdeflate >=1.23,<1.24.0a0 + - libgcc >=13 + - libjpeg-turbo >=3.0.0,<4.0a0 + - liblzma >=5.6.3,<6.0a0 + - libstdcxx >=13 + - libwebp-base >=1.4.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: HPND + size: 464699 + timestamp: 1734398752249 +- conda: https://prefix.dev/conda-forge/osx-64/libtiff-4.7.0-hb77a491_3.conda + sha256: bb50df7cfc1acb11eae63c5f4fdc251d381cda96bf02c086c3202c83a5200032 + md5: 6f2f9df7b093d6b33bc0c334acc7d2d9 + depends: + - __osx >=10.13 + - lerc >=4.0.0,<5.0a0 + - libcxx >=18 + - libdeflate >=1.23,<1.24.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - liblzma >=5.6.3,<6.0a0 + - libwebp-base >=1.4.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: HPND + size: 400099 + timestamp: 1734398943635 +- conda: https://prefix.dev/conda-forge/osx-arm64/libtiff-4.7.0-h551f018_3.conda + sha256: 91417846157e04992801438a496b151df89604b2e7c6775d6f701fcd0cbed5ae + md5: a5d084a957563e614ec0c0196d890654 + depends: + - __osx >=11.0 + - lerc >=4.0.0,<5.0a0 + - libcxx >=18 + - libdeflate >=1.23,<1.24.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - liblzma >=5.6.3,<6.0a0 + - libwebp-base >=1.4.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: HPND + size: 370600 + timestamp: 1734398863052 +- conda: https://prefix.dev/conda-forge/win-64/libtiff-4.7.0-h797046b_3.conda + sha256: c363a8baba4ce12b8f01f0ab74fe8b0dc83facd89c6604f4a191084923682768 + md5: defed79ff7a9164ad40320e3f116a138 + depends: + - lerc >=4.0.0,<5.0a0 + - libdeflate >=1.23,<1.24.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - liblzma >=5.6.3,<6.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.6,<1.6.0a0 + license: HPND + size: 978878 + timestamp: 1734399004259 +- conda: https://prefix.dev/conda-forge/linux-64/libudev1-257.4-h9a4d06a_0.conda + sha256: 65ebc2185cdc008f8da92864e8063e60293c59134b11b13e4bc44fd6f6e04eec + md5: 8b87f46f586167c54b2d4c0fd4a72001 + depends: + - __glibc >=2.17,<3.0.a0 + - libcap >=2.71,<2.72.0a0 + - libgcc >=13 + license: LGPL-2.1-or-later + size: 143836 + timestamp: 1741612453664 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libudev1-257.4-h1187dce_0.conda + sha256: 1389af70858732b9bf6384c2af9b1da4b261bc8d889bb6a25d853a75cbb04073 + md5: 0a0bd551a68587c7dd852324da97b853 + depends: + - libcap >=2.71,<2.72.0a0 + - libgcc >=13 + license: LGPL-2.1-or-later + size: 153980 + timestamp: 1741612457053 +- conda: https://prefix.dev/conda-forge/linux-64/libunwind-1.6.2-h9c3ff4c_0.tar.bz2 + sha256: f2ac872920833960e514ce9efd8f7c08ce66dd870738d73839d1bce1ac497de6 + md5: a730b2badd586580c5752cc73842e068 + depends: + - libgcc-ng >=9.4.0 + - libstdcxx-ng >=9.4.0 + license: MIT + license_family: MIT + size: 75491 + timestamp: 1638450786937 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libunwind-1.6.2-h01db608_0.tar.bz2 + sha256: 7862d36ffc9f6b2ed3381ce77c78b9e5691d7353a19dd2050630868e192adf6f + md5: 93b7bbf9099cfe09e67c0abe34bb7885 + depends: + - libgcc-ng >=9.4.0 + - libstdcxx-ng >=9.4.0 + license: MIT + license_family: MIT + size: 90479 + timestamp: 1638452154070 +- conda: https://prefix.dev/conda-forge/linux-64/liburing-2.9-h84d6215_0.conda + sha256: bfa34a5a929d792dfcfbbe2d9ee21bd870d73d646512e21c871dab0b80194468 + md5: ecd409e7bfcf4ee73f74d7a2cc91a4c3 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: MIT + license_family: MIT + size: 121336 + timestamp: 1738604403935 +- conda: https://prefix.dev/conda-forge/linux-aarch64/liburing-2.9-h17cf362_0.conda + sha256: 2922ab8ac4cdd966c1b13dad6ccc4c07c7db2054400843ee443ffd5e7b3f292e + md5: 8eef9430276ab3dbe6ad5b8f23ff5e26 + depends: + - libgcc >=13 + - libstdcxx >=13 + license: MIT + license_family: MIT + size: 123614 + timestamp: 1738605619021 +- conda: https://prefix.dev/conda-forge/linux-64/libusb-1.0.28-hb9d3cd8_0.conda + sha256: 9c718694bb520960f467bd82e7af512c180d6681b8fb7ef25a2401ecf343ac68 + md5: 7a7bac62e1c9adad991745d23bde0485 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libudev1 >=257.4 + license: LGPL-2.1-or-later + size: 88365 + timestamp: 1742394912983 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libusb-1.0.28-h86ecc28_0.conda + sha256: 59ca565f0c835395a1e40a2eba0c8e246321210ed26980a03f8cb3ae7205a49b + md5: 1de745e09ba49b461648a7e3cf04a91d + depends: + - libgcc >=13 + - libudev1 >=257.4 + license: LGPL-2.1-or-later + size: 90988 + timestamp: 1742394930826 +- conda: https://prefix.dev/conda-forge/osx-64/libusb-1.0.28-h6e16a3a_0.conda + sha256: 350b343c6658e776c360d40ea7e20626e8f6f2d4786de2571b36cf8a5f3eeb26 + md5: 4d32d3ced72f6b10eeed1f12be19fa06 + depends: + - __osx >=10.13 + license: LGPL-2.1-or-later + size: 82203 + timestamp: 1742395200112 +- conda: https://prefix.dev/conda-forge/osx-arm64/libusb-1.0.28-h5505292_0.conda + sha256: 268d5e15833f073057274aa0212a255730f6b57e53b42e59a3dc5fe447f7888a + md5: 3d8381cea4dc373274ddb5e996f8348b + depends: + - __osx >=11.0 + license: LGPL-2.1-or-later + size: 81149 + timestamp: 1742395160133 +- conda: https://prefix.dev/conda-forge/win-64/libusb-1.0.28-h2466b09_0.conda + sha256: dc4f92519801fa4010c24a8c0741389def8f27bd28307c2f5ae8208819713ab3 + md5: 25456fb95ad60c8bd3cb0afc7dc1720a + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.1-or-later + size: 109414 + timestamp: 1742395463411 +- conda: https://prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 + md5: 40b61aab5c7ba9ff276c41cfffe6b80b + depends: + - libgcc-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 33601 + timestamp: 1680112270483 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda + sha256: 616277b0c5f7616c2cdf36f6c316ea3f9aa5bb35f2d4476a349ab58b9b91675f + md5: 000e30b09db0b7c775b21695dff30969 + depends: + - libgcc-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 35720 + timestamp: 1680113474501 +- conda: https://prefix.dev/conda-forge/linux-64/libva-2.22.0-h4f16b4b_2.conda + sha256: e0df324fb02fa05a05824b8db886b06659432b5cff39495c59e14a37aa23d40f + md5: 2c65566e79dc11318ce689c656fb551c + depends: + - __glibc >=2.17,<3.0.a0 + - libdrm >=2.4.124,<2.5.0a0 + - libegl >=1.7.0,<2.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libglx >=1.7.0,<2.0a0 + - libxcb >=1.17.0,<2.0a0 + - wayland >=1.23.1,<2.0a0 + - wayland-protocols + - xorg-libx11 >=1.8.11,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + license: MIT + license_family: MIT + size: 217567 + timestamp: 1740897682004 +- conda: https://prefix.dev/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2 + sha256: 53080d72388a57b3c31ad5805c93a7328e46ff22fab7c44ad2a86d712740af33 + md5: 309dec04b70a3cc0f1e84a4013683bc0 + depends: + - libgcc-ng >=9.3.0 + - libogg >=1.3.4,<1.4.0a0 + - libstdcxx-ng >=9.3.0 + license: BSD-3-Clause + license_family: BSD + size: 286280 + timestamp: 1610609811627 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libvorbis-1.3.7-h01db608_0.tar.bz2 + sha256: 1ade4727be5c52b287001b8094d02af66342dfe0ba13ef69222aaaf2e9be4342 + md5: c2863ff72c6d8a59054f8b9102c206e9 + depends: + - libgcc-ng >=9.3.0 + - libogg >=1.3.4,<1.4.0a0 + - libstdcxx-ng >=9.3.0 + license: BSD-3-Clause + license_family: BSD + size: 292082 + timestamp: 1610616294416 +- conda: https://prefix.dev/conda-forge/osx-64/libvorbis-1.3.7-h046ec9c_0.tar.bz2 + sha256: fbcce1005efcd616e452dea07fe34893d8dd13c65628e74920eeb68ac549faf7 + md5: fbbda1fede0aadaa252f6919148c4ce1 + depends: + - libcxx >=11.0.0 + - libogg >=1.3.4,<1.4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 254208 + timestamp: 1610609857389 +- conda: https://prefix.dev/conda-forge/osx-arm64/libvorbis-1.3.7-h9f76cd9_0.tar.bz2 + sha256: 60457217e20d8b24a8390c81338a8fa69c8656b440c067cd82f802a09da93cb9 + md5: 92a1a88d1a1d468c19d9e1659ac8d3df + depends: + - libcxx >=11.0.0 + - libogg >=1.3.4,<1.4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 254839 + timestamp: 1610609991029 +- conda: https://prefix.dev/conda-forge/win-64/libvorbis-1.3.7-h0e60522_0.tar.bz2 + sha256: 6cdc018a024908270205d8512d92f92cf0adaaa5401c2b403757189b138bf56a + md5: e1a22282de0169c93e4ffe6ce6acc212 + depends: + - libogg >=1.3.4,<1.4.0a0 + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 + license: BSD-3-Clause + license_family: BSD + size: 273721 + timestamp: 1610610022421 +- conda: https://prefix.dev/conda-forge/linux-64/libvpx-1.14.1-hac33072_0.conda + sha256: e7d2daf409c807be48310fcc8924e481b62988143f582eb3a58c5523a6763b13 + md5: cde393f461e0c169d9ffb2fc70f81c33 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 1022466 + timestamp: 1717859935011 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libvpx-1.14.1-h0a1ffab_0.conda + sha256: 918493354f78cb3bb2c3d91264afbcb312b2afe287237e7d1c85ee7e96d15b47 + md5: 3cb63f822a49e4c406639ebf8b5d87d7 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 1211700 + timestamp: 1717859955539 +- conda: https://prefix.dev/conda-forge/osx-64/libvpx-1.14.1-hf036a51_0.conda + sha256: 47e70e76988c11de97d539794fd4b03db69b75289ac02cdc35ae5a595ffcd973 + md5: 9b8744a702ffb1738191e094e6eb67dc + depends: + - __osx >=10.13 + - libcxx >=16 + license: BSD-3-Clause + license_family: BSD + size: 1297054 + timestamp: 1717860051058 +- conda: https://prefix.dev/conda-forge/osx-arm64/libvpx-1.14.1-h7bae524_0.conda + sha256: 5d6458b5395cba0804846f156574aa8a34eef6d5f05d39e9932ddbb4215f8bd0 + md5: 95bee48afff34f203e4828444c2b2ae9 + depends: + - __osx >=11.0 + - libcxx >=16 + license: BSD-3-Clause + license_family: BSD + size: 1178981 + timestamp: 1717860096742 +- conda: https://prefix.dev/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda + sha256: c45283fd3e90df5f0bd3dbcd31f59cdd2b001d424cf30a07223655413b158eaf + md5: 63f790534398730f59e1b899c3644d4a + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + constrains: + - libwebp 1.5.0 + license: BSD-3-Clause + license_family: BSD + size: 429973 + timestamp: 1734777489810 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libwebp-base-1.5.0-h0886dbf_0.conda + sha256: b3d881a0ae08bb07fff7fa8ead506c8d2e0388733182fe4f216f3ec5d61ffcf0 + md5: 95ef4a689b8cc1b7e18b53784d88f96b + depends: + - libgcc >=13 + constrains: + - libwebp 1.5.0 + license: BSD-3-Clause + license_family: BSD + size: 362623 + timestamp: 1734779054659 +- conda: https://prefix.dev/conda-forge/osx-64/libwebp-base-1.5.0-h6cf52b4_0.conda + sha256: 7f110eba04150f1fe5fe297f08fb5b82463eed74d1f068bc67c96637f9c63569 + md5: 5e0cefc99a231ac46ba21e27ae44689f + depends: + - __osx >=10.13 + constrains: + - libwebp 1.5.0 + license: BSD-3-Clause + license_family: BSD + size: 357662 + timestamp: 1734777539822 +- conda: https://prefix.dev/conda-forge/osx-arm64/libwebp-base-1.5.0-h2471fea_0.conda + sha256: f8bdb876b4bc8cb5df47c28af29188de8911c3fea4b799a33743500149de3f4a + md5: 569466afeb84f90d5bb88c11cc23d746 + depends: + - __osx >=11.0 + constrains: + - libwebp 1.5.0 + license: BSD-3-Clause + license_family: BSD + size: 290013 + timestamp: 1734777593617 +- conda: https://prefix.dev/conda-forge/win-64/libwebp-base-1.5.0-h3b0e114_0.conda + sha256: 1d75274614e83a5750b8b94f7bad2fc0564c2312ff407e697d99152ed095576f + md5: 33f7313967072c6e6d8f865f5493c7ae + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - libwebp 1.5.0 + license: BSD-3-Clause + license_family: BSD + size: 273661 + timestamp: 1734777665516 +- conda: https://prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda + sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa + md5: 92ed62436b625154323d40d5f2f11dd7 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - pthread-stubs + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxdmcp + license: MIT + license_family: MIT + size: 395888 + timestamp: 1727278577118 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libxcb-1.17.0-h262b8f6_0.conda + sha256: 461cab3d5650ac6db73a367de5c8eca50363966e862dcf60181d693236b1ae7b + md5: cd14ee5cca2464a425b1dbfc24d90db2 + depends: + - libgcc >=13 + - pthread-stubs + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxdmcp + license: MIT + license_family: MIT + size: 397493 + timestamp: 1727280745441 +- conda: https://prefix.dev/conda-forge/osx-64/libxcb-1.17.0-hf1f96e2_0.conda + sha256: 8896cd5deff6f57d102734f3e672bc17120613647288f9122bec69098e839af7 + md5: bbeca862892e2898bdb45792a61c4afc + depends: + - __osx >=10.13 + - pthread-stubs + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxdmcp + license: MIT + license_family: MIT + size: 323770 + timestamp: 1727278927545 +- conda: https://prefix.dev/conda-forge/osx-arm64/libxcb-1.17.0-hdb1d25a_0.conda + sha256: bd3816218924b1e43b275863e21a3e13a5db4a6da74cca8e60bc3c213eb62f71 + md5: af523aae2eca6dfa1c8eec693f5b9a79 + depends: + - __osx >=11.0 + - pthread-stubs + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxdmcp + license: MIT + license_family: MIT + size: 323658 + timestamp: 1727278733917 +- conda: https://prefix.dev/conda-forge/win-64/libxcb-1.16-h013a479_1.conda + sha256: abae56e12a4c62730b899fdfb82628a9ac171c4ce144fc9f34ae024957a82a0e + md5: f0b599acdc82d5bc7e3b105833e7c5c8 + depends: + - m2w64-gcc-libs + - m2w64-gcc-libs-core + - pthread-stubs + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxdmcp + license: MIT + license_family: MIT + size: 989459 + timestamp: 1724419883091 +- conda: https://prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda + sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c + md5: 5aa797f8787fe7a17d1b0821485b5adc + depends: + - libgcc-ng >=12 + license: LGPL-2.1-or-later + size: 100393 + timestamp: 1702724383534 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda + sha256: 6b46c397644091b8a26a3048636d10b989b1bf266d4be5e9474bf763f828f41f + md5: b4df5d7d4b63579d081fd3a4cf99740e + depends: + - libgcc-ng >=12 + license: LGPL-2.1-or-later + size: 114269 + timestamp: 1702724369203 +- conda: https://prefix.dev/conda-forge/linux-64/libxkbcommon-1.8.1-hc4a0caf_0.conda + sha256: 61a282353fcc512b5643ee58898130f5c7f8757c329a21fe407a3ef397d449eb + md5: e7e5b0652227d646b44abdcbd989da7b + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libxcb >=1.17.0,<2.0a0 + - libxml2 >=2.13.6,<3.0a0 + - xkeyboard-config + - xorg-libxau >=1.0.12,<2.0a0 + license: MIT/X11 Derivative + license_family: MIT + size: 644992 + timestamp: 1741762262672 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libxkbcommon-1.8.1-h2ef6bd0_0.conda + sha256: bd9fd407ddef1aa0c1322623b29f9175312738e3ed91060d42c1712abc6b304e + md5: 8abc18afd93162a37d25fd244bf62ab5 + depends: + - libgcc >=13 + - libstdcxx >=13 + - libxcb >=1.17.0,<2.0a0 + - libxml2 >=2.13.6,<3.0a0 + - xkeyboard-config + - xorg-libxau >=1.0.12,<2.0a0 + license: MIT/X11 Derivative + license_family: MIT + size: 660274 + timestamp: 1741762322077 +- conda: https://prefix.dev/conda-forge/linux-64/libxml2-2.13.7-h8d12d68_0.conda + sha256: 98f0a11d6b52801daaeefd00bfb38078f439554d64d2e277d92f658faefac366 + md5: 109427e5576d0ce9c42257c2421b1680 + depends: + - __glibc >=2.17,<3.0.a0 + - icu >=75.1,<76.0a0 + - libgcc >=13 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.6.4,<6.0a0 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 691755 + timestamp: 1743091084063 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-2.13.7-h2e0c361_0.conda + sha256: b0ec06948e94ef42e498b4a9ace3da673636a41d6a53c713194ac843cd989ad9 + md5: 745fbda3e667084d1fb00e64cdfeaff6 + depends: + - icu >=75.1,<76.0a0 + - libgcc >=13 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.6.4,<6.0a0 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 734486 + timestamp: 1743091228481 +- conda: https://prefix.dev/conda-forge/osx-64/libxml2-2.13.7-hebb159f_0.conda + sha256: 21119df0a2267a9fc52d67bdf55e5449a2cdcc799865e2f90ab734fd61234ed8 + md5: 45786cf4067df4fbe9faf3d1c25d3acf + depends: + - __osx >=10.13 + - icu >=75.1,<76.0a0 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.6.4,<6.0a0 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 609769 + timestamp: 1743091248758 +- conda: https://prefix.dev/conda-forge/osx-arm64/libxml2-2.13.7-h178c5d8_0.conda + sha256: d3ddc9ae8a5474f16f213ca41b3eda394e1eb1253f3ac85d3c6c99adcfb226d8 + md5: aa838a099ba09429cb80cc876b032ac4 + depends: + - __osx >=11.0 + - icu >=75.1,<76.0a0 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.6.4,<6.0a0 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 582736 + timestamp: 1743091513375 +- conda: https://prefix.dev/conda-forge/win-64/libxml2-2.13.7-he286e8c_0.conda + sha256: 99182f93f1e7b678534df5f07ff94d7bf13a51386050f8fa9411fec764d0f39f + md5: aec4cf455e4c6cc2644abb348de7ff20 + depends: + - libiconv >=1.18,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 1513490 + timestamp: 1743091551681 +- conda: https://prefix.dev/conda-forge/linux-64/libxslt-1.1.39-h76b75d6_0.conda + sha256: 684e9b67ef7b9ca0ca993762eeb39705ec58e2e7f958555c758da7ef416db9f3 + md5: e71f31f8cfb0a91439f2086fc8aa0461 + depends: + - libgcc-ng >=12 + - libxml2 >=2.12.1,<3.0.0a0 + license: MIT + license_family: MIT + size: 254297 + timestamp: 1701628814990 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libxslt-1.1.39-h1cc9640_0.conda + sha256: 89ce87b5f594b2ddcd3ddf66dd3f36f85bbe3562b3f408409ccec787d7ed36a3 + md5: 13e1d3f9188e85c6d59a98651aced002 + depends: + - libgcc-ng >=12 + - libxml2 >=2.12.1,<3.0.0a0 + license: MIT + license_family: MIT + size: 260979 + timestamp: 1701628809171 +- conda: https://prefix.dev/conda-forge/osx-64/libxslt-1.1.39-h03b04e6_0.conda + sha256: decfc5614a10231a17543b7366616fb2d88c14be6dd9dd5ecde63aa9a5acfb9e + md5: a6e0cec6b3517ffc6b5d36a920fc9312 + depends: + - libxml2 >=2.12.1,<3.0.0a0 + license: MIT + license_family: MIT + size: 231368 + timestamp: 1701628933115 +- conda: https://prefix.dev/conda-forge/osx-arm64/libxslt-1.1.39-h223e5b9_0.conda + sha256: 2f1d99ef3fb960f23a63f06cf65ee621a5594a8b4616f35d9805be44617a92af + md5: 560c9cacc33e927f55b998eaa0cb1732 + depends: + - libxml2 >=2.12.1,<3.0.0a0 + license: MIT + license_family: MIT + size: 225705 + timestamp: 1701628966565 +- conda: https://prefix.dev/conda-forge/win-64/libxslt-1.1.39-h3df6e99_0.conda + sha256: 6e3d99466d2076c35e7ac8dcdfe604da3d593f55b74a5b8e96c2b2ff63c247aa + md5: 279ee338c9b34871d578cb3c7aa68f70 + depends: + - libxml2 >=2.12.1,<3.0.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 418542 + timestamp: 1701629338549 +- conda: https://prefix.dev/conda-forge/linux-64/libzip-1.11.2-h6991a6a_0.conda + sha256: 991e7348b0f650d495fb6d8aa9f8c727bdf52dabf5853c0cc671439b160dce48 + md5: a7b27c075c9b7f459f1c022090697cba + depends: + - __glibc >=2.17,<3.0.a0 + - bzip2 >=1.0.8,<2.0a0 + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 109043 + timestamp: 1730442108429 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libzip-1.11.2-h3e8f909_0.conda + sha256: 9ae7edbe6dcdaa0371736118a1e05ffa47c15c0118a092ff1b0a35cbb621ac2d + md5: faf7adbb1938c4aa7a312f110f46859b + depends: + - bzip2 >=1.0.8,<2.0a0 + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 117603 + timestamp: 1730442215935 +- conda: https://prefix.dev/conda-forge/osx-64/libzip-1.11.2-h31df5bb_0.conda + sha256: 434a4d1ad23c1c8deb7ec2da94aca05e22bc29dee445b4f7642e1c2f20fc0b0b + md5: 3cf12c97a18312c9243a895580bf5be6 + depends: + - __osx >=10.13 + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 129542 + timestamp: 1730442392952 +- conda: https://prefix.dev/conda-forge/osx-arm64/libzip-1.11.2-h1336266_0.conda + sha256: 507599a77c1ce823c2d3acaefaae4ead0686f183f3980467a4c4b8ba209eff40 + md5: 7177414f275db66735a17d316b0a81d6 + depends: + - __osx >=11.0 + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 125507 + timestamp: 1730442214849 +- conda: https://prefix.dev/conda-forge/win-64/libzip-1.11.2-h3135430_0.conda + sha256: 8ed49d8aa0ff908e16c82f92154174027c8906429e8b63d71f0b27ecc987b43e + md5: 09066edc7810e4bd1b41ad01a6cc4706 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 146856 + timestamp: 1730442305774 +- conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda + sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4 + md5: edb0dca6bc32e4f4789199455a1dbeb8 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + constrains: + - zlib 1.3.1 *_2 + license: Zlib + license_family: Other + size: 60963 + timestamp: 1727963148474 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda + sha256: 5a2c1eeef69342e88a98d1d95bff1603727ab1ff4ee0e421522acd8813439b84 + md5: 08aad7cbe9f5a6b460d0976076b6ae64 + depends: + - libgcc >=13 + constrains: + - zlib 1.3.1 *_2 + license: Zlib + license_family: Other + size: 66657 + timestamp: 1727963199518 +- conda: https://prefix.dev/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda + sha256: 8412f96504fc5993a63edf1e211d042a1fd5b1d51dedec755d2058948fcced09 + md5: 003a54a4e32b02f7355b50a837e699da + depends: + - __osx >=10.13 + constrains: + - zlib 1.3.1 *_2 + license: Zlib + license_family: Other + size: 57133 + timestamp: 1727963183990 +- conda: https://prefix.dev/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda + sha256: ce34669eadaba351cd54910743e6a2261b67009624dbc7daeeafdef93616711b + md5: 369964e85dc26bfe78f41399b366c435 + depends: + - __osx >=11.0 + constrains: + - zlib 1.3.1 *_2 + license: Zlib + license_family: Other + size: 46438 + timestamp: 1727963202283 +- conda: https://prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda + sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402 + md5: 41fbfac52c601159df6c01f875de31b9 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - zlib 1.3.1 *_2 + license: Zlib + license_family: Other + size: 55476 + timestamp: 1727963768015 +- conda: https://prefix.dev/conda-forge/osx-64/llvm-openmp-20.1.1-ha54dae1_1.conda + sha256: 2aeb63d771120fc7a8129ca81417c07cea09e3a0f47e097f1967a9c24888f5cf + md5: a1c6289fb8ae152b8cb53a535639c2c7 + depends: + - __osx >=10.13 + constrains: + - openmp 20.1.1|20.1.1.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 306748 + timestamp: 1742533059358 +- conda: https://prefix.dev/conda-forge/osx-arm64/llvm-openmp-20.1.1-hdb05f8b_1.conda + sha256: ae57041a588cd190cb55b602c1ed0ef3604ce28d3891515386a85693edd3c175 + md5: 97236e94c3a82367c5fe3a90557e6207 + depends: + - __osx >=11.0 + constrains: + - openmp 20.1.1|20.1.1.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 282105 + timestamp: 1742533199558 +- conda: https://prefix.dev/conda-forge/linux-64/loguru-0.7.2-py312h7900ff3_2.conda + sha256: e5477e3fa7b4ef070e9ecae619cfc5845e14e3cdac8fbb2d158a03d51f967bef + md5: fddd3092f921be8e01b18f2a0266d98f + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + size: 123047 + timestamp: 1725349857430 +- conda: https://prefix.dev/conda-forge/linux-aarch64/loguru-0.7.2-py312h8025657_2.conda + sha256: adccfa12dc866260f568f5d2a4bfac6c9142fdb68c4f70b765d0027e72e4b783 + md5: ffae73022f1e85223fd1f2f7de8cf1b4 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + size: 123218 + timestamp: 1725350987665 +- conda: https://prefix.dev/conda-forge/osx-64/loguru-0.7.2-py312hb401068_2.conda + sha256: e898a7db07218700ca81ccd2eb4ad045e740c88773a32ec0fdb9f2b5a0873795 + md5: 782d363c536ff818265a294b68f67127 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + size: 122974 + timestamp: 1725349903912 +- conda: https://prefix.dev/conda-forge/osx-arm64/loguru-0.7.2-py312h81bd7bf_2.conda + sha256: 09c51d5b2c07232c9fa84bdd6f2c6f98536d3a2568ba427ab1d45b634bd30bf4 + md5: c4bf17db944569f3b0e2e100c91c54e2 + depends: + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: MIT + license_family: MIT + size: 123434 + timestamp: 1725349952242 +- conda: https://prefix.dev/conda-forge/win-64/loguru-0.7.2-py312h2e8e312_2.conda + sha256: a739c06ba1c020429dd7d5112ecc8c7b109b908d0b38162401a385895905d2c7 + md5: 01232802799e9861f3f9a61d4ac8ab0b + depends: + - colorama >=0.3.4 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - win32_setctime >=1.0.0 + license: MIT + license_family: MIT + size: 123536 + timestamp: 1725349948294 +- conda: https://prefix.dev/conda-forge/linux-64/lxml-5.3.1-py312he28fd5a_0.conda + sha256: 4f3a78b59890f2175a381d9ae5e74b4523aea23daaa01cafbb150456bc8b857c + md5: 52d16dd592060d4b2fa9ad325e0c1f90 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libxml2 >=2.13.5,<3.0a0 + - libxslt >=1.1.39,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause and MIT-CMU + size: 1403423 + timestamp: 1739211901003 +- conda: https://prefix.dev/conda-forge/linux-aarch64/lxml-5.3.1-py312h1ce91a6_0.conda + sha256: 3baea907da0c3e5e790c37b33076f8b6710f7d1aa3f229ce7961e058fe1b5e3c + md5: 0fe03396056920d90be316208305e9fe + depends: + - libgcc >=13 + - libxml2 >=2.13.5,<3.0a0 + - libxslt >=1.1.39,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause and MIT-CMU + size: 1329503 + timestamp: 1739211881865 +- conda: https://prefix.dev/conda-forge/osx-64/lxml-5.3.1-py312h91b2f42_0.conda + sha256: 9d8caf0b13e42a214f47f21e4a4696a7de37e81b182fb88c0e922b5940fb716e + md5: a1b3a0206fc6c434fadc25d818002b82 + depends: + - __osx >=10.13 + - libxml2 >=2.13.5,<3.0a0 + - libxslt >=1.1.39,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause and MIT-CMU + size: 1236870 + timestamp: 1739212062656 +- conda: https://prefix.dev/conda-forge/osx-arm64/lxml-5.3.1-py312h9535dd2_0.conda + sha256: b899871ecf3f331e3047295897809758a02a144e4118f1378ca443c62772cd2c + md5: f9d4307bbe7d394ac3634fe85a4c0e94 + depends: + - __osx >=11.0 + - libxml2 >=2.13.5,<3.0a0 + - libxslt >=1.1.39,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause and MIT-CMU + size: 1200955 + timestamp: 1739212041952 +- conda: https://prefix.dev/conda-forge/win-64/lxml-5.3.1-py312h53bce91_0.conda + sha256: 78519f3a92e8e284792b9b13d4240643b47b3c1902b2288e2a4dfeb83f78e787 + md5: c86f153c26b4d6235de9e19eafc01ce8 + depends: + - libxml2 >=2.13.5,<3.0a0 + - libxslt >=1.1.39,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause and MIT-CMU + size: 1045295 + timestamp: 1739212451593 +- conda: https://prefix.dev/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda + sha256: 1b4c105a887f9b2041219d57036f72c4739ab9e9fe5a1486f094e58c76b31f5f + md5: 318b08df404f9c9be5712aaa5a6f0bb0 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 143402 + timestamp: 1674727076728 +- conda: https://prefix.dev/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda + sha256: 076870eb72411f41c46598c7582a2f3f42ba94c526a2d60a0c8f70a0a7a64429 + md5: 500145a83ed07ce79c8cef24252f366b + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 163770 + timestamp: 1674727020254 +- conda: https://prefix.dev/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda + sha256: 39aa0c01696e4e202bf5e337413de09dfeec061d89acd5f28e9968b4e93c3f48 + md5: aa04f7143228308662696ac24023f991 + depends: + - libcxx >=14.0.6 + license: BSD-2-Clause + license_family: BSD + size: 156415 + timestamp: 1674727335352 +- conda: https://prefix.dev/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda + sha256: fc343b8c82efe40819b986e29ba748366514e5ab94a1e1138df195af5f45fa24 + md5: 45505bec548634f7d05e02fb25262cb9 + depends: + - libcxx >=14.0.6 + license: BSD-2-Clause + license_family: BSD + size: 141188 + timestamp: 1674727268278 +- conda: https://prefix.dev/conda-forge/win-64/lz4-c-1.9.4-hcfcfb64_0.conda + sha256: a0954b4b1590735ea5f3d0f4579c3883f8ac837387afd5b398b241fda85124ab + md5: e34720eb20a33fc3bfb8451dd837ab7a + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 134235 + timestamp: 1674728465431 +- conda: https://prefix.dev/conda-forge/win-64/m2w64-gcc-libgfortran-5.3.0-6.tar.bz2 + sha256: 9de95a7996d5366ae0808eef2acbc63f9b11b874aa42375f55379e6715845dc6 + md5: 066552ac6b907ec6d72c0ddab29050dc + depends: + - m2w64-gcc-libs-core + - msys2-conda-epoch ==20160418 + license: GPL, LGPL, FDL, custom + size: 350687 + timestamp: 1608163451316 +- conda: https://prefix.dev/conda-forge/win-64/m2w64-gcc-libs-5.3.0-7.tar.bz2 + sha256: 3bd1ab02b7c89a5b153a17be03b36d833f1517ff2a6a77ead7c4a808b88196aa + md5: fe759119b8b3bfa720b8762c6fdc35de + depends: + - m2w64-gcc-libgfortran + - m2w64-gcc-libs-core + - m2w64-gmp + - m2w64-libwinpthread-git + - msys2-conda-epoch ==20160418 + license: GPL3+, partial:GCCRLE, partial:LGPL2+ + size: 532390 + timestamp: 1608163512830 +- conda: https://prefix.dev/conda-forge/win-64/m2w64-gcc-libs-core-5.3.0-7.tar.bz2 + sha256: 58afdfe859ed2e9a9b1cc06bc408720cb2c3a6a132e59d4805b090d7574f4ee0 + md5: 4289d80fb4d272f1f3b56cfe87ac90bd + depends: + - m2w64-gmp + - m2w64-libwinpthread-git + - msys2-conda-epoch ==20160418 + license: GPL3+, partial:GCCRLE, partial:LGPL2+ + size: 219240 + timestamp: 1608163481341 +- conda: https://prefix.dev/conda-forge/win-64/m2w64-gmp-6.1.0-2.tar.bz2 + sha256: 7e3cd95f554660de45f8323fca359e904e8d203efaf07a4d311e46d611481ed1 + md5: 53a1c73e1e3d185516d7e3af177596d9 + depends: + - msys2-conda-epoch ==20160418 + license: LGPL3 + size: 743501 + timestamp: 1608163782057 +- conda: https://prefix.dev/conda-forge/win-64/m2w64-libwinpthread-git-5.0.0.4634.697f757-2.tar.bz2 + sha256: f63a09b2cae7defae0480f1740015d6235f1861afa6fe2e2d3e10bd0d1314ee0 + md5: 774130a326dee16f1ceb05cc687ee4f0 + depends: + - msys2-conda-epoch ==20160418 + license: MIT, BSD + size: 31928 + timestamp: 1608166099896 +- conda: https://prefix.dev/conda-forge/noarch/mac_alias-2.2.2-pyhd8ed1ab_1.conda + sha256: 647d36be0ce8a64ff918ff529260bb810804fa00f47131a61f6d3ff3a927a8ab + md5: 4e509c8060b79794ca29cc098a4db38d + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 26083 + timestamp: 1735145557445 +- conda: https://prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_1.conda + sha256: 4a6bf68d2a2b669fecc9a4a009abd1cf8e72c2289522ff00d81b5a6e51ae78f5 + md5: eb227c3e0bf58f5bd69c0532b157975b + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + size: 24604 + timestamp: 1733219911494 +- conda: https://prefix.dev/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_1.conda + sha256: 1d500158262f30b9c23e37d1c861fe76e127a3926d69b3b38c25d20d3faa6f9f + md5: bc8607ab678073a0441808a31465f4fb + depends: + - libgcc >=13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + size: 25079 + timestamp: 1733220639175 +- conda: https://prefix.dev/conda-forge/osx-64/markupsafe-3.0.2-py312h3520af0_1.conda + sha256: d521e272f7789ca62e7617058a4ea3bd79efa73de1a39732df209ca5299e64e2 + md5: 32d6bc2407685d7e2d8db424f42018c6 + depends: + - __osx >=10.13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + size: 23888 + timestamp: 1733219886634 +- conda: https://prefix.dev/conda-forge/osx-arm64/markupsafe-3.0.2-py312h998013c_1.conda + sha256: 4aa997b244014d3707eeef54ab0ee497d12c0d0d184018960cce096169758283 + md5: 46e547061080fddf9cf95a0327e8aba6 + depends: + - __osx >=11.0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + size: 24048 + timestamp: 1733219945697 +- conda: https://prefix.dev/conda-forge/win-64/markupsafe-3.0.2-py312h31fea79_1.conda + sha256: bbb9595fe72231a8fbc8909cfa479af93741ecd2d28dfe37f8f205fef5df2217 + md5: 944fdd848abfbd6929e57c790b8174dd + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - jinja2 >=3.0.0 + license: BSD-3-Clause + license_family: BSD + size: 27582 + timestamp: 1733220007802 +- conda: https://prefix.dev/conda-forge/linux-64/matplotlib-base-3.10.1-py312hd3ec401_0.conda + sha256: 0fffd86b49f74e826be54b3bf26e5bbdebaecd2ed5538fc78292f4c0ff827555 + md5: 514d8a6894286f6d9894b352782c7e18 + depends: + - __glibc >=2.17,<3.0.a0 + - contourpy >=1.0.1 + - cycler >=0.10 + - fonttools >=4.22.0 + - freetype >=2.12.1,<3.0a0 + - kiwisolver >=1.3.1 + - libgcc >=13 + - libstdcxx >=13 + - numpy >=1.19,<3 + - numpy >=1.23 + - packaging >=20.0 + - pillow >=8 + - pyparsing >=2.3.1 + - python >=3.12,<3.13.0a0 + - python-dateutil >=2.7 + - python_abi 3.12.* *_cp312 + - qhull >=2020.2,<2020.3.0a0 + - tk >=8.6.13,<8.7.0a0 + license: PSF-2.0 + license_family: PSF + size: 8304072 + timestamp: 1740781077913 +- conda: https://prefix.dev/conda-forge/linux-aarch64/matplotlib-base-3.10.1-py312h965bf68_0.conda + sha256: 4c81ecd5ef9ca32fb9e77e552f34749902ee284b8858920882f1ee2b9ef69f42 + md5: b43b77e766ed878d88a37cdda7f6b2ae + depends: + - contourpy >=1.0.1 + - cycler >=0.10 + - fonttools >=4.22.0 + - freetype >=2.12.1,<3.0a0 + - kiwisolver >=1.3.1 + - libgcc >=13 + - libstdcxx >=13 + - numpy >=1.19,<3 + - numpy >=1.23 + - packaging >=20.0 + - pillow >=8 + - pyparsing >=2.3.1 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python-dateutil >=2.7 + - python_abi 3.12.* *_cp312 + - qhull >=2020.2,<2020.3.0a0 + - tk >=8.6.13,<8.7.0a0 + license: PSF-2.0 + license_family: PSF + size: 8179357 + timestamp: 1740781195326 +- conda: https://prefix.dev/conda-forge/osx-64/matplotlib-base-3.10.1-py312h535dea3_0.conda + sha256: 883fe38695b3b3c6e1d42f7e2174eddbae6b47623dcea9fa6c7ef70c1adede7b + md5: 9cbfac1eb73702dd1e4f379564658d48 + depends: + - __osx >=10.13 + - contourpy >=1.0.1 + - cycler >=0.10 + - fonttools >=4.22.0 + - freetype >=2.12.1,<3.0a0 + - kiwisolver >=1.3.1 + - libcxx >=18 + - numpy >=1.19,<3 + - numpy >=1.23 + - packaging >=20.0 + - pillow >=8 + - pyparsing >=2.3.1 + - python >=3.12,<3.13.0a0 + - python-dateutil >=2.7 + - python_abi 3.12.* *_cp312 + - qhull >=2020.2,<2020.3.0a0 + license: PSF-2.0 + license_family: PSF + size: 8188377 + timestamp: 1740781180493 +- conda: https://prefix.dev/conda-forge/osx-arm64/matplotlib-base-3.10.1-py312hdbc7e53_0.conda + sha256: 45c20d3523cd6581950a804b0522d4d0fc1ed04306c06283156dbf572a48bbb5 + md5: 81e256fa3f734686f049a8cdb930887f + depends: + - __osx >=11.0 + - contourpy >=1.0.1 + - cycler >=0.10 + - fonttools >=4.22.0 + - freetype >=2.12.1,<3.0a0 + - kiwisolver >=1.3.1 + - libcxx >=18 + - numpy >=1.19,<3 + - numpy >=1.23 + - packaging >=20.0 + - pillow >=8 + - pyparsing >=2.3.1 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python-dateutil >=2.7 + - python_abi 3.12.* *_cp312 + - qhull >=2020.2,<2020.3.0a0 + license: PSF-2.0 + license_family: PSF + size: 8025969 + timestamp: 1740781197157 +- conda: https://prefix.dev/conda-forge/win-64/matplotlib-base-3.10.1-py312h90004f6_0.conda + sha256: 047ff1204fd477a64e46bdcf74bb34beb94cbe938358e208b5fbace2a2e1ab99 + md5: 0b2717dde63e94ca39149f4527f934bb + depends: + - contourpy >=1.0.1 + - cycler >=0.10 + - fonttools >=4.22.0 + - freetype >=2.12.1,<3.0a0 + - kiwisolver >=1.3.1 + - numpy >=1.19,<3 + - numpy >=1.23 + - packaging >=20.0 + - pillow >=8 + - pyparsing >=2.3.1 + - python >=3.12,<3.13.0a0 + - python-dateutil >=2.7 + - python_abi 3.12.* *_cp312 + - qhull >=2020.2,<2020.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: PSF-2.0 + license_family: PSF + size: 7992005 + timestamp: 1740782043454 +- conda: https://prefix.dev/conda-forge/linux-64/mpc-1.3.1-h24ddda3_1.conda + sha256: 1bf794ddf2c8b3a3e14ae182577c624fa92dea975537accff4bc7e5fea085212 + md5: aa14b9a5196a6d8dd364164b7ce56acf + depends: + - __glibc >=2.17,<3.0.a0 + - gmp >=6.3.0,<7.0a0 + - libgcc >=13 + - mpfr >=4.2.1,<5.0a0 + license: LGPL-3.0-or-later + license_family: LGPL + size: 116777 + timestamp: 1725629179524 +- conda: https://prefix.dev/conda-forge/linux-aarch64/mpc-1.3.1-h783934e_1.conda + sha256: b5b674f496ed28c0b2d08533c6f11eaf1840bf7d9c830655f51514f2f9d9a9c8 + md5: d3758cd24507dc1bda3483ce051d48ac + depends: + - gmp >=6.3.0,<7.0a0 + - libgcc >=13 + - mpfr >=4.2.1,<5.0a0 + license: LGPL-3.0-or-later + license_family: LGPL + size: 132799 + timestamp: 1725629168783 +- conda: https://prefix.dev/conda-forge/osx-64/mpc-1.3.1-h9d8efa1_1.conda + sha256: dcf91571da6c2f0db96d43a1b639047def05a0e1b6436d42c9129ab14af47b10 + md5: 0520855aaae268ea413d6bc913f1384c + depends: + - __osx >=10.13 + - gmp >=6.3.0,<7.0a0 + - mpfr >=4.2.1,<5.0a0 + license: LGPL-3.0-or-later + license_family: LGPL + size: 107774 + timestamp: 1725629348601 +- conda: https://prefix.dev/conda-forge/osx-arm64/mpc-1.3.1-h8f1351a_1.conda + sha256: 2700899ad03302a1751dbf2bca135407e470dd83ac897ab91dd8675d4300f158 + md5: a5635df796b71f6ca400fc7026f50701 + depends: + - __osx >=11.0 + - gmp >=6.3.0,<7.0a0 + - mpfr >=4.2.1,<5.0a0 + license: LGPL-3.0-or-later + license_family: LGPL + size: 104766 + timestamp: 1725629165420 +- conda: https://prefix.dev/conda-forge/linux-64/mpfr-4.2.1-h90cbb55_3.conda + sha256: f25d2474dd557ca66c6231c8f5ace5af312efde1ba8290a6ea5e1732a4e669c0 + md5: 2eeb50cab6652538eee8fc0bc3340c81 + depends: + - __glibc >=2.17,<3.0.a0 + - gmp >=6.3.0,<7.0a0 + - libgcc >=13 + license: LGPL-3.0-only + license_family: LGPL + size: 634751 + timestamp: 1725746740014 +- conda: https://prefix.dev/conda-forge/linux-aarch64/mpfr-4.2.1-h2305555_3.conda + sha256: abb35c37de2ec6c9ee89995142b1cfea9e6547202ba5578e5307834eca6d436f + md5: 65b21e8d5f0ec6a2f7e87630caed3318 + depends: + - gmp >=6.3.0,<7.0a0 + - libgcc >=13 + license: LGPL-3.0-only + license_family: LGPL + size: 1841314 + timestamp: 1725746723157 +- conda: https://prefix.dev/conda-forge/osx-64/mpfr-4.2.1-haed47dc_3.conda + sha256: dddb6721dff05b8dfb654c532725330231fcb81ff1e27d885ee0cdcc9fccf1c4 + md5: d511e58aaaabfc23136880d9956fa7a6 + depends: + - __osx >=10.13 + - gmp >=6.3.0,<7.0a0 + license: LGPL-3.0-only + license_family: LGPL + size: 373396 + timestamp: 1725746891597 +- conda: https://prefix.dev/conda-forge/osx-arm64/mpfr-4.2.1-hb693164_3.conda + sha256: 4463e4e2aba7668e37a1b8532859191b4477a6f3602a5d6b4d64ad4c4baaeac5 + md5: 4e4ea852d54cc2b869842de5044662fb + depends: + - __osx >=11.0 + - gmp >=6.3.0,<7.0a0 + license: LGPL-3.0-only + license_family: LGPL + size: 345517 + timestamp: 1725746730583 +- conda: https://prefix.dev/conda-forge/linux-64/mpg123-1.32.9-hc50e24c_0.conda + sha256: 39c4700fb3fbe403a77d8cc27352fa72ba744db487559d5d44bf8411bb4ea200 + md5: c7f302fd11eeb0987a6a5e1f3aed6a21 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: LGPL-2.1-only + license_family: LGPL + size: 491140 + timestamp: 1730581373280 +- conda: https://prefix.dev/conda-forge/linux-aarch64/mpg123-1.32.9-h65af167_0.conda + sha256: d65d5a00278544639ba4f99887154be00a1f57afb0b34d80b08e5cba40a17072 + md5: cdf140c7690ab0132106d3bc48bce47d + depends: + - libgcc >=13 + - libstdcxx >=13 + license: LGPL-2.1-only + license_family: LGPL + size: 558708 + timestamp: 1730581372400 +- conda: https://prefix.dev/conda-forge/noarch/mpmath-1.3.0-pyhd8ed1ab_1.conda + sha256: 7d7aa3fcd6f42b76bd711182f3776a02bef09a68c5f117d66b712a6d81368692 + md5: 3585aa87c43ab15b167b574cd73b057b + depends: + - python >=3.9 + license: BSD-3-Clause + license_family: BSD + size: 439705 + timestamp: 1733302781386 +- conda: https://prefix.dev/conda-forge/linux-64/msgpack-python-1.1.0-py312h68727a3_0.conda + sha256: 4bc53333774dea1330643b7e23aa34fd6880275737fc2e07491795872d3af8dd + md5: 5c9b020a3f86799cdc6115e55df06146 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 105271 + timestamp: 1725975182669 +- conda: https://prefix.dev/conda-forge/linux-aarch64/msgpack-python-1.1.0-py312h451a7dd_0.conda + sha256: 4d31391007a9bea03aa9637e5de7fde5d3c32bac2b0f55fceed0a18b0077a907 + md5: 15e5cebe90fe26204128ad169ffe0c48 + depends: + - libgcc >=13 + - libstdcxx >=13 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 102609 + timestamp: 1725975196338 +- conda: https://prefix.dev/conda-forge/osx-64/msgpack-python-1.1.0-py312hc5c4d5f_0.conda + sha256: d12f400fb57eef8aae8a8b2a3c4d4917130b9bd8f08a631646e3bf4a6551bb54 + md5: 3448a4ca65790764c2f8d44d5f917f84 + depends: + - __osx >=10.13 + - libcxx >=17 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 90548 + timestamp: 1725975181015 +- conda: https://prefix.dev/conda-forge/osx-arm64/msgpack-python-1.1.0-py312h6142ec9_0.conda + sha256: 2b8c22f8a4e0031c2d6fa81d32814c8afdaf7e7fe2e681bf2369a35ff3eab1fd + md5: 0dfc3750cc6bbc463d72c0b727e60d8a + depends: + - __osx >=11.0 + - libcxx >=17 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 90793 + timestamp: 1725975279147 +- conda: https://prefix.dev/conda-forge/win-64/msgpack-python-1.1.0-py312hd5eb7cc_0.conda + sha256: 3fd45d9c0830e931e34990cb90e88ba53cc7f89fce69fc7d1a8289639d363e85 + md5: ff4f1e63a6438a06d1ab259936e5c2ac + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 88169 + timestamp: 1725975418157 +- conda: https://prefix.dev/conda-forge/win-64/msys2-conda-epoch-20160418-1.tar.bz2 + sha256: 99358d58d778abee4dca82ad29fb58058571f19b0f86138363c260049d4ac7f1 + md5: b0309b72560df66f71a9d5e34a5efdfa + size: 3227 + timestamp: 1608166968312 +- conda: https://prefix.dev/conda-forge/linux-64/multidict-6.2.0-py312h178313f_0.conda + sha256: 1694f11c4a14608de65bcca79d5cb0ef8836fda2c4ee0d4260f0ee09951f8aa0 + md5: 68196d82fc265392f199e48a7c05943a + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: APACHE + size: 66078 + timestamp: 1742308274926 +- conda: https://prefix.dev/conda-forge/linux-aarch64/multidict-6.2.0-py312hcc812fe_0.conda + sha256: 80b29b3d968daa158c385c3a203e76e851e395aa0284842ea580af08f943fe91 + md5: d03846a863f51a0fcffb9ea8d312195d + depends: + - libgcc >=13 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: APACHE + size: 67487 + timestamp: 1742308299215 +- conda: https://prefix.dev/conda-forge/osx-64/multidict-6.2.0-py312h6f3313d_0.conda + sha256: c89a7c9d241021cb4f9c77461cb9a849fab9fd4e759262a572f784fd3ca73534 + md5: c2ce12404fce37a6934fdcb2259c65a6 + depends: + - __osx >=10.13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: APACHE + size: 60441 + timestamp: 1742308331162 +- conda: https://prefix.dev/conda-forge/osx-arm64/multidict-6.2.0-py312hdb8e49c_0.conda + sha256: edeb77b6113a3679b838df3804e6f975665d0999d7eee290778e6c1e93d215a4 + md5: 1d1bbdbb61c436e00e5f7f8de1de6b34 + depends: + - __osx >=11.0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: APACHE + size: 60798 + timestamp: 1742308452071 +- conda: https://prefix.dev/conda-forge/win-64/multidict-6.2.0-py312h31fea79_0.conda + sha256: 19439c90b05209b4cb0541d0cd489555dde09678a993c47133e24fb2b0758c73 + md5: c9e19e911ea31b637e5fbde4bc74ac65 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 61006 + timestamp: 1742308648056 +- conda: https://prefix.dev/conda-forge/noarch/munkres-1.1.4-pyh9f0ad1d_0.tar.bz2 + sha256: f86fb22b58e93d04b6f25e0d811b56797689d598788b59dcb47f59045b568306 + md5: 2ba8498c1018c1e9c61eb99b973dfe19 + depends: + - python + license: Apache-2.0 + license_family: Apache + size: 12452 + timestamp: 1600387789153 +- conda: https://prefix.dev/conda-forge/linux-64/mysql-common-9.0.1-h266115a_5.conda + sha256: df9e895e8933ade7d362ab42bfe97e52a6b93d4d30df517324d60f6f35da1540 + md5: 6cf2f0c19b0b7ff3d5349c9826c26a9e + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.4.1,<4.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 633439 + timestamp: 1741896463089 +- conda: https://prefix.dev/conda-forge/linux-aarch64/mysql-common-9.0.1-h3f5c77f_5.conda + sha256: 0dfc95df883b6dfd7f8d97135c682b8197b07d209c3b7be9a9178c64a9ce1617 + md5: bdc934577bc277924815fbfcba632822 + depends: + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.4.1,<4.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 609080 + timestamp: 1741896209529 +- conda: https://prefix.dev/conda-forge/osx-64/mysql-common-9.0.1-hd00b0ec_5.conda + sha256: 25a87d76d2c4ddeb74cd1cc2a2b06ec6ab8c6025fdd918a7af9619c337889aaf + md5: fe53314dfd07e65342c55a9495080d2b + depends: + - __osx >=10.14 + - libcxx >=18 + - openssl >=3.4.1,<4.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 656123 + timestamp: 1741893586149 +- conda: https://prefix.dev/conda-forge/osx-arm64/mysql-common-9.0.1-hd7719f6_5.conda + sha256: 762824979cb4ebe57e8154bbc910391c8ee2f111e9f2d38fb974ff600c27dc2b + md5: 0b7348c3e06689bdff9dfdf9e9caaab5 + depends: + - __osx >=11.0 + - libcxx >=18 + - openssl >=3.4.1,<4.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 619475 + timestamp: 1741894856085 +- conda: https://prefix.dev/conda-forge/linux-64/mysql-libs-9.0.1-he0572af_5.conda + sha256: f37303d2fb453bbc47d1e09d56ef06b20570d0eaf375115707ffc1e609c9b508 + md5: d13932a2a61de7c0fb7864b592034a6e + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - mysql-common 9.0.1 h266115a_5 + - openssl >=3.4.1,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 1371634 + timestamp: 1741896565103 +- conda: https://prefix.dev/conda-forge/linux-aarch64/mysql-libs-9.0.1-h11569fd_5.conda + sha256: 52f62bbb2f6aeb5b578edbee6e64bdb7e734fdf6a65c913adecc4c84298dfc9d + md5: bbee9b7b1fb37bd1d9c5df0fc50fda84 + depends: + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - mysql-common 9.0.1 h3f5c77f_5 + - openssl >=3.4.1,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 1409306 + timestamp: 1741896294221 +- conda: https://prefix.dev/conda-forge/osx-64/mysql-libs-9.0.1-h062309a_5.conda + sha256: 7006fcb12fb8149b08006cfa3908e07f434783efcb01ba4136c7878fccebbaf9 + md5: 39a82f0f33b6ce7e60ff0f19a767005a + depends: + - __osx >=10.14 + - libcxx >=18 + - libzlib >=1.3.1,<2.0a0 + - mysql-common 9.0.1 hd00b0ec_5 + - openssl >=3.4.1,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 1328193 + timestamp: 1741893794058 +- conda: https://prefix.dev/conda-forge/osx-arm64/mysql-libs-9.0.1-ha8be5b7_5.conda + sha256: 2c0587da1bacaa14cbc01850817a51be571b8b878bcc7f4cec6db8cd9dca0f52 + md5: f0eec7f32614b20d59a0a663219b15c2 + depends: + - __osx >=11.0 + - libcxx >=18 + - libzlib >=1.3.1,<2.0a0 + - mysql-common 9.0.1 hd7719f6_5 + - openssl >=3.4.1,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 1352032 + timestamp: 1741895112685 +- conda: https://prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda + sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586 + md5: 47e340acb35de30501a76c7c799c41d7 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: X11 AND BSD-3-Clause + size: 891641 + timestamp: 1738195959188 +- conda: https://prefix.dev/conda-forge/linux-aarch64/ncurses-6.5-ha32ae93_3.conda + sha256: 91cfb655a68b0353b2833521dc919188db3d8a7f4c64bea2c6a7557b24747468 + md5: 182afabe009dc78d8b73100255ee6868 + depends: + - libgcc >=13 + license: X11 AND BSD-3-Clause + size: 926034 + timestamp: 1738196018799 +- conda: https://prefix.dev/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda + sha256: ea4a5d27ded18443749aefa49dc79f6356da8506d508b5296f60b8d51e0c4bd9 + md5: ced34dd9929f491ca6dab6a2927aff25 + depends: + - __osx >=10.13 + license: X11 AND BSD-3-Clause + size: 822259 + timestamp: 1738196181298 +- conda: https://prefix.dev/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda + sha256: 2827ada40e8d9ca69a153a45f7fd14f32b2ead7045d3bbb5d10964898fe65733 + md5: 068d497125e4bf8a66bf707254fff5ae + depends: + - __osx >=11.0 + license: X11 AND BSD-3-Clause + size: 797030 + timestamp: 1738196177597 +- conda: https://prefix.dev/conda-forge/noarch/nine-1.1.0-py_0.tar.bz2 + sha256: e88c6f90e1c0822536fa32ab6e2b7e0604deb7362ef0cfb091cec190767376ef + md5: bedcc818de99f3d6c2ed507a29c6e233 + depends: + - python + license: Public domain + license_family: PUBLIC-DOMAIN + size: 11134 + timestamp: 1579641731749 +- conda: https://prefix.dev/conda-forge/linux-64/nlohmann_json-3.11.3-he02047a_1.conda + sha256: ce4bcced4f8eea71b7cac8bc3daac097abf7a5792f278cd811dedada199500c1 + md5: e46f7ac4917215b49df2ea09a694a3fa + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + size: 122743 + timestamp: 1723652407663 +- conda: https://prefix.dev/conda-forge/linux-aarch64/nlohmann_json-3.11.3-h0a1ffab_1.conda + sha256: c90b1f11fc337d90a9e4c5aeeacac1418c5ba6a195097086566d38bb2ecf0f24 + md5: f2bd10ff23ab5c87327439c4499b3f3e + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + size: 122755 + timestamp: 1723652622631 +- conda: https://prefix.dev/conda-forge/osx-64/nlohmann_json-3.11.3-hf036a51_1.conda + sha256: 41b1aa2a67654917c9c32a5f0111970b11cfce49ed57cf44bba4aefdcd59e54b + md5: 00c3efa95b3a010ee85bc36aac6ab2f6 + depends: + - __osx >=10.13 + - libcxx >=16 + license: MIT + license_family: MIT + size: 122773 + timestamp: 1723652497933 +- conda: https://prefix.dev/conda-forge/osx-arm64/nlohmann_json-3.11.3-h00cdb27_1.conda + sha256: 3f4e6a4fa074bb297855f8111ab974dab6d9f98b7d4317d4dd46f8687ee2363b + md5: d2dee849c806430eee64d3acc98ce090 + depends: + - __osx >=11.0 + - libcxx >=16 + license: MIT + license_family: MIT + size: 123250 + timestamp: 1723652704997 +- conda: https://prefix.dev/conda-forge/win-64/nlohmann_json-3.11.3-he0c23c2_1.conda + sha256: 106af14431772a6bc659e8d5a3bb1930cf1010b85e0e7eca99ecd3e556e91470 + md5: 340cbb4ab78c90cd9d08f826ad22aed2 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 124255 + timestamp: 1723652081336 +- conda: https://prefix.dev/conda-forge/noarch/noqt5-1.0-hd8ed1ab_1.conda + sha256: b785c3daf3c6038680c2bb93ebc1aeadca076dcc127ee0797359df67e635fd26 + md5: 59b5eb8b88b1c63db676a498767c1267 + constrains: + - qt <0.0a0 + - qt-main <5.0a0|>=6.0 + license: BSD-3-Clause + license_family: BSD + size: 6347 + timestamp: 1732243385797 +- conda: https://prefix.dev/conda-forge/linux-64/numpy-2.2.4-py312h72c5963_0.conda + sha256: 47b3b2ae21efb227db7410f2701291cf47d816fd96461bdede415d7d75d8a436 + md5: 3f2871f111d8c0abd9c3150a8627507e + depends: + - __glibc >=2.17,<3.0.a0 + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libgcc >=13 + - liblapack >=3.9.0,<4.0a0 + - libstdcxx >=13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + license_family: BSD + size: 8424727 + timestamp: 1742255434709 +- conda: https://prefix.dev/conda-forge/linux-aarch64/numpy-2.2.4-py312hce01fe4_0.conda + sha256: 47991148d4c77f59d963e39dd858e7a2dff747bac7ccb17bf223044d21d677f7 + md5: 832113eb46c173cbb853223344a0b89e + depends: + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libgcc >=13 + - liblapack >=3.9.0,<4.0a0 + - libstdcxx >=13 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + license_family: BSD + size: 7235650 + timestamp: 1742255247854 +- conda: https://prefix.dev/conda-forge/osx-64/numpy-2.2.4-py312h6693b03_0.conda + sha256: 21fe25afa23299c02b88114f1f774d124d4b52517f6b275359c281ac06f0996e + md5: 5ac6821ebd39e56eb3e32149340ab51c + depends: + - __osx >=10.13 + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libcxx >=18 + - liblapack >=3.9.0,<4.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + license_family: BSD + size: 7565004 + timestamp: 1742255412208 +- conda: https://prefix.dev/conda-forge/osx-arm64/numpy-2.2.4-py312h7c1f314_0.conda + sha256: 68eafd2b7beca8467fe84a8a03767680be686d601a0771d3414c7019f3302ee0 + md5: 001a57e8f4cc0c12841d341b94ef8787 + depends: + - __osx >=11.0 + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libcxx >=18 + - liblapack >=3.9.0,<4.0a0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + license_family: BSD + size: 6559671 + timestamp: 1742255398662 +- conda: https://prefix.dev/conda-forge/win-64/numpy-2.2.4-py312h3150e54_0.conda + sha256: 477bd925070dd7122c3d2d8be57e06338f1e946c403a1044908aaf68a5e27cdf + md5: e668b8543944b4d80aaa9c904f3821ee + depends: + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + license_family: BSD + size: 7058478 + timestamp: 1742255793694 +- conda: https://prefix.dev/conda-forge/linux-64/occt-7.8.1-all_h4c4714a_203.conda + sha256: 581ac3387afaf349f44d4b03469d7849093ad868509ef109e6e149d48211f990 + md5: 43aed13aae8e2d25f232e98cb636e139 + depends: + - __glibc >=2.17,<3.0.a0 + - fontconfig >=2.14.2,<3.0a0 + - fonts-conda-ecosystem + - freeimage >=3.18.0,<3.19.0a0 + - freetype >=2.12.1,<3.0a0 + - libgcc >=13 + - libstdcxx >=13 + - rapidjson + - vtk + - vtk-base >=9.3.1,<9.3.2.0a0 + - xorg-libxt >=1.3.0,<2.0a0 + license: LGPL-2.1-only + license_family: LGPL + size: 28529142 + timestamp: 1729329346168 +- conda: https://prefix.dev/conda-forge/linux-aarch64/occt-7.8.1-all_h78e3548_203.conda + sha256: 36df2c302b0db14d541831edca21b6bb40d27f25915556beee57deaa42cc0fe6 + md5: 3f7934863b690dea888116794f309bdf + depends: + - fontconfig >=2.14.2,<3.0a0 + - fonts-conda-ecosystem + - freeimage >=3.18.0,<3.19.0a0 + - freetype >=2.12.1,<3.0a0 + - libgcc >=13 + - libstdcxx >=13 + - rapidjson + - vtk + - vtk-base >=9.3.1,<9.3.2.0a0 + - xorg-libxt >=1.3.0,<2.0a0 + license: LGPL-2.1-only + license_family: LGPL + size: 26951693 + timestamp: 1729329781771 +- conda: https://prefix.dev/conda-forge/osx-64/occt-7.8.1-all_ha9a7d59_203.conda + sha256: 34a68aadfe98265a24a1c43305fd6188a01ad5f18cedc32e9c722d8b8c67d718 + md5: b1470601a9f4b2f3401c0426153bf2f5 + depends: + - __osx >=10.13 + - fontconfig >=2.14.2,<3.0a0 + - fonts-conda-ecosystem + - freeimage >=3.18.0,<3.19.0a0 + - freetype >=2.12.1,<3.0a0 + - libcxx >=17 + - rapidjson + - vtk + - vtk-base >=9.3.1,<9.3.2.0a0 + license: LGPL-2.1-only + license_family: LGPL + size: 24943534 + timestamp: 1729329001159 +- conda: https://prefix.dev/conda-forge/osx-arm64/occt-7.8.1-all_h869bdd7_203.conda + sha256: 0615e7a63fa4b671057bf72c9b0eb42527a2853fe15338eea76bbb36dc0201d5 + md5: 6c192205820d2919496c0e83dc52a7c2 + depends: + - __osx >=11.0 + - fontconfig >=2.14.2,<3.0a0 + - fonts-conda-ecosystem + - freeimage >=3.18.0,<3.19.0a0 + - freetype >=2.12.1,<3.0a0 + - libcxx >=17 + - rapidjson + - vtk + - vtk-base >=9.3.1,<9.3.2.0a0 + license: LGPL-2.1-only + license_family: LGPL + size: 23711359 + timestamp: 1729329035391 +- conda: https://prefix.dev/conda-forge/win-64/occt-7.8.1-all_hae6dad1_203.conda + sha256: 4fdcaec136386a7348b98cd588446d7e76861a17dfc383cc0e9204666f8da9c0 + md5: a4828b8b040e39e33c6de4c15b7cf1b5 + depends: + - fontconfig >=2.14.2,<3.0a0 + - fonts-conda-ecosystem + - freeimage >=3.18.0,<3.19.0a0 + - freetype >=2.12.1,<3.0a0 + - rapidjson + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - vtk + - vtk-base >=9.3.1,<9.3.2.0a0 + license: LGPL-2.1-only + license_family: LGPL + size: 24824977 + timestamp: 1729330486797 +- conda: https://prefix.dev/conda-forge/linux-64/ocl-icd-2.3.2-hb9d3cd8_2.conda + sha256: 96ddd13054032fabd54636f634d50bc74d10d8578bc946405c429b2d895db6f2 + md5: 2e8d2b469559d6b2cb6fd4b34f9c8d7f + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - opencl-headers >=2024.10.24 + license: BSD-2-Clause + license_family: BSD + size: 94934 + timestamp: 1732915114536 +- conda: https://prefix.dev/conda-forge/noarch/olefile-0.47-pyhd8ed1ab_1.conda + sha256: 8b88dc1fc495cf9b4d72cd10e7e50f981e3d5cbb654b6f4ea306274c197b95a9 + md5: 8f60e66ea748ad9ffd0a8e9d353d3a7d + depends: + - python >=3.9 + license: BSD-2-Clause + license_family: BSD + size: 38520 + timestamp: 1734769919582 +- conda: https://prefix.dev/conda-forge/linux-64/openblas-0.3.29-pthreads_h6ec200e_0.conda + sha256: 49814ee7c946fc583ea9217dfaad23d6bb75868988062fdd921cedc79affd07a + md5: 7e4d48870b3258bea920d51b7f495a81 + depends: + - libopenblas 0.3.29 pthreads_h94d23a6_0 + license: BSD-3-Clause + license_family: BSD + size: 6054007 + timestamp: 1739825745796 +- conda: https://prefix.dev/conda-forge/linux-aarch64/openblas-0.3.29-pthreads_h3a8cbd8_0.conda + sha256: 8b70164d7aa323450b22516719c6484ad7b08aec756f97d327b6b937b5c63546 + md5: 4ec5b6144709ced5e7933977675f61c6 + depends: + - libopenblas 0.3.29 pthreads_h9d3fd7e_0 + license: BSD-3-Clause + license_family: BSD + size: 4932315 + timestamp: 1739825316467 +- conda: https://prefix.dev/conda-forge/win-64/openblas-0.3.29-pthreads_h4a7f399_0.conda + sha256: 013abb41a6e89cd1b8b6fdf9855c991db6817f7f4474da4a9f1764b995a6300d + md5: b916bb21ec5aa946d2094750bc3cde4a + depends: + - libopenblas 0.3.29 pthreads_head3c61_0 + license: BSD-3-Clause + license_family: BSD + size: 264340 + timestamp: 1739829033418 +- conda: https://prefix.dev/conda-forge/linux-64/opencamlib-2023.01.11-py312h98ce3ff_7.conda + sha256: b60b17c72b0e3130ef35da1a167843877a9ec9f60f04deaac2a8f071c70dcd5b + md5: be9fe2fc0a7fe83c6877f63a9c79fb97 + depends: + - __glibc >=2.17,<3.0.a0 + - _openmp_mutex >=4.5 + - libboost-python >=1.86.0,<1.87.0a0 + - libgcc >=13 + - libstdcxx >=13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: LGPL-2.1-or-later + license_family: LGPL + size: 4647768 + timestamp: 1725734503058 +- conda: https://prefix.dev/conda-forge/linux-aarch64/opencamlib-2023.01.11-py312h3aea3f9_7.conda + sha256: fc0240b6dc03313cf9a014600d4c84210f8036de71567f2372ab2f361e616531 + md5: ae51b754038373df0f7e91106a5d22a1 + depends: + - _openmp_mutex >=4.5 + - libboost-python >=1.86.0,<1.87.0a0 + - libgcc >=13 + - libstdcxx >=13 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: LGPL-2.1-or-later + license_family: LGPL + size: 4612881 + timestamp: 1725734610913 +- conda: https://prefix.dev/conda-forge/osx-64/opencamlib-2023.01.11-py312h6681d2d_7.conda + sha256: 8447ac7207b5ffbdd785c89bbaefec7199602b8d4618eb7eddd230bdbfe80e5b + md5: 45e066f78d3c6b65d0e97fec83d39252 + depends: + - __osx >=10.13 + - libboost-python >=1.86.0,<1.87.0a0 + - libcxx >=17 + - llvm-openmp >=17.0.6 + - llvm-openmp >=18.1.8 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: LGPL-2.1-or-later + license_family: LGPL + size: 4889452 + timestamp: 1725734710699 +- conda: https://prefix.dev/conda-forge/osx-arm64/opencamlib-2023.01.11-py312h7829b80_7.conda + sha256: 059e43e2aa135fbf43ebf97c9bd7d7ec85d5368c4c1cf27cfcfd5cb46d9de9df + md5: 305c623d2355a60b7656c15d1d0ba944 + depends: + - __osx >=11.0 + - libboost-python >=1.86.0,<1.87.0a0 + - libcxx >=17 + - llvm-openmp >=17.0.6 + - llvm-openmp >=18.1.8 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: LGPL-2.1-or-later + license_family: LGPL + size: 4852617 + timestamp: 1725734681842 +- conda: https://prefix.dev/conda-forge/win-64/opencamlib-2023.01.11-py312hc31f9ae_7.conda + sha256: 71938a92217f8b3b7e31b1c520cf7b07ca926e0ccfcea286aafcca46295d088f + md5: 354ef270b7ee3e5b1f63ce4620569e72 + depends: + - libboost-python >=1.86.0,<1.87.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.1-or-later + license_family: LGPL + size: 4558782 + timestamp: 1725735327610 +- conda: https://prefix.dev/conda-forge/linux-64/opencl-headers-2024.10.24-h5888daf_0.conda + sha256: 7e1d3ad55d4ad3ddf826e205d4603b9ed40c5e655a9dfd66b56f459d7ba14db3 + md5: 3ba02cce423fdac1a8582bd6bb189359 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: Apache-2.0 + license_family: APACHE + size: 54060 + timestamp: 1732912937444 +- conda: https://prefix.dev/conda-forge/win-64/opencl-headers-2024.10.24-he0c23c2_0.conda + sha256: b2e9546765727152eb4eed7e89d230757e60dbe368f4e62e49132bf7caa92355 + md5: 20248dbb7d4a877ba783a2e06ecc2d02 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 54172 + timestamp: 1732913057999 +- conda: https://prefix.dev/conda-forge/linux-64/opencv-4.10.0-qt6_py312h8cbcb32_615.conda + sha256: 021481ab059d29a8496db29df77029aa7b1aa839cbbe5dd3e409a3319b53df75 + md5: 6aeee960a6ba154517add297b0e05505 + depends: + - hdf5 >=1.14.4,<1.14.5.0a0 + - libopencv 4.10.0 qt6_py312h02963e2_615 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - py-opencv 4.10.0 qt6_py312he3389d8_615 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 26399 + timestamp: 1735820265908 +- conda: https://prefix.dev/conda-forge/linux-aarch64/opencv-4.10.0-headless_py312h1ed0fc8_15.conda + sha256: 4bc23d3572f3749d0a00542b28c9e54105130d25f179d5456cc0d2603bde54c2 + md5: 3c7d1e2dd742acbc745337633514193b + depends: + - hdf5 >=1.14.4,<1.14.5.0a0 + - libopencv 4.10.0 headless_py312h664d0dd_15 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - py-opencv 4.10.0 headless_py312h7c5359c_15 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 26648 + timestamp: 1735823244026 +- conda: https://prefix.dev/conda-forge/osx-64/opencv-4.10.0-headless_py312h1c69202_15.conda + sha256: 93e585a151110a93b0f8b8221b9f0546faa450877c0bad15269419be9f7b4502 + md5: f0e11c8d8cdcb61de73ed5f833aff464 + depends: + - hdf5 >=1.14.4,<1.14.5.0a0 + - libopencv 4.10.0 headless_py312hd33687b_15 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - py-opencv 4.10.0 headless_py312hae307ac_15 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 27124 + timestamp: 1735820307766 +- conda: https://prefix.dev/conda-forge/osx-arm64/opencv-4.10.0-headless_py312h5440e30_15.conda + sha256: 360694aedfdbedcef222a0cf9051b21f7494a797388590c896445589d43e2fef + md5: 837d3e91f7c07f3ed3442d6dfd9a23bd + depends: + - hdf5 >=1.14.4,<1.14.5.0a0 + - libopencv 4.10.0 headless_py312hb22ed7f_15 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - py-opencv 4.10.0 headless_py312h660ad0e_15 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 26608 + timestamp: 1735824867992 +- conda: https://prefix.dev/conda-forge/win-64/opencv-4.10.0-qt6_py312h84150c2_615.conda + sha256: 96a9b8bd23d40c2099f2fb1bc574088a961f3a84bd48a7591aea99db325b4c93 + md5: 2c08e2bd61fbc17f831d28653ef681f5 + depends: + - hdf5 >=1.14.4,<1.14.5.0a0 + - libopencv 4.10.0 qt6_py312h50f3c70_615 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - py-opencv 4.10.0 qt6_py312he23ae38_615 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 27319 + timestamp: 1735825043435 +- conda: https://prefix.dev/conda-forge/linux-64/openexr-3.3.3-hff63da0_0.conda + sha256: 3178113a42c2442c3d4e6aa6af4fa89a73ad1c472e2a6eda5dfd23c0e0d160ee + md5: d03a2c3b23ee7675a6e66e050033b110 + depends: + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libzlib >=1.3.1,<2.0a0 + - libdeflate >=1.23,<1.24.0a0 + - imath >=3.1.12,<3.1.13.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1319461 + timestamp: 1742803755009 +- conda: https://prefix.dev/conda-forge/linux-aarch64/openexr-3.3.3-h2d73ac1_0.conda + sha256: 87ac0157cbac2d0a504d130d0816b291c5f79e80bf53257c22b275694849b354 + md5: 1c46390713ec05fa8c658ab41daf1f6b + depends: + - libstdcxx >=13 + - libgcc >=13 + - libdeflate >=1.23,<1.24.0a0 + - libzlib >=1.3.1,<2.0a0 + - imath >=3.1.12,<3.1.13.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1275768 + timestamp: 1742803770993 +- conda: https://prefix.dev/conda-forge/osx-64/openexr-3.3.3-h6794a33_0.conda + sha256: 42252ae54a0e6092d525596b115377a05ee5565686d4e965a11b9a4605236546 + md5: e6753e95d3ac824f14b1f893e69a4e7e + depends: + - libcxx >=18 + - __osx >=10.13 + - libdeflate >=1.23,<1.24.0a0 + - libzlib >=1.3.1,<2.0a0 + - imath >=3.1.12,<3.1.13.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1128784 + timestamp: 1742803785075 +- conda: https://prefix.dev/conda-forge/osx-arm64/openexr-3.3.3-h10b4c9a_0.conda + sha256: 88f3468b3fd6f154f97fdb1259b63e4a479b39b42cbae9fea7d125aa2ec5787f + md5: 9a9fc4b01632f63c3389f26185803769 + depends: + - libcxx >=18 + - __osx >=11.0 + - libdeflate >=1.23,<1.24.0a0 + - libzlib >=1.3.1,<2.0a0 + - imath >=3.1.12,<3.1.13.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1099706 + timestamp: 1742803793657 +- conda: https://prefix.dev/conda-forge/win-64/openexr-3.3.3-h1acc403_0.conda + sha256: 89e04298afacdc43b3a6de03067486f529eeebbfc249c99417ec2de6d20ba4a0 + md5: 1fd0778c8850a74fedfb401ba013cce9 + depends: + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + - imath >=3.1.12,<3.1.13.0a0 + - libzlib >=1.3.1,<2.0a0 + - libdeflate >=1.23,<1.24.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1045157 + timestamp: 1742803785709 +- conda: https://prefix.dev/conda-forge/linux-64/openh264-2.5.0-hf92e6e3_0.conda + sha256: dedda20c58aec3d8f9c12e3660225608b93a257a21e0da703fdd814789291519 + md5: d1b18a73fc3cfd0de9c7e786d2febb8f + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: BSD-2-Clause + license_family: BSD + size: 727504 + timestamp: 1731068122274 +- conda: https://prefix.dev/conda-forge/linux-aarch64/openh264-2.5.0-h6c5ec6d_0.conda + sha256: 1e9623c4cb34d1f8b43884c629cb61ddbe8dfbdf03f6043ec9a772c12b6867ed + md5: d9407eab893d3bbf706d8ede547ae639 + depends: + - libgcc >=13 + - libstdcxx >=13 + license: BSD-2-Clause + license_family: BSD + size: 785332 + timestamp: 1731068180758 +- conda: https://prefix.dev/conda-forge/osx-64/openh264-2.5.0-hdfcf091_0.conda + sha256: 521aac4f5dfb36bbaa6b9fd17aeb3dfabff30a555e3c493d8d91db98056d69c8 + md5: 402f09a0168dcebd162f5e8b0e89c997 + depends: + - __osx >=10.13 + - libcxx >=18 + license: BSD-2-Clause + license_family: BSD + size: 657866 + timestamp: 1731068138921 +- conda: https://prefix.dev/conda-forge/osx-arm64/openh264-2.5.0-h774163f_0.conda + sha256: d8a72fd9a72e4a01b614485fbeca32c59cdc9a9f6ca8a344f0bb81e6e8f84f6e + md5: d30a8420d9e45cf160bbe731c9d0a1be + depends: + - __osx >=11.0 + - libcxx >=18 + license: BSD-2-Clause + license_family: BSD + size: 599874 + timestamp: 1731068229253 +- conda: https://prefix.dev/conda-forge/win-64/openh264-2.6.0-hb17fa0b_0.conda + sha256: 914702d9a64325ff3afb072c8bc0f8cbea3f19955a8395a8c190e45604f83c76 + md5: ad4cac6ceb9e4c8e01802e3f15e87bb2 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 411269 + timestamp: 1739401120354 +- conda: https://prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda + sha256: 5bee706ea5ba453ed7fd9da7da8380dd88b865c8d30b5aaec14d2b6dd32dbc39 + md5: 9e5816bc95d285c115a3ebc2f8563564 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libpng >=1.6.44,<1.7.0a0 + - libstdcxx >=13 + - libtiff >=4.7.0,<4.8.0a0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-2-Clause + license_family: BSD + size: 342988 + timestamp: 1733816638720 +- conda: https://prefix.dev/conda-forge/linux-aarch64/openjpeg-2.5.3-h3f56577_0.conda + sha256: 92d310033e20538e896f4e4b1ea4205eb6604eee7c5c651c4965a0d8d3ca0f1d + md5: 04231368e4af50d11184b50e14250993 + depends: + - libgcc >=13 + - libpng >=1.6.44,<1.7.0a0 + - libstdcxx >=13 + - libtiff >=4.7.0,<4.8.0a0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-2-Clause + license_family: BSD + size: 377796 + timestamp: 1733816683252 +- conda: https://prefix.dev/conda-forge/osx-64/openjpeg-2.5.3-h7fd6d84_0.conda + sha256: faea03f36c9aa3524c911213b116da41695ff64b952d880551edee2843fe115b + md5: 025c711177fc3309228ca1a32374458d + depends: + - __osx >=10.13 + - libcxx >=18 + - libpng >=1.6.44,<1.7.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-2-Clause + license_family: BSD + size: 332320 + timestamp: 1733816828284 +- conda: https://prefix.dev/conda-forge/osx-arm64/openjpeg-2.5.3-h8a3d83b_0.conda + sha256: 1d59bc72ca7faac06d349c1a280f5cfb8a57ee5896f1e24225a997189d7418c7 + md5: 4b71d78648dbcf68ce8bf22bb07ff838 + depends: + - __osx >=11.0 + - libcxx >=18 + - libpng >=1.6.44,<1.7.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-2-Clause + license_family: BSD + size: 319362 + timestamp: 1733816781741 +- conda: https://prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda + sha256: 410175815df192f57a07c29a6b3fdd4231937173face9e63f0830c1234272ce3 + md5: fc050366dd0b8313eb797ed1ffef3a29 + depends: + - libpng >=1.6.44,<1.7.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 240148 + timestamp: 1733817010335 +- conda: https://prefix.dev/conda-forge/linux-64/openldap-2.6.9-he970967_0.conda + sha256: 224f458848f792fe9e3587ee6b626d4eaad63aead0e5e6c25cbe29aba7b05c53 + md5: ca2de8bbdc871bce41dbf59e51324165 + depends: + - __glibc >=2.17,<3.0.a0 + - cyrus-sasl >=2.1.27,<3.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.4.0,<4.0a0 + license: OLDAP-2.8 + license_family: BSD + size: 784483 + timestamp: 1732674189726 +- conda: https://prefix.dev/conda-forge/linux-aarch64/openldap-2.6.9-h30c48ee_0.conda + sha256: ee09612f256dd3532b1309c8ff70489d21db3bde2a0849da08393e5ffd84400d + md5: c07822a5de65ce9797b9afa257faa917 + depends: + - cyrus-sasl >=2.1.27,<3.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.4.0,<4.0a0 + license: OLDAP-2.8 + license_family: BSD + size: 904889 + timestamp: 1732674273894 +- conda: https://prefix.dev/conda-forge/osx-64/openldap-2.6.9-hd8a590d_0.conda + sha256: b0c541939d905a1a23c41f0f22ad34401da50470e779a6e618c37fdba6c057aa + md5: 10dff9d8c67ae8b807b9fe8cfe9ca1d0 + depends: + - __osx >=10.13 + - cyrus-sasl >=2.1.27,<3.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libcxx >=18 + - openssl >=3.4.0,<4.0a0 + license: OLDAP-2.8 + license_family: BSD + size: 777835 + timestamp: 1732674429367 +- conda: https://prefix.dev/conda-forge/osx-arm64/openldap-2.6.9-hbe55e7a_0.conda + sha256: 5ae85f00a9dcf438e375d4fb5c45c510c7116e32c4b7af608ffd88e9e9dc6969 + md5: 8291e59e1dd136bceecdefbc7207ecd6 + depends: + - __osx >=11.0 + - cyrus-sasl >=2.1.27,<3.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libcxx >=18 + - openssl >=3.4.0,<4.0a0 + license: OLDAP-2.8 + license_family: BSD + size: 842504 + timestamp: 1732674565486 +- conda: https://prefix.dev/conda-forge/linux-64/openssl-3.4.1-h7b32b05_0.conda + sha256: cbf62df3c79a5c2d113247ddea5658e9ff3697b6e741c210656e239ecaf1768f + md5: 41adf927e746dc75ecf0ef841c454e48 + depends: + - __glibc >=2.17,<3.0.a0 + - ca-certificates + - libgcc >=13 + license: Apache-2.0 + license_family: Apache + size: 2939306 + timestamp: 1739301879343 +- conda: https://prefix.dev/conda-forge/linux-aarch64/openssl-3.4.1-hd08dc88_0.conda + sha256: d80b52b56b2206053968270069616868cbeb289ef855cf1584b1bb0fef61b37c + md5: 09036190605c57eaecf01218e0e9542d + depends: + - ca-certificates + - libgcc >=13 + license: Apache-2.0 + license_family: Apache + size: 3476570 + timestamp: 1739303256089 +- conda: https://prefix.dev/conda-forge/osx-64/openssl-3.4.1-hc426f3f_0.conda + sha256: 505a46671dab5d66df8e684f99a9ae735a607816b12810b572d63caa512224df + md5: a7d63f8e7ab23f71327ea6d27e2d5eae + depends: + - __osx >=10.13 + - ca-certificates + license: Apache-2.0 + license_family: Apache + size: 2591479 + timestamp: 1739302628009 +- conda: https://prefix.dev/conda-forge/osx-arm64/openssl-3.4.1-h81ee809_0.conda + sha256: 4f8e2389e1b711b44182a075516d02c80fa7a3a7e25a71ff1b5ace9eae57a17a + md5: 75f9f0c7b1740017e2db83a53ab9a28e + depends: + - __osx >=11.0 + - ca-certificates + license: Apache-2.0 + license_family: Apache + size: 2934522 + timestamp: 1739301896733 +- conda: https://prefix.dev/conda-forge/win-64/openssl-3.4.1-ha4e3fda_0.conda + sha256: 56dcc2b4430bfc1724e32661c34b71ae33a23a14149866fc5645361cfd3b3a6a + md5: 0730f8094f7088592594f9bf3ae62b3f + depends: + - ca-certificates + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 8515197 + timestamp: 1739304103653 +- conda: https://prefix.dev/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda + sha256: da157b19bcd398b9804c5c52fc000fcb8ab0525bdb9c70f95beaa0bb42f85af1 + md5: 3bfed7e6228ebf2f7b9eaa47f1b4e2aa + depends: + - python >=3.8 + license: Apache-2.0 + license_family: APACHE + size: 60164 + timestamp: 1733203368787 +- conda: https://prefix.dev/conda-forge/linux-64/pandas-2.2.3-py312hf9745cd_1.conda + sha256: ad275a83bfebfa8a8fee9b0569aaf6f513ada6a246b2f5d5b85903d8ca61887e + md5: 8bce4f6caaf8c5448c7ac86d87e26b4b + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - numpy >=1.19,<3 + - numpy >=1.22.4 + - python >=3.12,<3.13.0a0 + - python-dateutil >=2.8.1 + - python-tzdata >=2022a + - python_abi 3.12.* *_cp312 + - pytz >=2020.1,<2024.2 + license: BSD-3-Clause + license_family: BSD + size: 15436913 + timestamp: 1726879054912 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pandas-2.2.3-py312ha2895bd_2.conda + sha256: a34b10077de97eea72c81cb96e3ddc7d48320c0fc7d9b28ba8d9d2bead1d8297 + md5: 39a91ac336d350513de6aad56da5a920 + depends: + - libgcc >=13 + - libstdcxx >=13 + - numpy >=1.19,<3 + - numpy >=1.22.4 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python-dateutil >=2.8.1 + - python-tzdata >=2022a + - python_abi 3.12.* *_cp312 + - pytz >=2020.1,<2024.2 + constrains: + - fsspec >=2022.11.0 + - s3fs >=2022.11.0 + - fastparquet >=2022.12.0 + - pyreadstat >=1.2.0 + - qtpy >=2.3.0 + - scipy >=1.10.0 + - beautifulsoup4 >=4.11.2 + - gcsfs >=2022.11.0 + - numexpr >=2.8.4 + - sqlalchemy >=2.0.0 + - pyxlsb >=1.0.10 + - numba >=0.56.4 + - lxml >=4.9.2 + - matplotlib >=3.6.3 + - psycopg2 >=2.9.6 + - tzdata >=2022.7 + - bottleneck >=1.3.6 + - xarray >=2022.12.0 + - xlsxwriter >=3.0.5 + - zstandard >=0.19.0 + - blosc >=1.21.3 + - pytables >=3.8.0 + - openpyxl >=3.1.0 + - pyqt5 >=5.15.8 + - tabulate >=0.9.0 + license: BSD-3-Clause + license_family: BSD + size: 15162992 + timestamp: 1736811533875 +- conda: https://prefix.dev/conda-forge/osx-64/pandas-2.2.3-py312h98e817e_1.conda + sha256: 86c252ce5718b55129303f7d5c9a8664d8f0b23e303579142d09fcfd701e4fbe + md5: a7f7c58bbbfcdf820edb6e544555fe8f + depends: + - __osx >=10.13 + - libcxx >=17 + - numpy >=1.19,<3 + - numpy >=1.22.4 + - python >=3.12,<3.13.0a0 + - python-dateutil >=2.8.1 + - python-tzdata >=2022a + - python_abi 3.12.* *_cp312 + - pytz >=2020.1,<2024.2 + license: BSD-3-Clause + license_family: BSD + size: 14575645 + timestamp: 1726879062042 +- conda: https://prefix.dev/conda-forge/osx-arm64/pandas-2.2.3-py312hcd31e36_1.conda + sha256: ff0cb54b5d058c7987b4a0984066e893642d1865a7bb695294b6172e2fcdc457 + md5: c68bfa69e6086c381c74e16fd72613a8 + depends: + - __osx >=11.0 + - libcxx >=17 + - numpy >=1.19,<3 + - numpy >=1.22.4 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python-dateutil >=2.8.1 + - python-tzdata >=2022a + - python_abi 3.12.* *_cp312 + - pytz >=2020.1,<2024.2 + license: BSD-3-Clause + license_family: BSD + size: 14470437 + timestamp: 1726878887799 +- conda: https://prefix.dev/conda-forge/win-64/pandas-2.2.3-py312h72972c8_1.conda + sha256: dfd30e665b1ced1b783ca303799e250d8acc40943bcefb3a9b2bb13c3b17911c + md5: bf6f01c03e0688523d4b5cff8fe8c977 + depends: + - numpy >=1.19,<3 + - numpy >=1.22.4 + - python >=3.12,<3.13.0a0 + - python-dateutil >=2.8.1 + - python-tzdata >=2022a + - python_abi 3.12.* *_cp312 + - pytz >=2020.1,<2024.2 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 14218658 + timestamp: 1726879426348 +- conda: https://prefix.dev/conda-forge/linux-64/pango-1.56.3-h861ebed_0.conda + sha256: 6bc073dc2759cb00bc9e94c7142acab58432245c6e04d1cef179e8afd3b58d6f + md5: 6d853ca33bc46bce99ce16ccd83d0466 + depends: + - __glibc >=2.17,<3.0.a0 + - cairo >=1.18.4,<2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.13.3,<3.0a0 + - fribidi >=1.0.10,<2.0a0 + - harfbuzz >=10.4.0,<11.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libglib >=2.82.2,<3.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.1-or-later + size: 454553 + timestamp: 1742223788507 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pango-1.56.3-hd49db62_0.conda + sha256: 1ea36331cc6f4263e7132feae02b8d003046d3235c437df35b8a64a0567d1134 + md5: 317a25d64989f839c8af3005d0633f57 + depends: + - cairo >=1.18.4,<2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.13.3,<3.0a0 + - fribidi >=1.0.10,<2.0a0 + - harfbuzz >=10.4.0,<11.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libglib >=2.82.2,<3.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.1-or-later + size: 463913 + timestamp: 1742225355141 +- conda: https://prefix.dev/conda-forge/osx-64/pango-1.56.3-hf94f63b_0.conda + sha256: db1de2f9f004b8b7d743dbd073728a9b119955eded54d81b23f4de30fddaee1a + md5: 97db8d75606bc6923a0f5cc7fb9bbff3 + depends: + - __osx >=10.13 + - cairo >=1.18.4,<2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.13.3,<3.0a0 + - fribidi >=1.0.10,<2.0a0 + - harfbuzz >=10.4.0,<11.0a0 + - libexpat >=2.6.4,<3.0a0 + - libglib >=2.82.2,<3.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.1-or-later + size: 430760 + timestamp: 1742223943355 +- conda: https://prefix.dev/conda-forge/osx-arm64/pango-1.56.3-h73f1e88_0.conda + sha256: dac976052589a8a0778db1c1b6f279da200572ed9f265f3a6b7a1f217af4a5f0 + md5: aef5caa7ce0af969bfab789900982918 + depends: + - __osx >=11.0 + - cairo >=1.18.4,<2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.13.3,<3.0a0 + - fribidi >=1.0.10,<2.0a0 + - harfbuzz >=10.4.0,<11.0a0 + - libexpat >=2.6.4,<3.0a0 + - libglib >=2.82.2,<3.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.1-or-later + size: 425760 + timestamp: 1742224136308 +- conda: https://prefix.dev/conda-forge/win-64/pango-1.56.3-h286b592_0.conda + sha256: 33a89f2adeaedb8e55844d592cdaf0e3a3a79056f4c4a89d8ca24374b355a909 + md5: 7b64b640506109dd3cd6ccbd07748593 + depends: + - cairo >=1.18.4,<2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.13.3,<3.0a0 + - fribidi >=1.0.10,<2.0a0 + - harfbuzz >=10.4.0,<11.0a0 + - libexpat >=2.6.4,<3.0a0 + - libglib >=2.82.2,<3.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.1-or-later + size: 455359 + timestamp: 1742224127188 +- conda: https://prefix.dev/conda-forge/linux-64/pcl-1.15.0-h679aaff_0.conda + sha256: e539dc5db45d457d03229dcadadfd4df0206ea635b8a0a4a39d2bbb95c1a1c61 + md5: 6271a94b1ea042c10a5ed7326f5a8fca + depends: + - __glibc >=2.17,<3.0.a0 + - flann >=1.9.2,<1.9.3.0a0 + - glew >=2.1.0,<2.2.0a0 + - libboost >=1.86.0,<1.87.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libstdcxx >=13 + - qhull >=2020.2,<2020.3.0a0 + - qt6-main >=6.8.2,<6.9.0a0 + - vtk * qt* + - vtk-base >=9.3.1,<9.3.2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + license: BSD-3-Clause + license_family: BSD + size: 18091006 + timestamp: 1740351771446 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pcl-1.15.0-h29e8f2a_0.conda + sha256: 19a5bd1a80ca531bc22bcb891ebf683b5e504785942c8e6cae6e003bd0d302df + md5: 242928eb262963f3e51bded30b39404b + depends: + - flann >=1.9.2,<1.9.3.0a0 + - glew >=2.1.0,<2.2.0a0 + - libboost >=1.86.0,<1.87.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libstdcxx >=13 + - qhull >=2020.2,<2020.3.0a0 + - qt6-main >=6.8.2,<6.9.0a0 + - vtk * qt* + - vtk-base >=9.3.1,<9.3.2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + license: BSD-3-Clause + license_family: BSD + size: 17286765 + timestamp: 1740351503481 +- conda: https://prefix.dev/conda-forge/osx-64/pcl-1.15.0-h96d8db5_0.conda + sha256: eb06086987d8d5f1c866be7f81edda8b7c2fc762fcab1ceaa0a065e97b234e17 + md5: efded355224685f14e867122d4bc255b + depends: + - __osx >=11.0 + - flann >=1.9.2,<1.9.3.0a0 + - glew >=2.1.0,<2.2.0a0 + - libboost >=1.86.0,<1.87.0a0 + - libcxx >=18 + - libpng >=1.6.47,<1.7.0a0 + - qhull >=2020.2,<2020.3.0a0 + - qt6-main >=6.8.2,<6.9.0a0 + - vtk * qt* + - vtk-base >=9.3.1,<9.3.2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 13785855 + timestamp: 1740308676330 +- conda: https://prefix.dev/conda-forge/osx-arm64/pcl-1.15.0-hd09b3b3_0.conda + sha256: a215cbf37e77ce11e16ea393b58dc189de8792aec356fd66368fdc6c58a03fbd + md5: ff00d51db176c394147fb116ef56a933 + depends: + - __osx >=11.0 + - flann >=1.9.2,<1.9.3.0a0 + - glew >=2.1.0,<2.2.0a0 + - libboost >=1.86.0,<1.87.0a0 + - libcxx >=18 + - libpng >=1.6.47,<1.7.0a0 + - qhull >=2020.2,<2020.3.0a0 + - qt6-main >=6.8.2,<6.9.0a0 + - vtk * qt* + - vtk-base >=9.3.1,<9.3.2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 13164064 + timestamp: 1740309024219 +- conda: https://prefix.dev/conda-forge/win-64/pcl-1.15.0-hcec6b29_0.conda + sha256: 905537feee1d5094fa8a15813bedac215eb9dab4a3d3ccc3bbc35799070f9b0a + md5: 18b6a5229855713fe96777cfbc9d6975 + depends: + - flann >=1.9.2,<1.9.3.0a0 + - glew >=2.1.0,<2.2.0a0 + - libboost >=1.86.0,<1.87.0a0 + - libpng >=1.6.47,<1.7.0a0 + - qhull >=2020.2,<2020.3.0a0 + - qt6-main >=6.8.2,<6.9.0a0 + - tbb >=2021.13.0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - vtk * qt* + - vtk-base >=9.3.1,<9.3.2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 9220519 + timestamp: 1740311074546 +- conda: https://prefix.dev/conda-forge/linux-64/pcre2-10.44-hba22ea6_2.conda + sha256: 1087716b399dab91cc9511d6499036ccdc53eb29a288bebcb19cf465c51d7c0d + md5: df359c09c41cd186fffb93a2d87aa6f5 + depends: + - __glibc >=2.17,<3.0.a0 + - bzip2 >=1.0.8,<2.0a0 + - libgcc-ng >=12 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 952308 + timestamp: 1723488734144 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pcre2-10.44-h070dd5b_2.conda + sha256: e9f4b912e48514771d477f2ee955f59d4ff4ef799c3d4d16e4d0f335ce91df67 + md5: 94022de9682cb1a0bb18a99cbc3541b3 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libgcc-ng >=12 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 884590 + timestamp: 1723488793100 +- conda: https://prefix.dev/conda-forge/osx-64/pcre2-10.44-h7634a1b_2.conda + sha256: 336057fce69d45e1059f138beb38d60eb87ba858c3ad729ed49d9ecafd23669f + md5: 58cde0663f487778bcd7a0c8daf50293 + depends: + - __osx >=10.13 + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 854306 + timestamp: 1723488807216 +- conda: https://prefix.dev/conda-forge/osx-arm64/pcre2-10.44-h297a79d_2.conda + sha256: 83153c7d8fd99cab33c92ce820aa7bfed0f1c94fc57010cf227b6e3c50cb7796 + md5: 147c83e5e44780c7492998acbacddf52 + depends: + - __osx >=11.0 + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 618973 + timestamp: 1723488853807 +- conda: https://prefix.dev/conda-forge/win-64/pcre2-10.44-h3d7b363_2.conda + sha256: f4a12cbf8a7c5bfa2592b9dc92b492c438781898e5b02f397979b0be6e1b5851 + md5: a3a3baddcfb8c80db84bec3cb7746fb8 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 820831 + timestamp: 1723489427046 +- conda: https://prefix.dev/conda-forge/linux-64/pillow-11.1.0-py312h80c1187_0.conda + sha256: 5c347962202b55ae4d8a463e0555c5c6ca33396266a08284bf1384399894e541 + md5: d3894405f05b2c0f351d5de3ae26fa9c + depends: + - __glibc >=2.17,<3.0.a0 + - freetype >=2.12.1,<3.0a0 + - lcms2 >=2.16,<3.0a0 + - libgcc >=13 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libxcb >=1.17.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openjpeg >=2.5.3,<3.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - tk >=8.6.13,<8.7.0a0 + license: HPND + size: 42749785 + timestamp: 1735929845390 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pillow-11.1.0-py312h719f0cf_0.conda + sha256: 7559556ffc44bda777f85c2e5acd6b5756fa5822c0271b329b7b9a3c6bb20349 + md5: 77e0ec0a6fc847d317f204aa15b59f6b + depends: + - freetype >=2.12.1,<3.0a0 + - lcms2 >=2.16,<3.0a0 + - libgcc >=13 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libxcb >=1.17.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openjpeg >=2.5.3,<3.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - tk >=8.6.13,<8.7.0a0 + license: HPND + size: 41362848 + timestamp: 1735932311857 +- conda: https://prefix.dev/conda-forge/osx-64/pillow-11.1.0-py312hd9f36e3_0.conda + sha256: 3f6794fae455f2a1854cef4a3f3bb0bc9bfb68412dc64caf22cb797a455ef73b + md5: 3b4657a78aaca3af9b392b0657eb3e94 + depends: + - __osx >=10.13 + - freetype >=2.12.1,<3.0a0 + - lcms2 >=2.16,<3.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libxcb >=1.17.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openjpeg >=2.5.3,<3.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - tk >=8.6.13,<8.7.0a0 + license: HPND + size: 41737228 + timestamp: 1735930040353 +- conda: https://prefix.dev/conda-forge/osx-arm64/pillow-11.1.0-py312h50aef2c_0.conda + sha256: b29b7c915053e06a7a5b4118760202c572c9c35d23bd6ce8e73270b6a50e50ee + md5: 94d6ba8cd468668a9fb04193b0f4b36e + depends: + - __osx >=11.0 + - freetype >=2.12.1,<3.0a0 + - lcms2 >=2.16,<3.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libxcb >=1.17.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openjpeg >=2.5.3,<3.0a0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - tk >=8.6.13,<8.7.0a0 + license: HPND + size: 42852329 + timestamp: 1735930118976 +- conda: https://prefix.dev/conda-forge/win-64/pillow-10.4.0-py312h381445a_1.conda + sha256: 0b52e708ac4b72e6e1608de517cd4c8e6517dd525e23163a69bf73c7261399fc + md5: c57e54ae4acca720fb3a44bee93cb5b9 + depends: + - freetype >=2.12.1,<3.0a0 + - lcms2 >=2.16,<3.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.6.0,<4.8.0a0 + - libwebp-base >=1.4.0,<2.0a0 + - libxcb >=1.16,<2.0.0a0 + - libzlib >=1.3.1,<2.0a0 + - openjpeg >=2.5.2,<3.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - tk >=8.6.13,<8.7.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: HPND + size: 42468305 + timestamp: 1726075694989 +- conda: https://prefix.dev/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda + sha256: 585940f09d87787f79f73ff5dff8eb2af8a67e5bec5eebf2f553cd26c840ba69 + md5: 79b5c1440aedc5010f687048d9103628 + depends: + - python >=3.9,<3.13.0a0 + - setuptools + - wheel + license: MIT + license_family: MIT + size: 1256460 + timestamp: 1739142857253 +- conda: https://prefix.dev/conda-forge/linux-64/pivy-0.6.9-py312qt6hbe829da_2.conda + sha256: b8e0dd48fcc7f67c2afae4d01f32eefb3937b764c079cc16a6e621f6ea0eb011 + md5: b686ce12c5ada34b8309ee7ebb088499 + depends: + - __glibc >=2.17,<3.0.a0 + - coin3d >=4.0.3,<4.1.0a0 + - libgcc >=13 + - libstdcxx >=13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - qt6-main >=6.7.3,<6.9.0a0 + - soqt6 >=1.6.3,<1.6.4.0a0 + license: ISC + size: 2535854 + timestamp: 1728930543685 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pivy-0.6.9-py312qt6h5eb9031_2.conda + sha256: af308069de1dd91bbc97f5d9b5e919bd732e18fe22ca168dec730ea51932db5d + md5: f90f26d8d75db8ce1952189bed04d1a1 + depends: + - coin3d >=4.0.3,<4.1.0a0 + - libgcc >=13 + - libstdcxx >=13 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - qt6-main >=6.7.3,<6.9.0a0 + - soqt6 >=1.6.3,<1.6.4.0a0 + license: ISC + size: 2327903 + timestamp: 1728930768222 +- conda: https://prefix.dev/conda-forge/osx-64/pivy-0.6.9-py312qt6hf91b182_2.conda + sha256: adbe1f94cb092e2d3de66900b313b4870bd8ded1e48703cc3d89e13043e35606 + md5: 17f9430e2ac6722bcee5bb9ee5ab8318 + depends: + - __osx >=10.13 + - coin3d >=4.0.3,<4.1.0a0 + - libcxx >=17 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - qt6-main >=6.7.3,<6.9.0a0 + - soqt6 >=1.6.3,<1.6.4.0a0 + license: ISC + size: 2159019 + timestamp: 1728930706360 +- conda: https://prefix.dev/conda-forge/osx-arm64/pivy-0.6.9-py312qt6h0c4edc7_2.conda + sha256: c61feb44ff9ecb2271043a955df7410c4995c8d4ec1eb2e9efd79c1764c036c2 + md5: a0222595b81dbd140ccd13de6ed3bbce + depends: + - __osx >=11.0 + - coin3d >=4.0.3,<4.1.0a0 + - libcxx >=17 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - qt6-main >=6.7.3,<6.9.0a0 + - soqt6 >=1.6.3,<1.6.4.0a0 + license: ISC + size: 2082685 + timestamp: 1728930910435 +- conda: https://prefix.dev/conda-forge/win-64/pivy-0.6.9-py312qt6h8483413_2.conda + sha256: 47e8d792694a3f6db193795bb0f35c7f7ea77aa668e108b7af154afa3a010e31 + md5: 8a72a9aad972366c5aba10d6760528b6 + depends: + - coin3d >=4.0.3,<4.1.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - qt6-main >=6.7.3,<6.9.0a0 + - soqt6 >=1.6.3,<1.6.4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: ISC + size: 2700037 + timestamp: 1728931162705 +- conda: https://prefix.dev/conda-forge/linux-64/pixman-0.44.2-h29eaf8c_0.conda + sha256: 747c58db800d5583fee78e76240bf89cbaeedf7ab1ef339c2990602332b9c4be + md5: 5e2a7acfa2c24188af39e7944e1b3604 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: MIT + license_family: MIT + size: 381072 + timestamp: 1733698987122 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pixman-0.44.2-h86a87f0_0.conda + sha256: 289c88d26530e427234adf7a8eb11e762d2beaf3c0a337c1c9887f60480e33e1 + md5: 95689fc369832398e82d17c56ff5df8a + depends: + - libgcc >=13 + - libstdcxx >=13 + license: MIT + license_family: MIT + size: 288697 + timestamp: 1733700860569 +- conda: https://prefix.dev/conda-forge/osx-64/pixman-0.44.2-h1fd1274_0.conda + sha256: 7e5a9823e7e759355b954037f97d4aa53c26db1d73408571e749f8375b363743 + md5: 9d3ed4c1a6e21051bf4ce53851acdc96 + depends: + - __osx >=10.13 + - libcxx >=18 + license: MIT + license_family: MIT + size: 328548 + timestamp: 1733699069146 +- conda: https://prefix.dev/conda-forge/osx-arm64/pixman-0.44.2-h2f9eb0b_0.conda + sha256: 28855d4cb2d9fc9a6bd9196dadbaecd6868ec706394cec2f88824a61ba4b1bc0 + md5: fa8e429fdb9e5b757281f69b8cc4330b + depends: + - __osx >=11.0 + - libcxx >=18 + license: MIT + license_family: MIT + size: 201076 + timestamp: 1733699127167 +- conda: https://prefix.dev/conda-forge/win-64/pixman-0.44.2-had0cd8c_0.conda + sha256: 6648bd6e050f37c062ced1bbd4201dee617c3dacda1fc3a0de70335cf736f11b + md5: c720ac9a3bd825bf8b4dc7523ea49be4 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 455582 + timestamp: 1733699458861 +- conda: https://prefix.dev/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda + sha256: bae453e5cecf19cab23c2e8929c6e30f4866d996a8058be16c797ed4b935461f + md5: fd5062942bfa1b0bd5e0d2a4397b099e + depends: + - python >=3.9 + license: BSD-3-Clause + license_family: BSD + size: 49052 + timestamp: 1733239818090 +- conda: https://prefix.dev/conda-forge/linux-64/proj-9.5.1-h0054346_0.conda + sha256: 835afb9c8198895ec1ce2916320503d47bb0c25b75c228d744c44e505f1f4e3b + md5: 398cabfd9bd75e90d0901db95224f25f + depends: + - __glibc >=2.17,<3.0.a0 + - libcurl >=8.10.1,<9.0a0 + - libgcc >=13 + - libsqlite >=3.47.0,<4.0a0 + - libstdcxx >=13 + - libtiff >=4.7.0,<4.8.0a0 + - sqlite + constrains: + - proj4 ==999999999999 + license: MIT + license_family: MIT + size: 3108751 + timestamp: 1733138115896 +- conda: https://prefix.dev/conda-forge/linux-aarch64/proj-9.5.1-h9655f4d_0.conda + sha256: f1cf12e3f3101e3b5eec136b54d71c11dd8a9408f2574d1e0c8307908e0461d0 + md5: 60cc005fa3ce97967d435f92adfc7cf7 + depends: + - libcurl >=8.10.1,<9.0a0 + - libgcc >=13 + - libsqlite >=3.47.0,<4.0a0 + - libstdcxx >=13 + - libtiff >=4.7.0,<4.8.0a0 + - sqlite + constrains: + - proj4 ==999999999999 + license: MIT + license_family: MIT + size: 3038717 + timestamp: 1733139312143 +- conda: https://prefix.dev/conda-forge/osx-64/proj-9.5.1-h5273da6_0.conda + sha256: 5d35d13994abdc6a7dd1801f37db98e9efca5983f0479e380844264343ec8096 + md5: 523c87f13b2f99a96295993ede863b87 + depends: + - __osx >=10.13 + - libcurl >=8.10.1,<9.0a0 + - libcxx >=18 + - libsqlite >=3.47.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - sqlite + constrains: + - proj4 ==999999999999 + license: MIT + license_family: MIT + size: 2840582 + timestamp: 1733138585653 +- conda: https://prefix.dev/conda-forge/osx-arm64/proj-9.5.1-h1318a7e_0.conda + sha256: c6289d6f1a13f28ff3754ac0cb2553f7e7bc4a3102291115f62a04995d0421eb + md5: 5eb42e77ae79b46fabcb0f6f6d130763 + depends: + - __osx >=11.0 + - libcurl >=8.10.1,<9.0a0 + - libcxx >=18 + - libsqlite >=3.47.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - sqlite + constrains: + - proj4 ==999999999999 + license: MIT + license_family: MIT + size: 2673401 + timestamp: 1733138376056 +- conda: https://prefix.dev/conda-forge/win-64/proj-9.5.1-h4f671f6_0.conda + sha256: ddd0be6172e3903bc6602a93394e8051826235377c1ce8c6ba2435869794e726 + md5: 7303dac2aa92318f319508aedab6a127 + depends: + - libcurl >=8.10.1,<9.0a0 + - libsqlite >=3.47.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - sqlite + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - proj4 ==999999999999 + license: MIT + license_family: MIT + size: 2740461 + timestamp: 1733138695290 +- conda: https://prefix.dev/conda-forge/linux-64/propcache-0.2.1-py312h178313f_1.conda + sha256: 6d5ff6490c53e14591b70924711fe7bd70eb7fbeeeb1cbd9ed2f6d794ec8c4eb + md5: 349635694b4df27336bc15a49e9220e9 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: APACHE + size: 52947 + timestamp: 1737635699390 +- conda: https://prefix.dev/conda-forge/linux-aarch64/propcache-0.2.1-py312hcc812fe_1.conda + sha256: d759d8ab9c060b42cabf6312b9a04aa590daecabf1dd4e35731f4bc1b5c388bb + md5: 533b07e9fd835938f465225613825eee + depends: + - libgcc >=13 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: APACHE + size: 52776 + timestamp: 1737635802135 +- conda: https://prefix.dev/conda-forge/osx-64/propcache-0.2.1-py312h3520af0_1.conda + sha256: 04cd2c807af8ae2921e54c372620bb6d3391a7ad59c0aa566e4d21be0e558ae1 + md5: e712bcabf1db361f1350b638be66caca + depends: + - __osx >=10.13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: APACHE + size: 50297 + timestamp: 1737635702025 +- conda: https://prefix.dev/conda-forge/osx-arm64/propcache-0.2.1-py312h998013c_1.conda + sha256: 96145760baad111d7ae4213ea8f8cc035cf33b001f5ff37d92268e4d28b0941d + md5: 83678928c58c9ae76778a435b6c7a94a + depends: + - __osx >=11.0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: APACHE + size: 50942 + timestamp: 1737635896600 +- conda: https://prefix.dev/conda-forge/win-64/propcache-0.2.1-py312h31fea79_1.conda + sha256: 7c1ba527bd32d6a17884a288e059f8e57a7f007dbb0e8369e085fa46c644fa7b + md5: 97ad6f805e3cb55a575c3b5dee3e4b4c + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 49500 + timestamp: 1737636482838 +- conda: https://prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda + sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973 + md5: b3c17d95b5a10c6e64a21fa17573e70e + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 8252 + timestamp: 1726802366959 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pthread-stubs-0.4-h86ecc28_1002.conda + sha256: 977dfb0cb3935d748521dd80262fe7169ab82920afd38ed14b7fee2ea5ec01ba + md5: bb5a90c93e3bac3d5690acf76b4a6386 + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 8342 + timestamp: 1726803319942 +- conda: https://prefix.dev/conda-forge/osx-64/pthread-stubs-0.4-h00291cd_1002.conda + sha256: 05944ca3445f31614f8c674c560bca02ff05cb51637a96f665cb2bbe496099e5 + md5: 8bcf980d2c6b17094961198284b8e862 + depends: + - __osx >=10.13 + license: MIT + license_family: MIT + size: 8364 + timestamp: 1726802331537 +- conda: https://prefix.dev/conda-forge/osx-arm64/pthread-stubs-0.4-hd74edd7_1002.conda + sha256: 8ed65e17fbb0ca944bfb8093b60086e3f9dd678c3448b5de212017394c247ee3 + md5: 415816daf82e0b23a736a069a75e9da7 + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 8381 + timestamp: 1726802424786 +- conda: https://prefix.dev/conda-forge/win-64/pthread-stubs-0.4-hcd874cb_1001.tar.bz2 + sha256: bb5a6ddf1a609a63addd6d7b488b0f58d05092ea84e9203283409bff539e202a + md5: a1f820480193ea83582b13249a7e7bd9 + depends: + - m2w64-gcc-libs + license: MIT + license_family: MIT + size: 6417 + timestamp: 1606147814351 +- conda: https://prefix.dev/conda-forge/win-64/pthreads-win32-2.9.1-h2466b09_4.conda + sha256: b989bdcf0a22ba05a238adac1ad3452c11871681f565e509f629e225a26b7d45 + md5: cf98a67a1ec8040b42455002a24f0b0b + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.1-or-later + size: 265827 + timestamp: 1728400965968 +- conda: https://prefix.dev/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda + sha256: ea5f2d593177318f6b19af05018c953f41124cbb3bf21f9fdedfdb6ac42913ae + md5: 2c97dd90633508b422c11bd3018206ab + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + size: 114871 + timestamp: 1696182708943 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pugixml-1.14-h2f0025b_0.conda + sha256: 4f37f0a94bb465157e66f1a38ac1843f223db72b80c5e6a87ff354219ee86037 + md5: 9af93a191056b12e841b7d32f1b01b1c + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + size: 110831 + timestamp: 1696182637281 +- conda: https://prefix.dev/conda-forge/osx-64/pugixml-1.14-he965462_0.conda + sha256: 8ba30eb9ead058a19a472bb8e795ab408c629b0b84fc5bb7b6899e7429d5e625 + md5: 92f9416f48c010bf04c34c9841c84b09 + depends: + - libcxx >=15.0.7 + license: MIT + license_family: MIT + size: 94175 + timestamp: 1696182807580 +- conda: https://prefix.dev/conda-forge/osx-arm64/pugixml-1.14-h13dd4ca_0.conda + sha256: 0bfeac4f1a374da9ff0a322344cdab577d397d6a0a0e5591f08cb7b491926825 + md5: 4de774bb04e03af9704ec1a2618c636c + depends: + - libcxx >=15.0.7 + license: MIT + license_family: MIT + size: 92472 + timestamp: 1696182843052 +- conda: https://prefix.dev/conda-forge/win-64/pugixml-1.14-h63175ca_0.conda + sha256: 68a5cb9a7560b2ce0d72ccebc7f6623e13ca66a67f80feb1094a75199bd1a50c + md5: 6794ab7a1f26ebfe0452297eba029d4f + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 111324 + timestamp: 1696182979614 +- conda: https://prefix.dev/conda-forge/linux-64/pulseaudio-client-17.0-hb77b528_0.conda + sha256: b27c0c8671bd95c205a61aeeac807c095b60bc76eb5021863f919036d7a964fc + md5: 07f45f1be1c25345faddb8db0de8039b + depends: + - dbus >=1.13.6,<2.0a0 + - libgcc-ng >=12 + - libglib >=2.78.3,<3.0a0 + - libsndfile >=1.2.2,<1.3.0a0 + - libsystemd0 >=255 + constrains: + - pulseaudio 17.0 *_0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 757633 + timestamp: 1705690081905 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pulseaudio-client-17.0-h729494f_0.conda + sha256: 209eac3123ee2c84a35401626941c4aa64e04e2c9854084ddeba6432c6078a41 + md5: f35f57712d5c2abca98c85a51a408bc1 + depends: + - dbus >=1.13.6,<2.0a0 + - libgcc-ng >=12 + - libglib >=2.78.3,<3.0a0 + - libsndfile >=1.2.2,<1.3.0a0 + - libsystemd0 >=255 + constrains: + - pulseaudio 17.0 *_0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 766184 + timestamp: 1705690164726 +- conda: https://prefix.dev/conda-forge/linux-64/py-opencv-4.10.0-qt6_py312he3389d8_615.conda + sha256: 72908cda1bc7eba5005069d52b67e208ca222646d51d5211a64adf9da35bc2da + md5: 641aceaf5a0af8929fb680d6ef56f432 + depends: + - hdf5 >=1.14.4,<1.14.5.0a0 + - libopencv 4.10.0 qt6_py312h02963e2_615 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - numpy >=1.19,<3 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 1152915 + timestamp: 1735820253554 +- conda: https://prefix.dev/conda-forge/linux-aarch64/py-opencv-4.10.0-headless_py312h7c5359c_15.conda + sha256: 421ab1a05f050169b53b75d757b116c5f3721c244b0f1ac97ed4e78296a27b47 + md5: 9dff66e8d6ce82272c6c298ec0438353 + depends: + - hdf5 >=1.14.4,<1.14.5.0a0 + - libopencv 4.10.0 headless_py312h664d0dd_15 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - numpy >=1.19,<3 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 1153459 + timestamp: 1735823237055 +- conda: https://prefix.dev/conda-forge/osx-64/py-opencv-4.10.0-headless_py312hae307ac_15.conda + sha256: a1530b440ad9e13afae32f48d47dcaa3cf339b808150c97f0584ecd0cccd3424 + md5: fadd83d2f81e068720a8cba686d64976 + depends: + - hdf5 >=1.14.4,<1.14.5.0a0 + - libopencv 4.10.0 headless_py312hd33687b_15 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - numpy >=1.19,<3 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 1153394 + timestamp: 1735820287137 +- conda: https://prefix.dev/conda-forge/osx-arm64/py-opencv-4.10.0-headless_py312h660ad0e_15.conda + sha256: 9186d6caa61f95bb26a4e1b3b0aa1bdd0190867d37bda7ac42a741c639d69eb3 + md5: 9f4da410e23ce852807bfa976914f5bc + depends: + - hdf5 >=1.14.4,<1.14.5.0a0 + - libopencv 4.10.0 headless_py312hb22ed7f_15 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - numpy >=1.19,<3 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 1153499 + timestamp: 1735824846492 +- conda: https://prefix.dev/conda-forge/win-64/py-opencv-4.10.0-qt6_py312he23ae38_615.conda + sha256: 3b75f543dfcb6b03f180a0aa05ba3a516439811f079860867e336c00f774a42e + md5: 3551ea0cf00afe52c4ea816c751e3cdb + depends: + - hdf5 >=1.14.4,<1.14.5.0a0 + - libopencv 4.10.0 qt6_py312h50f3c70_615 + - libprotobuf >=5.28.3,<5.28.4.0a0 + - numpy >=1.19,<3 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 1153836 + timestamp: 1735825022033 +- conda: https://prefix.dev/conda-forge/noarch/pycollada-0.9-pyhd8ed1ab_0.conda + sha256: c0a9219e2e9d49637a916cd4499e0875cbdc5138ff1ca027317e3b6a8456f83c + md5: ed2a67ead9eb1b334d0bba5b62da576c + depends: + - numpy + - python >=3.9 + - python-dateutil >=2.2 + license: BSD + license_family: BSD + size: 91884 + timestamp: 1739782331491 +- conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 + md5: 12c566707c80111f9799308d9e265aef + depends: + - python >=3.9 + - python + license: BSD-3-Clause + license_family: BSD + size: 110100 + timestamp: 1733195786147 +- conda: https://prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda + sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 + md5: 513d3c262ee49b54a8fec85c5bc99764 + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 95988 + timestamp: 1743089832359 +- conda: https://prefix.dev/conda-forge/linux-64/pyside6-6.8.2-py312h91f0f75_1.conda + sha256: 6569b51ed41e46957e6587a705a930681375accd737c677acae883089f50a2a8 + md5: 8baf6a8672bf235afede64de7a7da1c2 + depends: + - __glibc >=2.17,<3.0.a0 + - libclang13 >=19.1.7 + - libegl >=1.7.0,<2.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libopengl >=1.7.0,<2.0a0 + - libstdcxx >=13 + - libxml2 >=2.13.6,<3.0a0 + - libxslt >=1.1.39,<2.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - qt6-main 6.8.2.* + - qt6-main >=6.8.2,<6.9.0a0 + license: LGPL-3.0-only + license_family: LGPL + size: 10898802 + timestamp: 1740757230072 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pyside6-6.8.2-py312hdd999d0_1.conda + sha256: 75feac01b65d14911e3e1f47f8d661b61025808d05e26cda2d7f7b06dbda30a1 + md5: 9ef8d1d4d60ba1f81cd1d1e457b3b580 + depends: + - libclang13 >=19.1.7 + - libegl >=1.7.0,<2.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libopengl >=1.7.0,<2.0a0 + - libstdcxx >=13 + - libxml2 >=2.13.6,<3.0a0 + - libxslt >=1.1.39,<2.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - qt6-main 6.8.2.* + - qt6-main >=6.8.2,<6.9.0a0 + license: LGPL-3.0-only + license_family: LGPL + size: 7928357 + timestamp: 1740757372232 +- conda: https://prefix.dev/conda-forge/osx-64/pyside6-6.8.2-py312h6cdf32b_1.conda + sha256: a9e0c1ff1519a3f38e46a3b8f9f8041b1223294397dfb056937a67dcff928d07 + md5: bc5c70242742df2a4e5aea132ed6e719 + depends: + - __osx >=11.0 + - libclang13 >=18.1.8 + - libcxx >=18 + - libxml2 >=2.13.6,<3.0a0 + - libxslt >=1.1.39,<2.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - qt6-main 6.8.2.* + - qt6-main >=6.8.2,<6.9.0a0 + license: LGPL-3.0-only + license_family: LGPL + size: 12810879 + timestamp: 1740757454739 +- conda: https://prefix.dev/conda-forge/osx-arm64/pyside6-6.8.2-py312h8c66da3_1.conda + sha256: bf0ad1893cbbd24ccfa03a22c3b0d0a5e6c44339002c4959f97d809cd6f09597 + md5: 6ae76b095e3c2bea1f532666d253109c + depends: + - __osx >=11.0 + - libclang13 >=18.1.8 + - libcxx >=18 + - libxml2 >=2.13.6,<3.0a0 + - libxslt >=1.1.39,<2.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - qt6-main 6.8.2.* + - qt6-main >=6.8.2,<6.9.0a0 + license: LGPL-3.0-only + license_family: LGPL + size: 12385245 + timestamp: 1740758165308 +- conda: https://prefix.dev/conda-forge/win-64/pyside6-6.8.2-py312h2ee7485_1.conda + sha256: 4adddc5d8fbded682f63bdfce8e9d2051f0de16d9d95b3e7e6afbdee3c5a516d + md5: 3181e883064c2c457d4bc04068c73341 + depends: + - libclang13 >=19.1.7 + - libxml2 >=2.13.6,<3.0a0 + - libxslt >=1.1.39,<2.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - qt6-main 6.8.2.* + - qt6-main >=6.8.2,<6.9.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-3.0-only + license_family: LGPL + size: 9763312 + timestamp: 1740757634042 +- conda: https://prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyh09c184e_7.conda + sha256: d016e04b0e12063fbee4a2d5fbb9b39a8d191b5a0042f0b8459188aedeabb0ca + md5: e2fd202833c4a981ce8a65974fe4abd1 + depends: + - __win + - python >=3.9 + - win_inet_pton + license: BSD-3-Clause + license_family: BSD + size: 21784 + timestamp: 1733217448189 +- conda: https://prefix.dev/conda-forge/noarch/pysocks-1.7.1-pyha55dd90_7.conda + sha256: ba3b032fa52709ce0d9fd388f63d330a026754587a2f461117cac9ab73d8d0d8 + md5: 461219d1a5bd61342293efa2c0c90eac + depends: + - __unix + - python >=3.9 + license: BSD-3-Clause + license_family: BSD + size: 21085 + timestamp: 1733217331982 +- conda: https://prefix.dev/conda-forge/linux-64/python-3.12.9-h9e4cc4f_1_cpython.conda + build_number: 1 + sha256: 77f2073889d4c91a57bc0da73a0466d9164dbcf6191ea9c3a7be6872f784d625 + md5: d82342192dfc9145185190e651065aa9 + depends: + - __glibc >=2.17,<3.0.a0 + - bzip2 >=1.0.8,<2.0a0 + - ld_impl_linux-64 >=2.36.1 + - libexpat >=2.6.4,<3.0a0 + - libffi >=3.4,<4.0a0 + - libgcc >=13 + - liblzma >=5.6.4,<6.0a0 + - libnsl >=2.0.1,<2.1.0a0 + - libsqlite >=3.49.1,<4.0a0 + - libuuid >=2.38.1,<3.0a0 + - libxcrypt >=4.4.36 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - openssl >=3.4.1,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + constrains: + - python_abi 3.12.* *_cp312 + license: Python-2.0 + size: 31670716 + timestamp: 1741130026152 +- conda: https://prefix.dev/conda-forge/linux-aarch64/python-3.12.9-h1683364_1_cpython.conda + build_number: 1 + sha256: af49622427ab0cf64efc0db91f505f974f6d24dce8df298e0cc1de3ccd321f67 + md5: 780ac8d332b0711766c121e4f835ba5d + depends: + - bzip2 >=1.0.8,<2.0a0 + - ld_impl_linux-aarch64 >=2.36.1 + - libexpat >=2.6.4,<3.0a0 + - libffi >=3.4,<4.0a0 + - libgcc >=13 + - liblzma >=5.6.4,<6.0a0 + - libnsl >=2.0.1,<2.1.0a0 + - libsqlite >=3.49.1,<4.0a0 + - libuuid >=2.38.1,<3.0a0 + - libxcrypt >=4.4.36 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - openssl >=3.4.1,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + constrains: + - python_abi 3.12.* *_cp312 + license: Python-2.0 + size: 13763839 + timestamp: 1741128029222 +- conda: https://prefix.dev/conda-forge/osx-64/python-3.12.9-h9ccd52b_1_cpython.conda + build_number: 1 + sha256: c394f7068a714cad7853992f18292bb34c6d99fe7c21025664b05069c86b9450 + md5: b878567b6b749f993dbdbc2834115bc3 + depends: + - __osx >=10.13 + - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.6.4,<3.0a0 + - libffi >=3.4,<4.0a0 + - liblzma >=5.6.4,<6.0a0 + - libsqlite >=3.49.1,<4.0a0 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - openssl >=3.4.1,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + constrains: + - python_abi 3.12.* *_cp312 + license: Python-2.0 + size: 13833024 + timestamp: 1741129416409 +- conda: https://prefix.dev/conda-forge/osx-arm64/python-3.12.9-hc22306f_1_cpython.conda + build_number: 1 + sha256: fe804fc462396baab8abe525a722d0254c839533c98c47abd2c6d1248ad45e93 + md5: d9fac7b334ff6e5f93abd27509a53060 + depends: + - __osx >=11.0 + - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.6.4,<3.0a0 + - libffi >=3.4,<4.0a0 + - liblzma >=5.6.4,<6.0a0 + - libsqlite >=3.49.1,<4.0a0 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - openssl >=3.4.1,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + constrains: + - python_abi 3.12.* *_cp312 + license: Python-2.0 + size: 13042031 + timestamp: 1741128584924 +- conda: https://prefix.dev/conda-forge/win-64/python-3.12.9-h3f84c4b_1_cpython.conda + build_number: 1 + sha256: 320acd0095442a451c4e0f0f896bed2f52b3b8f05df41774e5b0b433d9fa08e0 + md5: f0a0ad168b815fee4ce9718d4e6c1925 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.6.4,<3.0a0 + - libffi >=3.4,<4.0a0 + - liblzma >=5.6.4,<6.0a0 + - libsqlite >=3.49.1,<4.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.1,<4.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - python_abi 3.12.* *_cp312 + license: Python-2.0 + size: 15935206 + timestamp: 1741128459438 +- conda: https://prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_1.conda + sha256: a50052536f1ef8516ed11a844f9413661829aa083304dc624c5925298d078d79 + md5: 5ba79d7c71f03c678c8ead841f347d6e + depends: + - python >=3.9 + - six >=1.5 + license: Apache-2.0 + license_family: APACHE + size: 222505 + timestamp: 1733215763718 +- conda: https://prefix.dev/conda-forge/noarch/python-tzdata-2025.2-pyhd8ed1ab_0.conda + sha256: e8392a8044d56ad017c08fec2b0eb10ae3d1235ac967d0aab8bd7b41c4a5eaf0 + md5: 88476ae6ebd24f39261e0854ac244f33 + depends: + - python >=3.9 + license: Apache-2.0 + license_family: APACHE + size: 144160 + timestamp: 1742745254292 +- conda: https://prefix.dev/conda-forge/linux-64/python_abi-3.12-6_cp312.conda + build_number: 6 + sha256: 09aff7ca31d1dbee63a504dba89aefa079b7c13a50dae18e1fe40a40ea71063e + md5: 95bd67b1113859774c30418e8481f9d8 + constrains: + - python 3.12.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 6872 + timestamp: 1743483197238 +- conda: https://prefix.dev/conda-forge/linux-aarch64/python_abi-3.12-6_cp312.conda + build_number: 6 + sha256: 1432664e212adf8a8e9ae4ce2c1dffb4494c7c12a50b1ebbb76819a5d2c9a23a + md5: c5120990ae43910ccc73159698640250 + constrains: + - python 3.12.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 6919 + timestamp: 1743483181416 +- conda: https://prefix.dev/conda-forge/osx-64/python_abi-3.12-6_cp312.conda + build_number: 6 + sha256: abbe800dc60cfe459be68a4f3fd946b09ae573c586efb3396ee48634ee3723ad + md5: e6096b1328952bbe07342f8927940ea9 + constrains: + - python 3.12.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 6929 + timestamp: 1743483235505 +- conda: https://prefix.dev/conda-forge/osx-arm64/python_abi-3.12-6_cp312.conda + build_number: 6 + sha256: 5ed89c380e790b07f9a2e27de39445d2209fcdeb304577bc910884922648acc0 + md5: 3d84f3f8c97233b20d64019d3b9aea97 + constrains: + - python 3.12.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 6937 + timestamp: 1743483237548 +- conda: https://prefix.dev/conda-forge/win-64/python_abi-3.12-6_cp312.conda + build_number: 6 + sha256: a36a7ba34e5e459da2ba89c3b4021798db26768562f01c00f07a6b33f4a16987 + md5: fd9176ac032bea8da0cfcc6fa3f724f1 + constrains: + - python 3.12.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 7414 + timestamp: 1743483208797 +- conda: https://prefix.dev/conda-forge/linux-64/pythonocc-core-7.8.1.1-all_h2b018f6_200.conda + sha256: fda501ba8bde3901363f15938eb3783819768a078d8154b14fb02714b1a4291e + md5: 76cd07b85a8d6fe3cd7a3d2f11785b55 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - numpy >=1.19,<3 + - occt 7.8.1 *all* + - occt >=7.8.1,<7.8.2.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - svgwrite + constrains: + - occt 7.8.1 *all* + license: LGPL-3.0-or-later + license_family: LGPL + size: 58263320 + timestamp: 1734428955171 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pythonocc-core-7.8.1.1-all_h1892dc3_200.conda + sha256: a9280106c74ea11be120da56d11d460569986ed3fa1a08a4bf353c3341b7d01c + md5: cc791214340f7fdae98689f196d1e6b6 + depends: + - libgcc >=13 + - libstdcxx >=13 + - numpy >=1.19,<3 + - occt 7.8.1 *all* + - occt >=7.8.1,<7.8.2.0a0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - svgwrite + constrains: + - occt 7.8.1 *all* + license: LGPL-3.0-or-later + license_family: LGPL + size: 48987317 + timestamp: 1734428969589 +- conda: https://prefix.dev/conda-forge/osx-64/pythonocc-core-7.8.1.1-all_h7c11160_200.conda + sha256: 5b05b9e90f08da0568c8312a776e4ad846ae16721c607538e29ba23ce093640e + md5: afc134cc778f177bd8abaaec855cff54 + depends: + - __osx >=10.13 + - libcxx >=18 + - numpy >=1.19,<3 + - occt 7.8.1 *all* + - occt >=7.8.1,<7.8.2.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - svgwrite + constrains: + - occt 7.8.1 *all* + license: LGPL-3.0-or-later + license_family: LGPL + size: 45881956 + timestamp: 1734427395197 +- conda: https://prefix.dev/conda-forge/osx-arm64/pythonocc-core-7.8.1.1-all_h4a50698_200.conda + sha256: b1e9dd1921ab0fb2cdb54e9e71695fb62f59497e6db0b9ddc328548204515df8 + md5: dd0d8c50366ac2d7f9378fb1c669772c + depends: + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.19,<3 + - occt 7.8.1 *all* + - occt >=7.8.1,<7.8.2.0a0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - svgwrite + constrains: + - occt 7.8.1 *all* + license: LGPL-3.0-or-later + license_family: LGPL + size: 47281748 + timestamp: 1734427260923 +- conda: https://prefix.dev/conda-forge/win-64/pythonocc-core-7.8.1.1-all_h86126fc_200.conda + sha256: 06b85f5c8c133f21671f4b4a36e39352622dce80ba181ad0c80bf947b5a575b8 + md5: 1223b3fcf9a71abec06857e4b666fffe + depends: + - numpy >=1.19,<3 + - occt 7.8.1 *all* + - occt >=7.8.1,<7.8.2.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - svgwrite + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - occt 7.8.1 *all* + license: LGPL-3.0-or-later + license_family: LGPL + size: 40015503 + timestamp: 1734430188277 +- conda: https://prefix.dev/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda + sha256: 1a7d6b233f7e6e3bbcbad054c8fd51e690a67b129a899a056a5e45dd9f00cb41 + md5: 3eeeeb9e4827ace8c0c1419c85d590ad + depends: + - python >=3.7 + license: MIT + license_family: MIT + size: 188538 + timestamp: 1706886944988 +- conda: https://prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py312h178313f_2.conda + sha256: 159cba13a93b3fe084a1eb9bda0a07afc9148147647f0d437c3c3da60980503b + md5: cf2485f39740de96e2a7f2bb18ed2fee + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + size: 206903 + timestamp: 1737454910324 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pyyaml-6.0.2-py312hcc812fe_2.conda + sha256: dc78e41d51300722ba35ac4a10d37339ceffbe22d7501c71dfd3f633a4f8e79a + md5: 4de4a5ff81c941674e08595244e7cd61 + depends: + - libgcc >=13 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + size: 199172 + timestamp: 1737454840766 +- conda: https://prefix.dev/conda-forge/osx-64/pyyaml-6.0.2-py312h3520af0_2.conda + sha256: de96d83b805dba03422d39e855fb33cbeedc8827235d6f76407a3b42dc085910 + md5: 4a2d83ac55752681d54f781534ddd209 + depends: + - __osx >=10.13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + size: 193577 + timestamp: 1737454858212 +- conda: https://prefix.dev/conda-forge/osx-arm64/pyyaml-6.0.2-py312h998013c_2.conda + sha256: ad225ad24bfd60f7719709791345042c3cb32da1692e62bd463b084cf140e00d + md5: 68149ed4d4e9e1c42d2ba1f27f08ca96 + depends: + - __osx >=11.0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + size: 192148 + timestamp: 1737454886351 +- conda: https://prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py312h31fea79_2.conda + sha256: 76fec03ef7e67e37724873e1f805131fb88efb57f19e9a77b4da616068ef5c28 + md5: ba00a2e5059c1fde96459858537cc8f5 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + size: 181734 + timestamp: 1737455207230 +- conda: https://prefix.dev/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda + sha256: 776363493bad83308ba30bcb88c2552632581b143e8ee25b1982c8c743e73abc + md5: 353823361b1d27eb3960efb076dfcaf6 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: LicenseRef-Qhull + size: 552937 + timestamp: 1720813982144 +- conda: https://prefix.dev/conda-forge/linux-aarch64/qhull-2020.2-h70be974_5.conda + sha256: 49f777bdf3c5e030a8c7b24c58cdfe9486b51d6ae0001841079a3228bdf9fb51 + md5: bb138086d938e2b64f5f364945793ebf + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: LicenseRef-Qhull + size: 554571 + timestamp: 1720813941183 +- conda: https://prefix.dev/conda-forge/osx-64/qhull-2020.2-h3c5361c_5.conda + sha256: 79d804fa6af9c750e8b09482559814ae18cd8df549ecb80a4873537a5a31e06e + md5: dd1ea9ff27c93db7c01a7b7656bd4ad4 + depends: + - __osx >=10.13 + - libcxx >=16 + license: LicenseRef-Qhull + size: 528122 + timestamp: 1720814002588 +- conda: https://prefix.dev/conda-forge/osx-arm64/qhull-2020.2-h420ef59_5.conda + sha256: 873ac689484262a51fd79bc6103c1a1bedbf524924d7f0088fb80703042805e4 + md5: 6483b1f59526e05d7d894e466b5b6924 + depends: + - __osx >=11.0 + - libcxx >=16 + license: LicenseRef-Qhull + size: 516376 + timestamp: 1720814307311 +- conda: https://prefix.dev/conda-forge/win-64/qhull-2020.2-hc790b64_5.conda + sha256: 887d53486a37bd870da62b8fa2ebe3993f912ad04bd755e7ed7c47ced97cbaa8 + md5: 854fbdff64b572b5c0b470f334d34c11 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LicenseRef-Qhull + size: 1377020 + timestamp: 1720814433486 +- conda: https://prefix.dev/conda-forge/linux-64/qt6-main-6.8.2-h588cce1_0.conda + sha256: 8776405bb5b256456fa1749bd26946944577f2d73b8c749f9d7c1a5c187bdca2 + md5: 4d483b12b9fc7169d112d4f7a250c05c + depends: + - __glibc >=2.17,<3.0.a0 + - alsa-lib >=1.2.13,<1.3.0a0 + - dbus >=1.13.6,<2.0a0 + - double-conversion >=3.3.0,<3.4.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - harfbuzz >=10.2.0,<11.0a0 + - icu >=75.1,<76.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libclang-cpp19.1 >=19.1.7,<19.2.0a0 + - libclang13 >=19.1.7 + - libcups >=2.3.3,<2.4.0a0 + - libdrm >=2.4.124,<2.5.0a0 + - libegl >=1.7.0,<2.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libglib >=2.82.2,<3.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libllvm19 >=19.1.7,<19.2.0a0 + - libpng >=1.6.46,<1.7.0a0 + - libpq >=17.2,<18.0a0 + - libsqlite >=3.48.0,<4.0a0 + - libstdcxx >=13 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libxcb >=1.17.0,<2.0a0 + - libxkbcommon >=1.7.0,<2.0a0 + - libxml2 >=2.13.5,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - mysql-libs >=9.0.1,<9.1.0a0 + - openssl >=3.4.0,<4.0a0 + - pcre2 >=10.44,<10.45.0a0 + - wayland >=1.23.1,<2.0a0 + - xcb-util >=0.4.1,<0.5.0a0 + - xcb-util-cursor >=0.1.5,<0.2.0a0 + - xcb-util-image >=0.4.0,<0.5.0a0 + - xcb-util-keysyms >=0.4.1,<0.5.0a0 + - xcb-util-renderutil >=0.3.10,<0.4.0a0 + - xcb-util-wm >=0.4.2,<0.5.0a0 + - xorg-libice >=1.1.2,<2.0a0 + - xorg-libsm >=1.2.5,<2.0a0 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxcomposite >=0.4.6,<1.0a0 + - xorg-libxcursor >=1.2.3,<2.0a0 + - xorg-libxdamage >=1.1.6,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxrandr >=1.5.4,<2.0a0 + - xorg-libxtst >=1.2.5,<2.0a0 + - xorg-libxxf86vm >=1.1.6,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - qt 6.8.2 + license: LGPL-3.0-only + license_family: LGPL + size: 51501033 + timestamp: 1738333763120 +- conda: https://prefix.dev/conda-forge/linux-aarch64/qt6-main-6.8.2-ha0a94ed_0.conda + sha256: 81fa08334a315ce15a5c339ddc12a6454a48a73c5e699bb12039919a4dd0fadc + md5: 21fa1939628fc6af0aa96e5f830d418b + depends: + - alsa-lib >=1.2.13,<1.3.0a0 + - dbus >=1.13.6,<2.0a0 + - double-conversion >=3.3.0,<3.4.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - harfbuzz >=10.2.0,<11.0a0 + - icu >=75.1,<76.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libclang-cpp19.1 >=19.1.7,<19.2.0a0 + - libclang13 >=19.1.7 + - libcups >=2.3.3,<2.4.0a0 + - libdrm >=2.4.124,<2.5.0a0 + - libegl >=1.7.0,<2.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libglib >=2.82.2,<3.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libllvm19 >=19.1.7,<19.2.0a0 + - libpng >=1.6.46,<1.7.0a0 + - libpq >=17.2,<18.0a0 + - libsqlite >=3.48.0,<4.0a0 + - libstdcxx >=13 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libxcb >=1.17.0,<2.0a0 + - libxkbcommon >=1.7.0,<2.0a0 + - libxml2 >=2.13.5,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - mysql-libs >=9.0.1,<9.1.0a0 + - openssl >=3.4.0,<4.0a0 + - pcre2 >=10.44,<10.45.0a0 + - wayland >=1.23.1,<2.0a0 + - xcb-util >=0.4.1,<0.5.0a0 + - xcb-util-cursor >=0.1.5,<0.2.0a0 + - xcb-util-image >=0.4.0,<0.5.0a0 + - xcb-util-keysyms >=0.4.1,<0.5.0a0 + - xcb-util-renderutil >=0.3.10,<0.4.0a0 + - xcb-util-wm >=0.4.2,<0.5.0a0 + - xorg-libice >=1.1.2,<2.0a0 + - xorg-libsm >=1.2.5,<2.0a0 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxcomposite >=0.4.6,<1.0a0 + - xorg-libxcursor >=1.2.3,<2.0a0 + - xorg-libxdamage >=1.1.6,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxrandr >=1.5.4,<2.0a0 + - xorg-libxtst >=1.2.5,<2.0a0 + - xorg-libxxf86vm >=1.1.6,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - qt 6.8.2 + license: LGPL-3.0-only + license_family: LGPL + size: 53744351 + timestamp: 1738348492388 +- conda: https://prefix.dev/conda-forge/osx-64/qt6-main-6.8.2-h35a4a19_0.conda + sha256: fced54d3ad98360830ca5ebc81258562227c932bdb59276c0d990f19f134b1ee + md5: 329f05ec7a7d619fd40c4fc2d98d12f2 + depends: + - __osx >=11.0 + - double-conversion >=3.3.0,<3.4.0a0 + - harfbuzz >=10.2.0,<11.0a0 + - icu >=75.1,<76.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libclang-cpp18.1 >=18.1.8,<18.2.0a0 + - libclang13 >=18.1.8 + - libcxx >=18 + - libglib >=2.82.2,<3.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libllvm18 >=18.1.8,<18.2.0a0 + - libpng >=1.6.46,<1.7.0a0 + - libpq >=17.2,<18.0a0 + - libsqlite >=3.48.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - mysql-libs >=9.0.1,<9.1.0a0 + - openssl >=3.4.0,<4.0a0 + - pcre2 >=10.44,<10.45.0a0 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - qt 6.8.2 + license: LGPL-3.0-only + license_family: LGPL + size: 46431741 + timestamp: 1738335169489 +- conda: https://prefix.dev/conda-forge/osx-arm64/qt6-main-6.8.2-h4464394_0.conda + sha256: d2bc1909f9ae3f07609a37c4bdd792e3a60c1e7d30a24b7e9d0d7aba3c16eb95 + md5: 5803535bad649daab10776fbc6dc2ad4 + depends: + - __osx >=11.0 + - double-conversion >=3.3.0,<3.4.0a0 + - harfbuzz >=10.2.0,<11.0a0 + - icu >=75.1,<76.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libclang-cpp18.1 >=18.1.8,<18.2.0a0 + - libclang13 >=18.1.8 + - libcxx >=18 + - libglib >=2.82.2,<3.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libllvm18 >=18.1.8,<18.2.0a0 + - libpng >=1.6.46,<1.7.0a0 + - libpq >=17.2,<18.0a0 + - libsqlite >=3.48.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - mysql-libs >=9.0.1,<9.1.0a0 + - openssl >=3.4.0,<4.0a0 + - pcre2 >=10.44,<10.45.0a0 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - qt 6.8.2 + license: LGPL-3.0-only + license_family: LGPL + size: 44469261 + timestamp: 1738348278403 +- conda: https://prefix.dev/conda-forge/win-64/qt6-main-6.8.2-h1259614_0.conda + sha256: 9646ef327f3deba284a043bfdee69e1b6e52214af343992b149d445ba3fa7841 + md5: d4efb20c96c35ad07dc9be1069f1c5f4 + depends: + - double-conversion >=3.3.0,<3.4.0a0 + - harfbuzz >=10.2.0,<11.0a0 + - icu >=75.1,<76.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libclang13 >=19.1.7 + - libglib >=2.82.2,<3.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.46,<1.7.0a0 + - libsqlite >=3.48.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.4.0,<4.0a0 + - pcre2 >=10.44,<10.45.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - qt 6.8.2 + license: LGPL-3.0-only + license_family: LGPL + size: 94138960 + timestamp: 1738337004104 +- conda: https://prefix.dev/conda-forge/linux-64/rapidjson-1.1.0.post20240409-h3f2d84a_2.conda + sha256: f87f265263a1ddbc50b98e2c2bcaa2bac63da3acc09267815dd0f4bd614cd902 + md5: 65e2f30d532b4ae2063a424c185cc678 + depends: + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + license: MIT + license_family: MIT + size: 156074 + timestamp: 1742820732296 +- conda: https://prefix.dev/conda-forge/linux-aarch64/rapidjson-1.1.0.post20240409-h5ad3122_2.conda + sha256: 23bea89944146065881d95b3532a02634ccb3e22cd6bdb0f1dab784bf2c6e23f + md5: 1bc039af0f3316386d1e6df28e1e44f3 + depends: + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + license: MIT + license_family: MIT + size: 157209 + timestamp: 1742820749175 +- conda: https://prefix.dev/conda-forge/osx-64/rapidjson-1.1.0.post20240409-h92383a6_2.conda + sha256: 978580bd85c5cabca47b0f2a6ad4f22340858aa51b0c86537716bd93ca505e9e + md5: 34a2ae1d4771d5ba5b819075cf7c3d67 + depends: + - __osx >=10.13 + - libcxx >=18 + license: MIT + license_family: MIT + size: 156314 + timestamp: 1742820725403 +- conda: https://prefix.dev/conda-forge/osx-arm64/rapidjson-1.1.0.post20240409-ha1acc90_2.conda + sha256: bb5044f7871a1b87403e9ab8c0c314f932a1200841e397dadbd63d0fd5e4d401 + md5: cdf23da66ced1cd0a484c3a9564eaeaa + depends: + - __osx >=11.0 + - libcxx >=18 + license: MIT + license_family: MIT + size: 156578 + timestamp: 1742820739478 +- conda: https://prefix.dev/conda-forge/win-64/rapidjson-1.1.0.post20240409-he0c23c2_2.conda + sha256: cd36fcd850cdfdca316ce048714ed5a2911d5af6e3297a557a284fed77107fe9 + md5: 473596080645129ca9939cbac7c4a2cc + depends: + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + license: MIT + license_family: MIT + size: 153477 + timestamp: 1742820803681 +- conda: https://prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda + sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c + md5: 283b96675859b20a825f8fa30f311446 + depends: + - libgcc >=13 + - ncurses >=6.5,<7.0a0 + license: GPL-3.0-only + license_family: GPL + size: 282480 + timestamp: 1740379431762 +- conda: https://prefix.dev/conda-forge/linux-aarch64/readline-8.2-h8382b9d_2.conda + sha256: 54bed3a3041befaa9f5acde4a37b1a02f44705b7796689574bcf9d7beaad2959 + md5: c0f08fc2737967edde1a272d4bf41ed9 + depends: + - libgcc >=13 + - ncurses >=6.5,<7.0a0 + license: GPL-3.0-only + license_family: GPL + size: 291806 + timestamp: 1740380591358 +- conda: https://prefix.dev/conda-forge/osx-64/readline-8.2-h7cca4af_2.conda + sha256: 53017e80453c4c1d97aaf78369040418dea14cf8f46a2fa999f31bd70b36c877 + md5: 342570f8e02f2f022147a7f841475784 + depends: + - ncurses >=6.5,<7.0a0 + license: GPL-3.0-only + license_family: GPL + size: 256712 + timestamp: 1740379577668 +- conda: https://prefix.dev/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda + sha256: 7db04684d3904f6151eff8673270922d31da1eea7fa73254d01c437f49702e34 + md5: 63ef3f6e6d6d5c589e64f11263dc5676 + depends: + - ncurses >=6.5,<7.0a0 + license: GPL-3.0-only + license_family: GPL + size: 252359 + timestamp: 1740379663071 +- conda: https://prefix.dev/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda + sha256: d701ca1136197aa121bbbe0e8c18db6b5c94acbd041c2b43c70e5ae104e1d8ad + md5: a9b9368f3701a417eac9edbcae7cb737 + depends: + - certifi >=2017.4.17 + - charset-normalizer >=2,<4 + - idna >=2.5,<4 + - python >=3.9 + - urllib3 >=1.21.1,<3 + constrains: + - chardet >=3.0.2,<6 + license: Apache-2.0 + license_family: APACHE + size: 58723 + timestamp: 1733217126197 +- conda: https://prefix.dev/conda-forge/linux-64/scipy-1.15.2-py312ha707e6e_0.conda + sha256: b9faaa024b77a3678a988c5a490f02c4029c0d5903998b585100e05bc7d4ff36 + md5: 00b999c5f9d01fb633db819d79186bd4 + depends: + - __glibc >=2.17,<3.0.a0 + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libgcc >=13 + - libgfortran + - libgfortran5 >=13.3.0 + - liblapack >=3.9.0,<4.0a0 + - libstdcxx >=13 + - numpy <2.5 + - numpy >=1.19,<3 + - numpy >=1.23.5 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 17064784 + timestamp: 1739791925628 +- conda: https://prefix.dev/conda-forge/linux-aarch64/scipy-1.15.2-py312hb5459e8_0.conda + sha256: 329939e5151cae740bcf1575ea24d1bcfab7004c114254ab2932331846155f28 + md5: 957735cb6319671df3812b81344431d8 + depends: + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libgcc >=13 + - libgfortran + - libgfortran5 >=13.3.0 + - liblapack >=3.9.0,<4.0a0 + - libstdcxx >=13 + - numpy <2.5 + - numpy >=1.19,<3 + - numpy >=1.23.5 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 17043532 + timestamp: 1739792285662 +- conda: https://prefix.dev/conda-forge/osx-64/scipy-1.15.2-py312hd04560d_0.conda + sha256: 4c34ef6a688c3ea99a11a9c32941133800f4e10ff5af0074998abed80392c75a + md5: cea880e674e00193c7fb915eea6c8200 + depends: + - __osx >=10.13 + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libcxx >=18 + - libgfortran 5.* + - libgfortran5 >=13.2.0 + - liblapack >=3.9.0,<4.0a0 + - numpy <2.5 + - numpy >=1.19,<3 + - numpy >=1.23.5 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 15547115 + timestamp: 1739791861956 +- conda: https://prefix.dev/conda-forge/osx-arm64/scipy-1.15.2-py312h99a188d_0.conda + sha256: af61f6e29a0d3d4c66699a35b19ce6849d6e0fa15017d7a9ef6268cc1c4e1264 + md5: b1d324bf5018b451152bbdc4ffd3d378 + depends: + - __osx >=11.0 + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libcxx >=18 + - libgfortran 5.* + - libgfortran5 >=13.2.0 + - liblapack >=3.9.0,<4.0a0 + - numpy <2.5 + - numpy >=1.19,<3 + - numpy >=1.23.5 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 14394729 + timestamp: 1739792424558 +- conda: https://prefix.dev/conda-forge/win-64/scipy-1.15.2-py312h451d5c4_0.conda + sha256: a154a6b6f4efefc65366437f611fa89c8178059e2ee7350515fe4a4c3da55c1d + md5: 50632c72cc92ae3ebb615cb496bbf946 + depends: + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - numpy <2.5 + - numpy >=1.19,<3 + - numpy >=1.23.5 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 15350553 + timestamp: 1739793319263 +- conda: https://prefix.dev/conda-forge/linux-64/sdl2-2.32.50-h9b8e6db_1.conda + sha256: c253ddeafdc46bb53cdac722d1305a94bbbd9905e6a112e295ce7bb9e7a2f7e7 + md5: 0d27110a2f613abc268e31b3c1d5fb4f + depends: + - __glibc >=2.17,<3.0.a0 + - libegl >=1.7.0,<2.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libstdcxx >=13 + - sdl3 >=3.2.4,<4.0a0 + license: Zlib + size: 513266 + timestamp: 1740516135153 +- conda: https://prefix.dev/conda-forge/linux-aarch64/sdl2-2.32.50-h7851d19_1.conda + sha256: d2c1d0baf85f3484fa8630f3067f7411c8abcb8fee0ad67342d82e706c59230e + md5: 83f2b36f187b0269471774983ecfa39f + depends: + - libegl >=1.7.0,<2.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libstdcxx >=13 + - sdl3 >=3.2.4,<4.0a0 + license: Zlib + size: 523908 + timestamp: 1740516151246 +- conda: https://prefix.dev/conda-forge/osx-64/sdl2-2.32.50-hc0cb955_1.conda + sha256: 41d7705c67a31b9e4821469a882db92031dc291fb99b77a9b73b3716785abbad + md5: 9b99d270e406fdd34cb397c5c018f424 + depends: + - __osx >=10.13 + - libcxx >=18 + - sdl3 >=3.2.4,<4.0a0 + license: Zlib + size: 668845 + timestamp: 1740516491142 +- conda: https://prefix.dev/conda-forge/osx-arm64/sdl2-2.32.50-h994913f_1.conda + sha256: 0a6ad048f2f311bebc05fc7a31d26373b693949ad0887edf48909b0acb849b5e + md5: ff589d08171ffeb5867e9c6a68ec913d + depends: + - __osx >=11.0 + - libcxx >=18 + - sdl3 >=3.2.4,<4.0a0 + license: Zlib + size: 493998 + timestamp: 1740516182244 +- conda: https://prefix.dev/conda-forge/win-64/sdl2-2.32.50-hecf2515_1.conda + sha256: 3f1ee15c845f1fc50e75790f06ee6cf08479eb706673d6e91e7f82887871d56a + md5: 3b73ebaea5aa1b7739358efaed25b458 + depends: + - sdl3 >=3.2.4,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Zlib + size: 517808 + timestamp: 1740516481192 +- conda: https://prefix.dev/conda-forge/linux-64/sdl3-3.2.10-h3083f51_0.conda + sha256: 2adb25a44d4fa607cc3afa3c7903c8b8f5291d111ce0315337ef6b24206ed19b + md5: 5fa3dfc74e66ce327f0633a33da88395 + depends: + - __glibc >=2.17,<3.0.a0 + - dbus >=1.13.6,<2.0a0 + - jack >=1.9.22,<1.10.0a0 + - libdrm >=2.4.124,<2.5.0a0 + - libegl >=1.7.0,<2.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libstdcxx >=13 + - libudev1 >=257.4 + - libunwind >=1.6.2,<1.7.0a0 + - liburing >=2.9,<2.10.0a0 + - libusb >=1.0.28,<2.0a0 + - libxkbcommon >=1.8.1,<2.0a0 + - pulseaudio-client >=17.0,<17.1.0a0 + - wayland >=1.23.1,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxcursor >=1.2.3,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - xorg-libxscrnsaver >=1.2.4,<2.0a0 + license: Zlib + size: 1765528 + timestamp: 1743468490469 +- conda: https://prefix.dev/conda-forge/linux-aarch64/sdl3-3.2.10-h9cc03ad_0.conda + sha256: eb1efb75d0f9c996aeba1b00cc623fe647c4cab94d1fdf749097f6e267a09f02 + md5: c36bbc6694add928f818a008edd92db1 + depends: + - dbus >=1.13.6,<2.0a0 + - jack >=1.9.22,<1.10.0a0 + - libdrm >=2.4.124,<2.5.0a0 + - libegl >=1.7.0,<2.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libstdcxx >=13 + - libudev1 >=257.4 + - libunwind >=1.6.2,<1.7.0a0 + - liburing >=2.9,<2.10.0a0 + - libusb >=1.0.28,<2.0a0 + - libxkbcommon >=1.8.1,<2.0a0 + - pulseaudio-client >=17.0,<17.1.0a0 + - wayland >=1.23.1,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxcursor >=1.2.3,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + license: Zlib + size: 1695012 + timestamp: 1743468629435 +- conda: https://prefix.dev/conda-forge/osx-64/sdl3-3.2.10-h6dd79e8_0.conda + sha256: 29fe73844792c9ba56c9dc10e94365036f927730cb6488f085c5e930ee439596 + md5: 8a470af0416f0a8c5b8ded60ff41c44d + depends: + - __osx >=10.13 + - dbus >=1.13.6,<2.0a0 + - libcxx >=18 + - libusb >=1.0.28,<2.0a0 + license: Zlib + size: 1393321 + timestamp: 1743468677260 +- conda: https://prefix.dev/conda-forge/osx-arm64/sdl3-3.2.10-he842692_0.conda + sha256: 0787950e3c336fccd6f562c013492826cea4e0f597f5ae209229ac0a2a798613 + md5: 6b907da76950cd8fbc9a35e445d037bf + depends: + - __osx >=11.0 + - dbus >=1.13.6,<2.0a0 + - libcxx >=18 + - libusb >=1.0.28,<2.0a0 + license: Zlib + size: 1278838 + timestamp: 1743468653839 +- conda: https://prefix.dev/conda-forge/win-64/sdl3-3.2.10-he0c23c2_0.conda + sha256: 8d3e46b514328ee2cfb3827db23ccccf4619f262fb312d8503802649219c3c29 + md5: 82ef830538fb4256b1ed29a1ca975cb3 + depends: + - libusb >=1.0.28,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Zlib + size: 1371139 + timestamp: 1743468945374 +- conda: https://prefix.dev/conda-forge/osx-64/sed-4.7-h3efe00b_1000.tar.bz2 + sha256: c7dc65d2d43561aa20f2ee3ddcb9b8d19fd52d18802b5ca87e508f6041c0b225 + md5: 12e92b1d4ac4f839fcdd66289caea89f + depends: + - gettext >=0.19.2 + - gettext >=0.19.8.1,<1.0a0 + license: GPL-3 + size: 263631 + timestamp: 1550735515743 +- conda: https://prefix.dev/conda-forge/osx-arm64/sed-4.8-hc6a1b29_0.tar.bz2 + sha256: a9c4193ccfa633aa7ab37aa95c7d28101a1df45b27efcaf28828d7266c2d43c1 + md5: 1b410382feb5302344180b25df05b591 + depends: + - gettext >=0.19.2 + - gettext >=0.19.8.1,<1.0a0 + license: GPL-3 + size: 279194 + timestamp: 1605307517437 +- conda: https://prefix.dev/conda-forge/noarch/setuptools-75.8.2-pyhff2d567_0.conda + sha256: 91d664ace7c22e787775069418daa9f232ee8bafdd0a6a080a5ed2395a6fa6b2 + md5: 9bddfdbf4e061821a1a443f93223be61 + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 777736 + timestamp: 1740654030775 +- conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda + sha256: 41db0180680cc67c3fa76544ffd48d6a5679d96f4b71d7498a759e94edc9a2db + md5: a451d576819089b0d672f18768be0f65 + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 16385 + timestamp: 1733381032766 +- conda: https://prefix.dev/conda-forge/linux-64/smesh-9.9.0.0-h0d71592_13.conda + sha256: b661ad37d73de52ba2c133d843fad3e20d8c0b677f194ddb0cce721900b71d8a + md5: 3c66ab3d7f24ca9c0a9f79ebe950b495 + depends: + - __glibc >=2.17,<3.0.a0 + - libboost >=1.86.0,<1.87.0a0 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - occt >=7.8.1,<7.8.2.0a0 + - vtk-base >=9.3.1,<9.3.2.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 4535754 + timestamp: 1729371963115 +- conda: https://prefix.dev/conda-forge/linux-aarch64/smesh-9.9.0.0-h212b014_13.conda + sha256: 8c55daf93f4d7434d2051227e86a617ce7f8b66b9bf43fa4ecb034ee7bbc0d90 + md5: 08ee56e0a10ca95781f960014b65a278 + depends: + - libboost >=1.86.0,<1.87.0a0 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - occt >=7.8.1,<7.8.2.0a0 + - vtk-base >=9.3.1,<9.3.2.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 4796963 + timestamp: 1729372232913 +- conda: https://prefix.dev/conda-forge/osx-64/smesh-9.9.0.0-ha774313_13.conda + sha256: ce77d396d9c0d7836c714fa6dd74b7fedd65368414302adcf0453b682168739d + md5: 8a856c4514e00f3d70332016c32eed33 + depends: + - __osx >=10.13 + - libboost >=1.86.0,<1.87.0a0 + - libcxx >=17 + - libzlib >=1.3.1,<2.0a0 + - occt >=7.8.1,<7.8.2.0a0 + - vtk-base >=9.3.1,<9.3.2.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 4202183 + timestamp: 1729372719929 +- conda: https://prefix.dev/conda-forge/osx-arm64/smesh-9.9.0.0-hf192bc0_13.conda + sha256: f0a05c7a3898dba7cd4639dd9a467999865030918f2329079442e913d9d7a45c + md5: 1c3e982e81b32ccfce0c2e36c19d5569 + depends: + - __osx >=11.0 + - libboost >=1.86.0,<1.87.0a0 + - libcxx >=17 + - libzlib >=1.3.1,<2.0a0 + - occt >=7.8.1,<7.8.2.0a0 + - vtk-base >=9.3.1,<9.3.2.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 3762789 + timestamp: 1729372519693 +- conda: https://prefix.dev/conda-forge/win-64/smesh-9.9.0.0-hdbf5530_13.conda + sha256: 9664e16dbad2a2de052fae26ecae84ba8209cba9981e75ce212b6abd1713cf01 + md5: d342dd9adb2741987ad7570d376b3686 + depends: + - libboost >=1.86.0,<1.87.0a0 + - libzlib >=1.3.1,<2.0a0 + - occt >=7.8.1,<7.8.2.0a0 + - pthreads-win32 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.40.33810 + - vtk-base >=9.3.1,<9.3.2.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 3646997 + timestamp: 1729372911260 +- conda: https://prefix.dev/conda-forge/linux-64/snappy-1.2.1-h8bd8927_1.conda + sha256: ec91e86eeb2c6bbf09d51351b851e945185d70661d2ada67204c9a6419d282d3 + md5: 3b3e64af585eadfb52bb90b553db5edf + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: BSD-3-Clause + license_family: BSD + size: 42739 + timestamp: 1733501881851 +- conda: https://prefix.dev/conda-forge/linux-aarch64/snappy-1.2.1-hd4fb6f5_1.conda + sha256: c4a07ae5def8d55128f25a567a296ef9d7bf99a3bc79d46bd5160c076a5f50af + md5: 2fcc6cd1e5550deb509073fd2e6693e1 + depends: + - libgcc >=13 + - libstdcxx >=13 + license: BSD-3-Clause + license_family: BSD + size: 43032 + timestamp: 1733501964775 +- conda: https://prefix.dev/conda-forge/osx-64/snappy-1.2.1-haf3c120_1.conda + sha256: 26e8a2edd2a12618d9adcdcfc6cfd9adaca8da71aa334615d29e803d225b52be + md5: 9d6ae6d5232233e1a01eb7db524078fb + depends: + - __osx >=10.13 + - libcxx >=18 + license: BSD-3-Clause + license_family: BSD + size: 36813 + timestamp: 1733502097580 +- conda: https://prefix.dev/conda-forge/osx-arm64/snappy-1.2.1-h98b9ce2_1.conda + sha256: 4242f95b215127a006eb664fe26ed5a82df87e90cbdbc7ce7ff4971f0720997f + md5: ded86dee325290da2967a3fea3800eb5 + depends: + - __osx >=11.0 + - libcxx >=18 + license: BSD-3-Clause + license_family: BSD + size: 35857 + timestamp: 1733502172664 +- conda: https://prefix.dev/conda-forge/win-64/snappy-1.2.1-h500f7fa_1.conda + sha256: 29753b51803c0396c3cb56e4f11e68c968a2f43b71b648634bef1f9193f9e78b + md5: e32fb978aaea855ddce624eb8c8eb69a + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 59757 + timestamp: 1733502109991 +- conda: https://prefix.dev/conda-forge/linux-64/soqt6-1.6.3-h23d7b0e_0.conda + sha256: c8201aa5a9d22f41c0d5f42b7c0e497ecf7159feec8636a7daf6fa02950930d8 + md5: 37672c8be048696b5fc10be22e8c9435 + depends: + - __glibc >=2.17,<3.0.a0 + - coin3d >=4.0.3,<4.1.0a0 + - libgcc >=13 + - libstdcxx >=13 + - qt6-main >=6.7.3,<6.9.0a0 + constrains: + - soqt <0 + license: BSD-3-Clause + license_family: BSD + size: 321109 + timestamp: 1728082619106 +- conda: https://prefix.dev/conda-forge/linux-aarch64/soqt6-1.6.3-h808f404_0.conda + sha256: e42c6ef58dc3371bb43029788ed1d7ddf1fa7a3fd83fb1d78d63db5815bebb74 + md5: 4935d0d9baa48d929d88026dfe82c073 + depends: + - coin3d >=4.0.3,<4.1.0a0 + - libgcc >=13 + - libstdcxx >=13 + - qt6-main >=6.7.3,<6.9.0a0 + constrains: + - soqt <0 + license: BSD-3-Clause + license_family: BSD + size: 318319 + timestamp: 1728082634827 +- conda: https://prefix.dev/conda-forge/osx-64/soqt6-1.6.3-h667e493_0.conda + sha256: f7fd8b27eb202efdc4d7c660b5cc37dfc942adc63d54f928ac403581db953523 + md5: 60fc4f49510c680dd54edc31cd5bced0 + depends: + - __osx >=10.13 + - coin3d >=4.0.3,<4.1.0a0 + - libcxx >=17 + - qt6-main >=6.7.3,<6.9.0a0 + constrains: + - soqt <0 + license: BSD-3-Clause + license_family: BSD + size: 261592 + timestamp: 1728082747427 +- conda: https://prefix.dev/conda-forge/osx-arm64/soqt6-1.6.3-hd20b56a_0.conda + sha256: b800fad0d87a7bc88fe3c47e03749f9c0777687eb5e209d7db3909efa349f27a + md5: efcc605289339a5fc4cc65ddf4336127 + depends: + - __osx >=11.0 + - coin3d >=4.0.3,<4.1.0a0 + - libcxx >=17 + - qt6-main >=6.7.3,<6.9.0a0 + constrains: + - soqt <0 + license: BSD-3-Clause + license_family: BSD + size: 258332 + timestamp: 1728082869198 +- conda: https://prefix.dev/conda-forge/win-64/soqt6-1.6.3-h796eb14_0.conda + sha256: c0fe037f622380b551313f72944790adaf43f6155609aca8a716638ac1d8e192 + md5: 0496a0fe733111cbd8dd0ba285fb73f5 + depends: + - coin3d >=4.0.3,<4.1.0a0 + - qt6-main >=6.7.3,<6.9.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - soqt <0 + license: BSD-3-Clause + license_family: BSD + size: 250216 + timestamp: 1728083269744 +- conda: https://prefix.dev/conda-forge/linux-64/sqlite-3.49.1-h9eae976_2.conda + sha256: 85c5b96686a900411ad8bdd424dcc2efb2044f15488bb89e57dff3bfcb74cc65 + md5: 1894a9d3a8c3ffa53f8ca09fcd2fac25 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libsqlite 3.49.1 hee588c1_2 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - readline >=8.2,<9.0a0 + license: Unlicense + size: 859553 + timestamp: 1742083683966 +- conda: https://prefix.dev/conda-forge/linux-aarch64/sqlite-3.49.1-h578a6b9_2.conda + sha256: 7d6f064b29cf9abf61a70aba2f796f950a973759c48f6aeb9bddf723c573b422 + md5: 2e9105f342b94fd9c70e9668325512fc + depends: + - libgcc >=13 + - libsqlite 3.49.1 h5eb1b54_2 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - readline >=8.2,<9.0a0 + license: Unlicense + size: 913469 + timestamp: 1742083706776 +- conda: https://prefix.dev/conda-forge/osx-64/sqlite-3.49.1-h2e4c9dc_2.conda + sha256: 38fff9dddfa80f01a9f0cba3d5f00ff2ca29a8a246cb9cf41177b7cead78005c + md5: 775febaf021c23b27b8b04b2fa428388 + depends: + - __osx >=10.13 + - libsqlite 3.49.1 hdb6dae5_2 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - readline >=8.2,<9.0a0 + license: Unlicense + size: 941074 + timestamp: 1742083889419 +- conda: https://prefix.dev/conda-forge/osx-arm64/sqlite-3.49.1-hd7222ec_2.conda + sha256: d359322cb4404df74d938a11a22b932e49d5f8c931a03e63d34127c9fecac200 + md5: 69dd1428d6a7d068bfc1d2ad70ab6701 + depends: + - __osx >=11.0 + - libsqlite 3.49.1 h3f77e49_2 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - readline >=8.2,<9.0a0 + license: Unlicense + size: 883664 + timestamp: 1742083897015 +- conda: https://prefix.dev/conda-forge/win-64/sqlite-3.49.1-h2466b09_2.conda + sha256: 0b072d1fd075fdf5d41ff2689c6db2c6246ca58979c0f13dc15fb89d26ee83ed + md5: e30b7cd408f01cc06073d9e68bfc1710 + depends: + - libsqlite 3.49.1 h67fdade_2 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Unlicense + size: 1105027 + timestamp: 1742083977188 +- conda: https://prefix.dev/conda-forge/noarch/svgwrite-1.4.3-pyhd8ed1ab_1.conda + sha256: 0571b8426cd6fab05cd0639d4a5203e0f01ba8da75b48ed7b7b1103445e6a3b2 + md5: 9a13b437c86284d668ba1ad03647f6c7 + depends: + - pyparsing >=2.0.1 + - python >=3.9 + license: MIT + license_family: MIT + size: 55407 + timestamp: 1734380310892 +- conda: https://prefix.dev/conda-forge/linux-64/svt-av1-2.3.0-h5888daf_0.conda + sha256: df30a9be29f1a8b5a2e314dd5b16ccfbcbd1cc6a4f659340e8bc2bd4de37bc6f + md5: 355898d24394b2af353eb96358db9fdd + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: BSD-2-Clause + license_family: BSD + size: 2746291 + timestamp: 1730246036363 +- conda: https://prefix.dev/conda-forge/linux-aarch64/svt-av1-2.3.0-h5ad3122_0.conda + sha256: 2fad2496a21d198ea72f5dabfdace2fae0ced5cc3ea243922cb372fcf4c18222 + md5: efb60b536bbf64772929b57f6b30298b + depends: + - libgcc >=13 + - libstdcxx >=13 + license: BSD-2-Clause + license_family: BSD + size: 1796731 + timestamp: 1730246027014 +- conda: https://prefix.dev/conda-forge/osx-64/svt-av1-2.3.0-h97d8b74_0.conda + sha256: 8cd3878eb1d31ecf21fe982e6d2ca557787100aed2f0c7fd44d01d504e704e30 + md5: c54053b3d1752308a38a9a8c48ce10da + depends: + - __osx >=10.13 + - libcxx >=17 + license: BSD-2-Clause + license_family: BSD + size: 2413474 + timestamp: 1730246540736 +- conda: https://prefix.dev/conda-forge/osx-arm64/svt-av1-2.3.0-hf24288c_0.conda + sha256: ab876ed8bdd20e22a868dcb8d03e9ce9bbba7762d7e652d49bfff6af768a5b8f + md5: 114c33e9eec335a379c9ee6c498bb807 + depends: + - __osx >=11.0 + - libcxx >=17 + license: BSD-2-Clause + license_family: BSD + size: 1387330 + timestamp: 1730246134730 +- conda: https://prefix.dev/conda-forge/win-64/svt-av1-3.0.2-he0c23c2_0.conda + sha256: 2307695366b92fffe69e33da9eae0df4e32ba5fdbae28ba4489ebf6cb223c203 + md5: b10f556afee1579f3c710a4790a6ed28 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 1849099 + timestamp: 1742908435809 +- conda: https://prefix.dev/conda-forge/noarch/sympy-1.13.3-pyh04b8f61_5.conda + sha256: 07fcf6ad8d700e530bada93404892df83f927b3513ebb4ba2b474c90c129058e + md5: 1ae317a5e9a75da334ace7c8e6a4d9af + depends: + - mpmath >=0.19 + - python >=3.9 + license: BSD-3-Clause + license_family: BSD + size: 4535347 + timestamp: 1736248344021 +- conda: https://prefix.dev/conda-forge/noarch/sympy-1.13.3-pyh2585a3b_105.conda + sha256: 929d939c5a8bcdc10a17501890918da68cf14a5883b36fddf77b8f0fbf040be2 + md5: 254cd5083ffa04d96e3173397a3d30f4 + depends: + - __unix + - cpython + - gmpy2 >=2.0.8 + - mpmath >=0.19 + - python >=3.9 + license: BSD-3-Clause + license_family: BSD + size: 4523617 + timestamp: 1736248315124 +- conda: https://prefix.dev/conda-forge/linux-64/tbb-2022.1.0-h4ce085d_0.conda + sha256: b2819dd77faee0ea1f14774b603db33da44c14f7662982d4da4bbe76ac8a8976 + md5: f0afd0c7509f6c1b8d77ee64d7ba64b8 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libhwloc >=2.11.2,<2.11.3.0a0 + - libstdcxx >=13 + license: Apache-2.0 + size: 179639 + timestamp: 1743578685131 +- conda: https://prefix.dev/conda-forge/linux-aarch64/tbb-2022.1.0-hf6e3e71_0.conda + sha256: 3dea624f5495c4cfe1bd5a35d67f5995c3a4cde42024ec57855ddab502e1ea3c + md5: 0d08f8f53a51b2dfbcda8ebe3be28103 + depends: + - libgcc >=13 + - libhwloc >=2.11.2,<2.11.3.0a0 + - libstdcxx >=13 + license: Apache-2.0 + size: 144738 + timestamp: 1743581521035 +- conda: https://prefix.dev/conda-forge/osx-64/tbb-2022.1.0-h479f576_0.conda + sha256: 0034cbd2a1c4fbbd5ef3316dd56d51e5f59525f3f9adcc1d1bfdfecdfcf5b1df + md5: b6db6c7fca27db0ce9628e10b4febd3a + depends: + - __osx >=10.13 + - libcxx >=18 + - libhwloc >=2.11.2,<2.11.3.0a0 + license: Apache-2.0 + size: 162373 + timestamp: 1743578829165 +- conda: https://prefix.dev/conda-forge/osx-arm64/tbb-2022.1.0-h9541205_0.conda + sha256: 3a7442e806f36b2b7efeaad88c330cdc5f24ceea8eb1ccdb7b428e4797d54733 + md5: fba14047c046475a82806c17885ba7fa + depends: + - __osx >=11.0 + - libcxx >=18 + - libhwloc >=2.11.2,<2.11.3.0a0 + license: Apache-2.0 + size: 119289 + timestamp: 1743578923826 +- conda: https://prefix.dev/conda-forge/win-64/tbb-2022.1.0-ha82c486_0.conda + sha256: fea75ea17834bf2c23a1f38dede880687b23638c0392435f1ca060fdf3cfccc0 + md5: 3e15eca7ac18306cbe4fad0304562b01 + depends: + - libhwloc >=2.11.2,<2.11.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + size: 154810 + timestamp: 1743579326182 +- conda: https://prefix.dev/conda-forge/osx-arm64/tbb-devel-2022.1.0-hf29b1df_0.conda + sha256: 58456c59d10defc60409f541e46f86e911f9df5eaf6a92bc492227b44576ea5f + md5: 003a94b8134e23e8c39b54bc7982239e + depends: + - __osx >=11.0 + - libcxx >=18 + - tbb 2022.1.0 h9541205_0 + size: 1085639 + timestamp: 1743578953834 +- conda: https://prefix.dev/conda-forge/win-64/tbb-devel-2022.1.0-h47441b3_0.conda + sha256: 485e0b0f36f2d5244486feca682e8ea6be7f1b94c89e3aa3875ea807ce398420 + md5: b451e898ceb95cad79d84961ee096215 + depends: + - tbb 2022.1.0 ha82c486_0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 1092828 + timestamp: 1743579362516 +- conda: https://prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e + md5: d453b98d9c83e71da0741bb0ff4d76bc + depends: + - libgcc-ng >=12 + - libzlib >=1.2.13,<2.0.0a0 + license: TCL + license_family: BSD + size: 3318875 + timestamp: 1699202167581 +- conda: https://prefix.dev/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda + sha256: 7fa27cc512d3a783f38bd16bbbffc008807372499d5b65d089a8e43bde9db267 + md5: f75105e0585851f818e0009dd1dde4dc + depends: + - libgcc-ng >=12 + - libzlib >=1.2.13,<2.0.0a0 + license: TCL + license_family: BSD + size: 3351802 + timestamp: 1695506242997 +- conda: https://prefix.dev/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda + sha256: 30412b2e9de4ff82d8c2a7e5d06a15f4f4fef1809a72138b6ccb53a33b26faf5 + md5: bf830ba5afc507c6232d4ef0fb1a882d + depends: + - libzlib >=1.2.13,<2.0.0a0 + license: TCL + license_family: BSD + size: 3270220 + timestamp: 1699202389792 +- conda: https://prefix.dev/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda + sha256: 72457ad031b4c048e5891f3f6cb27a53cb479db68a52d965f796910e71a403a8 + md5: b50a57ba89c32b62428b71a875291c9b + depends: + - libzlib >=1.2.13,<2.0.0a0 + license: TCL + license_family: BSD + size: 3145523 + timestamp: 1699202432999 +- conda: https://prefix.dev/conda-forge/win-64/tk-8.6.13-h5226925_1.conda + sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 + md5: fc048363eb8f03cd1737600a5d08aafe + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: TCL + license_family: BSD + size: 3503410 + timestamp: 1699202577803 +- conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 + md5: 4222072737ccff51314b5ece9c7d6f5a + license: LicenseRef-Public-Domain + size: 122968 + timestamp: 1742727099393 +- conda: https://prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda + sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450 + md5: 6797b005cd0f439c4c5c9ac565783700 + constrains: + - vs2015_runtime >=14.29.30037 + license: LicenseRef-MicrosoftWindowsSDK10 + size: 559710 + timestamp: 1728377334097 +- conda: https://prefix.dev/conda-forge/linux-64/unicodedata2-16.0.0-py312h66e93f0_0.conda + sha256: 638916105a836973593547ba5cf4891d1f2cb82d1cf14354fcef93fd5b941cdc + md5: 617f5d608ff8c28ad546e5d9671cbb95 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 404401 + timestamp: 1736692621599 +- conda: https://prefix.dev/conda-forge/linux-aarch64/unicodedata2-16.0.0-py312hb2c0f52_0.conda + sha256: e2c280ad7b687e72b13ce477f6f22dfd00d8ccd4194f5a8bd15eb69dbde96ab1 + md5: ac2f60c0522e7c6d24de8c4e06bccd11 + depends: + - libgcc >=13 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 405290 + timestamp: 1736692678012 +- conda: https://prefix.dev/conda-forge/osx-64/unicodedata2-16.0.0-py312h01d7ebd_0.conda + sha256: ac5cc7728c3052777aa2d54dde8735f677386b38e3a4c09a805120274a8b3475 + md5: 27740ecb2764b1cddbe1e7412ed16034 + depends: + - __osx >=10.13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 399510 + timestamp: 1736692713652 +- conda: https://prefix.dev/conda-forge/osx-arm64/unicodedata2-16.0.0-py312hea69d52_0.conda + sha256: c6ca9ea11eecc650df4bce4b3daa843821def6d753eeab6d81de35bb43f9d984 + md5: 9a835052506b91ea8f0d8e352cd12246 + depends: + - __osx >=11.0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 409745 + timestamp: 1736692768349 +- conda: https://prefix.dev/conda-forge/win-64/unicodedata2-16.0.0-py312h4389bb4_0.conda + sha256: 0889ccb541d0b63cbf42ea5b1f1686b772e872bfcddd3a18787dc4437ebbd7c6 + md5: 3b124c38c7852704ba6a42a170c152a1 + depends: + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 400974 + timestamp: 1736693037551 +- conda: https://prefix.dev/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda + sha256: 114919ffa80c328127dab9c8e7a38f9d563c617691fb81fccb11c1e86763727e + md5: 32674f8dbfb7b26410ed580dd3c10a29 + depends: + - brotli-python >=1.0.9 + - h2 >=4,<5 + - pysocks >=1.5.6,<2.0,!=1.5.7 + - python >=3.9 + - zstandard >=0.18.0 + license: MIT + license_family: MIT + size: 100102 + timestamp: 1734859520452 +- conda: https://prefix.dev/conda-forge/linux-64/utfcpp-4.0.6-h005c6e1_0.conda + sha256: ec540ff477cd6d209b98f9b201e9c440908ea3a8b62e9e02dd12fcb60fff6d08 + md5: 9464e297fa2bf08030c65a54342b48c3 + license: BSL-1.0 + size: 13447 + timestamp: 1730672182037 +- conda: https://prefix.dev/conda-forge/linux-aarch64/utfcpp-4.0.6-h01cc221_0.conda + sha256: c8b19a825ec19387181be2c2a63a649f408b6c77fe5f01389565011755150c86 + md5: 4bc420dcc08be7b850d1d6e9e32e0a0e + license: BSL-1.0 + size: 13427 + timestamp: 1730672219363 +- conda: https://prefix.dev/conda-forge/osx-64/utfcpp-4.0.6-h93fb1c9_0.conda + sha256: ddf50c776d1b12e6b1274c204ecb94e82e0656d0259bd4019fcb7f2863ea001c + md5: 674132c65b17f287badb24a9cd807f96 + license: BSL-1.0 + size: 13644 + timestamp: 1730672214332 +- conda: https://prefix.dev/conda-forge/osx-arm64/utfcpp-4.0.6-h54c0426_0.conda + sha256: f35ec947f1c7cf49a0171db562a767d81b59ebbca37989bce34d36d43020fb76 + md5: 663093debcad11b7f3f1e8d62469af05 + license: BSL-1.0 + size: 13663 + timestamp: 1730672215514 +- conda: https://prefix.dev/conda-forge/win-64/utfcpp-4.0.6-hc1507ef_0.conda + sha256: 71ee67c739bb32a2b684231f156150e1f7fd6c852aa2ceaae50e56909c073227 + md5: 7071f524e58d346948d4ac7ae7b5d2f2 + license: BSL-1.0 + size: 13983 + timestamp: 1730672186474 +- conda: https://prefix.dev/conda-forge/win-64/vc-14.3-h2b53caa_26.conda + sha256: 7a685b5c37e9713fa314a0d26b8b1d7a2e6de5ab758698199b5d5b6dba2e3ce1 + md5: d3f0381e38093bde620a8d85f266ae55 + depends: + - vc14_runtime >=14.42.34433 + track_features: + - vc14 + license: BSD-3-Clause + license_family: BSD + size: 17893 + timestamp: 1743195261486 +- conda: https://prefix.dev/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda + sha256: 30dcb71bb166e351aadbdc18f1718757c32cdaa0e1e5d9368469ee44f6bf4709 + md5: 91651a36d31aa20c7ba36299fb7068f4 + depends: + - ucrt >=10.0.20348.0 + constrains: + - vs2015_runtime 14.42.34438.* *_26 + license: LicenseRef-MicrosoftVisualCpp2015-2022Runtime + license_family: Proprietary + size: 750733 + timestamp: 1743195092905 +- conda: https://prefix.dev/conda-forge/win-64/vs2015_runtime-14.42.34438-h7142326_26.conda + sha256: 432f2937206f1ad4a77e39f84fabc1ce7d2472b669836fb72bd2bfd19a2defc9 + md5: 3357e4383dbce31eed332008ede242ab + depends: + - vc14_runtime >=14.42.34438 + license: BSD-3-Clause + license_family: BSD + size: 17873 + timestamp: 1743195097269 +- conda: https://prefix.dev/conda-forge/linux-64/vtk-9.3.1-qt_py312h3d4e8c9_211.conda + sha256: 001af249a8fef579cfef63c67ab3bc0fb5713bbb2f1fc9b198c040c9cb8bb575 + md5: 4ef0f89cbdda0a3681f183642a8e3f41 + depends: + - vtk-base 9.3.1 qt_py312he62ef8e_211 + - vtk-io-ffmpeg 9.3.1 qt_py312h3d4e8c9_211 + license: BSD-3-Clause + license_family: BSD + size: 23222 + timestamp: 1734568475670 +- conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-9.3.1-qt_py312h502ffb0_212.conda + sha256: d64ddcdce5c3892c6025a1ec898b58b0b2bc808cabc14ace4277f233dfc27fbb + md5: 0fa995a06cb2864ce61c7bd8d9290265 + depends: + - vtk-base 9.3.1 qt_py312hb4c926f_212 + - vtk-io-ffmpeg 9.3.1 qt_py312h502ffb0_212 + license: BSD-3-Clause + license_family: BSD + size: 23377 + timestamp: 1734594945323 +- conda: https://prefix.dev/conda-forge/osx-64/vtk-9.3.1-qt_py312h6e7d914_212.conda + sha256: 57935412b7659178315b7c485f926f031776465f578f5fc6e2cfe2524440b658 + md5: 4d6063f73682ea8ac669c6dee92f7db8 + depends: + - vtk-base 9.3.1 qt_py312h7cf0cd7_212 + - vtk-io-ffmpeg 9.3.1 qt_py312h6e7d914_212 + license: BSD-3-Clause + license_family: BSD + size: 23093 + timestamp: 1734587278476 +- conda: https://prefix.dev/conda-forge/osx-arm64/vtk-9.3.1-qt_py312h8d5bf7a_209.conda + sha256: b1e3cec3215c04bf3bd4072c837ca960ee21bd765c4c324cdad356707e652e13 + md5: 0bd6884908c2b85fd19f77dc5a077bcc + depends: + - vtk-base 9.3.1 qt_py312h679c1d7_209 + - vtk-io-ffmpeg 9.3.1 qt_py312hf99a90b_209 + license: BSD-3-Clause + license_family: BSD + size: 23224 + timestamp: 1728213890380 +- conda: https://prefix.dev/conda-forge/win-64/vtk-9.3.1-qt_py312h88e836f_209.conda + sha256: 77763e06d5053f144e65bb3cf4407213abb883db146dd46cfb3ec2c0fcd82ac1 + md5: 03069480d8623812484944dc1c81e1c3 + depends: + - vtk-base 9.3.1 qt_py312h44e7938_209 + license: BSD-3-Clause + license_family: BSD + size: 23229 + timestamp: 1728220734977 +- conda: https://prefix.dev/conda-forge/linux-64/vtk-base-9.3.1-qt_py312he62ef8e_211.conda + sha256: aab1899b8745a9c09e32d8ea5c97b13e6de396871d399edd636e73c35028ce2b + md5: 172c504fa3f6f83f0a4c7d69abb9fe05 + depends: + - __glibc >=2.17,<3.0.a0 + - double-conversion >=3.3.0,<3.4.0a0 + - freetype >=2.12.1,<3.0a0 + - gl2ps >=1.4.2,<1.4.3.0a0 + - glew >=2.1.0,<2.2.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - jsoncpp >=1.9.6,<1.9.7.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libglvnd >=1.7.0,<2.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - liblzma >=5.6.3,<6.0a0 + - libnetcdf >=4.9.2,<4.9.3.0a0 + - libogg >=1.3.5,<1.4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libsqlite >=3.47.2,<4.0a0 + - libstdcxx >=13 + - libtheora >=1.1.1,<1.2.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libuuid >=2.38.1,<3.0a0 + - libxcb >=1.17.0,<2.0a0 + - libxml2 >=2.13.5,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - loguru + - lz4-c >=1.9.3,<1.10.0a0 + - nlohmann_json + - numpy + - proj >=9.5.1,<9.6.0a0 + - pugixml >=1.14,<1.15.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - qt6-main >=6.7.3,<6.9.0a0 + - tbb >=2021.13.0 + - tk >=8.6.13,<8.7.0a0 + - utfcpp + - wslink + - xorg-libice >=1.1.2,<2.0a0 + - xorg-libsm >=1.2.5,<2.0a0 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxau >=1.0.12,<2.0a0 + - xorg-libxdamage >=1.1.6,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - xorg-libxt >=1.3.1,<2.0a0 + - xorg-libxxf86vm >=1.1.6,<2.0a0 + constrains: + - paraview ==9999999999 + - libboost_headers + license: BSD-3-Clause + license_family: BSD + size: 46469074 + timestamp: 1734568272660 +- conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-base-9.3.1-qt_py312hb4c926f_212.conda + sha256: dd09912cdedfe54f8049b12d37aeefce6feaca6fa32c4b2635dc9d55d4192f4a + md5: a804c5c9987131fc4eacc71b3ab84d0b + depends: + - double-conversion >=3.3.0,<3.4.0a0 + - freetype >=2.12.1,<3.0a0 + - gl2ps >=1.4.2,<1.4.3.0a0 + - glew >=2.1.0,<2.2.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - jsoncpp >=1.9.6,<1.9.7.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libglvnd >=1.7.0,<2.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - liblzma >=5.6.3,<6.0a0 + - libnetcdf >=4.9.2,<4.9.3.0a0 + - libogg >=1.3.5,<1.4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libsqlite >=3.47.2,<4.0a0 + - libstdcxx >=13 + - libtheora >=1.1.1,<1.2.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libuuid >=2.38.1,<3.0a0 + - libxcb >=1.17.0,<2.0a0 + - libxml2 >=2.13.5,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - loguru + - lz4-c >=1.9.3,<1.10.0a0 + - nlohmann_json + - numpy + - proj >=9.5.1,<9.6.0a0 + - pugixml >=1.14,<1.15.0a0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - qt6-main >=6.7.3,<6.9.0a0 + - tbb >=2021.13.0 + - tk >=8.6.13,<8.7.0a0 + - utfcpp + - wslink + - xorg-libice >=1.1.2,<2.0a0 + - xorg-libsm >=1.2.5,<2.0a0 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxau >=1.0.12,<2.0a0 + - xorg-libxdamage >=1.1.6,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - xorg-libxt >=1.3.1,<2.0a0 + - xorg-libxxf86vm >=1.1.6,<2.0a0 + constrains: + - libboost_headers + - paraview ==9999999999 + license: BSD-3-Clause + license_family: BSD + size: 43130880 + timestamp: 1734594800444 +- conda: https://prefix.dev/conda-forge/osx-64/vtk-base-9.3.1-qt_py312h7cf0cd7_212.conda + sha256: 261291633913f6f83f79dae55fdd176233aa184eebb409a7fb0985676745c931 + md5: f1686c79055fe67c178e7b06c897794f + depends: + - __osx >=10.13 + - double-conversion >=3.3.0,<3.4.0a0 + - freetype >=2.12.1,<3.0a0 + - gl2ps >=1.4.2,<1.4.3.0a0 + - glew >=2.1.0,<2.2.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - jsoncpp >=1.9.6,<1.9.7.0a0 + - libcxx >=18 + - libexpat >=2.6.4,<3.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - liblzma >=5.6.3,<6.0a0 + - libnetcdf >=4.9.2,<4.9.3.0a0 + - libogg >=1.3.5,<1.4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libsqlite >=3.47.2,<4.0a0 + - libtheora >=1.1.1,<1.2.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libxml2 >=2.13.5,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - loguru + - lz4-c >=1.9.3,<1.10.0a0 + - nlohmann_json + - numpy + - proj >=9.5.1,<9.6.0a0 + - pugixml >=1.14,<1.15.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - qt6-main >=6.7.3,<6.9.0a0 + - tbb >=2021.13.0 + - tk >=8.6.13,<8.7.0a0 + - utfcpp + - wslink + constrains: + - paraview ==9999999999 + - libboost_headers + license: BSD-3-Clause + license_family: BSD + size: 36644834 + timestamp: 1734587136940 +- conda: https://prefix.dev/conda-forge/osx-arm64/vtk-base-9.3.1-qt_py312h679c1d7_209.conda + sha256: 899eb8c18b57c5ac42bdf462a594837f2cdccce10d3face5cab767a24d44c63d + md5: a06f56bc999e607e8c2fac1fc3f3450f + depends: + - __osx >=11.0 + - double-conversion >=3.3.0,<3.4.0a0 + - eigen + - expat + - freetype >=2.12.1,<3.0a0 + - gl2ps >=1.4.2,<1.4.3.0a0 + - glew >=2.1.0,<2.2.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - jsoncpp >=1.9.6,<1.9.7.0a0 + - libcxx >=17 + - libexpat >=2.6.3,<3.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libnetcdf >=4.9.2,<4.9.3.0a0 + - libogg >=1.3.5,<1.4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libsqlite >=3.46.1,<4.0a0 + - libtheora >=1.1.1,<1.2.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libxml2 >=2.12.7,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - loguru + - lz4-c >=1.9.3,<1.10.0a0 + - nlohmann_json + - numpy + - proj >=9.5.0,<9.6.0a0 + - pugixml >=1.14,<1.15.0a0 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + - qt6-main >=6.7.3,<6.9.0a0 + - sqlite + - tbb >=2021.13.0 + - tbb-devel + - tk >=8.6.13,<8.7.0a0 + - utfcpp + - wslink + - zlib + constrains: + - libboost_headers + - paraview ==9999999999 + license: BSD-3-Clause + license_family: BSD + size: 34598480 + timestamp: 1728213794188 +- conda: https://prefix.dev/conda-forge/win-64/vtk-base-9.3.1-qt_py312h44e7938_209.conda + sha256: f363ec7dabfd8be3d3d40ac0b0e9f091efd6f2238004e7dfe538f962c676e18f + md5: d14ebe8928517da5eb33ffe8bab36573 + depends: + - double-conversion >=3.3.0,<3.4.0a0 + - eigen + - expat + - ffmpeg >=7.1.0,<8.0a0 + - freetype >=2.12.1,<3.0a0 + - gl2ps >=1.4.2,<1.4.3.0a0 + - glew >=2.1.0,<2.2.0a0 + - hdf5 >=1.14.4,<1.14.5.0a0 + - jsoncpp >=1.9.6,<1.9.7.0a0 + - libexpat >=2.6.3,<3.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libnetcdf >=4.9.2,<4.9.3.0a0 + - libogg >=1.3.5,<1.4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libsqlite >=3.46.1,<4.0a0 + - libtheora >=1.1.1,<1.2.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libxml2 >=2.12.7,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - loguru + - lz4-c >=1.9.3,<1.10.0a0 + - nlohmann_json + - numpy + - proj >=9.5.0,<9.6.0a0 + - pugixml >=1.14,<1.15.0a0 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - qt6-main >=6.7.3,<6.9.0a0 + - sqlite + - tbb >=2021.13.0 + - tbb-devel + - ucrt >=10.0.20348.0 + - utfcpp + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - wslink + - zlib + constrains: + - libboost_headers + - paraview ==9999999999 + license: BSD-3-Clause + license_family: BSD + size: 33640598 + timestamp: 1728220616890 +- conda: https://prefix.dev/conda-forge/linux-64/vtk-io-ffmpeg-9.3.1-qt_py312h3d4e8c9_211.conda + sha256: 88571a5b3e179b1a3b64cb238758101963193041af64ecb76b439e6efd1db771 + md5: 8f47d88e25b4592dd2ce599b00d2a340 + depends: + - ffmpeg >=7.1.0,<8.0a0 + - vtk-base 9.3.1 qt_py312he62ef8e_211 + license: BSD-3-Clause + license_family: BSD + size: 81485 + timestamp: 1734568475135 +- conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-io-ffmpeg-9.3.1-qt_py312h502ffb0_212.conda + sha256: c85a10b2545a641b86dbcf932c345952f8c8c6d2f6d2800a9cfcf208ecfc159a + md5: e5ea67c4a6f0df28ae5c56de5f5fe201 + depends: + - ffmpeg >=7.1.0,<8.0a0 + - vtk-base 9.3.1 qt_py312hb4c926f_212 + license: BSD-3-Clause + license_family: BSD + size: 81153 + timestamp: 1734594944804 +- conda: https://prefix.dev/conda-forge/osx-64/vtk-io-ffmpeg-9.3.1-qt_py312h6e7d914_212.conda + sha256: 74b6c51903608362d05e59f9aa389aa9a69a79fbebfd2cdd38d0fe0fdfb00204 + md5: bb5ab7b6fbf855bb6757f65ab8c325d4 + depends: + - ffmpeg >=7.1.0,<8.0a0 + - vtk-base 9.3.1 qt_py312h7cf0cd7_212 + license: BSD-3-Clause + license_family: BSD + size: 70897 + timestamp: 1734587277397 +- conda: https://prefix.dev/conda-forge/osx-arm64/vtk-io-ffmpeg-9.3.1-qt_py312hf99a90b_209.conda + sha256: 7402d29bd018e879073ce6b6eb3585882d0892ab351ab13e4fed6733e7459642 + md5: 315d5caf5dbf1002be7ef40070ac9440 + depends: + - ffmpeg >=7.1.0,<8.0a0 + - vtk-base 9.3.1 qt_py312h679c1d7_209 + license: BSD-3-Clause + license_family: BSD + size: 71275 + timestamp: 1728213888280 +- conda: https://prefix.dev/conda-forge/linux-64/wayland-1.23.1-h3e06ad9_0.conda + sha256: 0884b2023a32d2620192cf2e2fc6784b8d1e31cf9f137e49e00802d4daf7d1c1 + md5: 0a732427643ae5e0486a727927791da1 + depends: + - __glibc >=2.17,<3.0.a0 + - libexpat >=2.6.2,<3.0a0 + - libffi >=3.4,<4.0a0 + - libgcc-ng >=13 + - libstdcxx-ng >=13 + license: MIT + license_family: MIT + size: 321561 + timestamp: 1724530461598 +- conda: https://prefix.dev/conda-forge/linux-aarch64/wayland-1.23.1-h698ed42_0.conda + sha256: 71c591803459e1f68f9ad206a4f2fa3971147502bad8791e94fd18d8362f8ce6 + md5: 2661f9252065051914f1cdf5835e7430 + depends: + - libexpat >=2.6.2,<3.0a0 + - libffi >=3.4,<4.0a0 + - libgcc-ng >=13 + - libstdcxx-ng >=13 + license: MIT + license_family: MIT + size: 324815 + timestamp: 1724530528414 +- conda: https://prefix.dev/conda-forge/noarch/wayland-protocols-1.42-hd8ed1ab_0.conda + sha256: 92ae338de325bf81f5d98075d1efc9c74e532e37d03bf4aeea50f202ad983a53 + md5: 602b55baa61ed0eda99277662d375c2e + license: MIT + license_family: MIT + size: 131524 + timestamp: 1742826616149 +- conda: https://prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce + md5: 75cb7132eb58d97896e173ef12ac9986 + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 62931 + timestamp: 1733130309598 +- conda: https://prefix.dev/conda-forge/noarch/win32_setctime-1.2.0-pyhd8ed1ab_0.conda + sha256: d7b3128166949d462133d7a86fd8a8d80224dd2ce49cfbdcde9e4b3f8b67bbf2 + md5: e79f83003ee3dba79bf795fcd1bfcc89 + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 9751 + timestamp: 1733752552137 +- conda: https://prefix.dev/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda + sha256: 93807369ab91f230cf9e6e2a237eaa812492fe00face5b38068735858fba954f + md5: 46e441ba871f524e2b067929da3051c2 + depends: + - __win + - python >=3.9 + license: LicenseRef-Public-Domain + size: 9555 + timestamp: 1733130678956 +- conda: https://prefix.dev/conda-forge/noarch/wslink-2.3.3-pyhd8ed1ab_0.conda + sha256: b3cb4702e8bf92a5a437de3cab5f6fef11a56bada56bc891bd46dc91d9228104 + md5: 56a61f85bb39bb89e9dd332f09be0763 + depends: + - aiohttp <4 + - msgpack-python >=1,<2 + - python >=3.9 + license: BSD-3-Clause + license_family: BSD + size: 35694 + timestamp: 1742768550826 +- conda: https://prefix.dev/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2 + sha256: 175315eb3d6ea1f64a6ce470be00fa2ee59980108f246d3072ab8b977cb048a5 + md5: 6c99772d483f566d59e25037fea2c4b1 + depends: + - libgcc-ng >=12 + license: GPL-2.0-or-later + license_family: GPL + size: 897548 + timestamp: 1660323080555 +- conda: https://prefix.dev/conda-forge/linux-aarch64/x264-1!164.3095-h4e544f5_2.tar.bz2 + sha256: b48f150db8c052c197691c9d76f59e252d3a7f01de123753d51ebf2eed1cf057 + md5: 0efaf807a0b5844ce5f605bd9b668281 + depends: + - libgcc-ng >=12 + license: GPL-2.0-or-later + license_family: GPL + size: 1000661 + timestamp: 1660324722559 +- conda: https://prefix.dev/conda-forge/osx-64/x264-1!164.3095-h775f41a_2.tar.bz2 + sha256: de611da29f4ed0733a330402e163f9260218e6ba6eae593a5f945827d0ee1069 + md5: 23e9c3180e2c0f9449bb042914ec2200 + license: GPL-2.0-or-later + license_family: GPL + size: 937077 + timestamp: 1660323305349 +- conda: https://prefix.dev/conda-forge/osx-arm64/x264-1!164.3095-h57fd34a_2.tar.bz2 + sha256: debdf60bbcfa6a60201b12a1d53f36736821db281a28223a09e0685edcce105a + md5: b1f6dccde5d3a1f911960b6e567113ff + license: GPL-2.0-or-later + license_family: GPL + size: 717038 + timestamp: 1660323292329 +- conda: https://prefix.dev/conda-forge/win-64/x264-1!164.3095-h8ffe710_2.tar.bz2 + sha256: 97166b318f8c68ffe4d50b2f4bd36e415219eeaef233e7d41c54244dc6108249 + md5: 19e39905184459760ccb8cf5c75f148b + depends: + - vc >=14.1,<15 + - vs2015_runtime >=14.16.27033 + license: GPL-2.0-or-later + license_family: GPL + size: 1041889 + timestamp: 1660323726084 +- conda: https://prefix.dev/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2 + sha256: 76c7405bcf2af639971150f342550484efac18219c0203c5ee2e38b8956fe2a0 + md5: e7f6ed84d4623d52ee581325c1587a6b + depends: + - libgcc-ng >=10.3.0 + - libstdcxx-ng >=10.3.0 + license: GPL-2.0-or-later + license_family: GPL + size: 3357188 + timestamp: 1646609687141 +- conda: https://prefix.dev/conda-forge/linux-aarch64/x265-3.5-hdd96247_3.tar.bz2 + sha256: cb2227f2441499900bdc0168eb423d7b2056c8fd5a3541df4e2d05509a88c668 + md5: 786853760099c74a1d4f0da98dd67aea + depends: + - libgcc-ng >=10.3.0 + - libstdcxx-ng >=10.3.0 + license: GPL-2.0-or-later + license_family: GPL + size: 1018181 + timestamp: 1646610147365 +- conda: https://prefix.dev/conda-forge/osx-64/x265-3.5-hbb4e6a2_3.tar.bz2 + sha256: 6b6a57710192764d0538f72ea1ccecf2c6174a092e0bc76d790f8ca36bbe90e4 + md5: a3bf3e95b7795871a6734a784400fcea + depends: + - libcxx >=12.0.1 + license: GPL-2.0-or-later + license_family: GPL + size: 3433205 + timestamp: 1646610148268 +- conda: https://prefix.dev/conda-forge/osx-arm64/x265-3.5-hbc6ce65_3.tar.bz2 + sha256: 2fed6987dba7dee07bd9adc1a6f8e6c699efb851431bcb6ebad7de196e87841d + md5: b1f7f2780feffe310b068c021e8ff9b2 + depends: + - libcxx >=12.0.1 + license: GPL-2.0-or-later + license_family: GPL + size: 1832744 + timestamp: 1646609481185 +- conda: https://prefix.dev/conda-forge/win-64/x265-3.5-h2d74725_3.tar.bz2 + sha256: 02b9874049112f2b7335c9a3e880ac05d99a08d9a98160c5a98898b2b3ac42b2 + md5: ca7129a334198f08347fb19ac98a2de9 + depends: + - vc >=14.1,<15 + - vs2015_runtime >=14.16.27033 + license: GPL-2.0-or-later + license_family: GPL + size: 5517425 + timestamp: 1646611941216 +- conda: https://prefix.dev/conda-forge/linux-64/xcb-util-0.4.1-hb711507_2.conda + sha256: 416aa55d946ce4ab173ab338796564893a2f820e80e04e098ff00c25fb981263 + md5: 8637c3e5821654d0edf97e2b0404b443 + depends: + - libgcc-ng >=12 + - libxcb >=1.16,<2.0.0a0 + license: MIT + license_family: MIT + size: 19965 + timestamp: 1718843348208 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-0.4.1-h5c728e9_2.conda + sha256: 59f586defd3c1295a32d8eb587036302ab254300d88e605354e8eaa4a27563ec + md5: b4cf8ba6cff9cdf1249bcfe1314222b0 + depends: + - libgcc-ng >=12 + - libxcb >=1.16,<2.0.0a0 + license: MIT + license_family: MIT + size: 20597 + timestamp: 1718844955591 +- conda: https://prefix.dev/conda-forge/linux-64/xcb-util-cursor-0.1.5-hb9d3cd8_0.conda + sha256: c7b35db96f6e32a9e5346f97adc968ef2f33948e3d7084295baebc0e33abdd5b + md5: eb44b3b6deb1cab08d72cb61686fe64c + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libxcb >=1.13 + - libxcb >=1.16,<2.0.0a0 + - xcb-util-image >=0.4.0,<0.5.0a0 + - xcb-util-renderutil >=0.3.10,<0.4.0a0 + license: MIT + license_family: MIT + size: 20296 + timestamp: 1726125844850 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-cursor-0.1.5-h86ecc28_0.conda + sha256: c2608dc625c7aacffff938813f985c5f21c6d8a4da3280d57b5287ba1b27ec21 + md5: d6bb2038d26fa118d5cbc2761116f3e5 + depends: + - libgcc >=13 + - libxcb >=1.13 + - libxcb >=1.16,<2.0.0a0 + - xcb-util-image >=0.4.0,<0.5.0a0 + - xcb-util-renderutil >=0.3.10,<0.4.0a0 + license: MIT + license_family: MIT + size: 21123 + timestamp: 1726125922919 +- conda: https://prefix.dev/conda-forge/linux-64/xcb-util-image-0.4.0-hb711507_2.conda + sha256: 94b12ff8b30260d9de4fd7a28cca12e028e572cbc504fd42aa2646ec4a5bded7 + md5: a0901183f08b6c7107aab109733a3c91 + depends: + - libgcc-ng >=12 + - libxcb >=1.16,<2.0.0a0 + - xcb-util >=0.4.1,<0.5.0a0 + license: MIT + license_family: MIT + size: 24551 + timestamp: 1718880534789 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-image-0.4.0-h5c728e9_2.conda + sha256: a43058edc001e8fb97f9b291028a6ca16a8969d9b56a998c7aecea083323ac97 + md5: b82e5c78dbbfa931980e8bfe83bce913 + depends: + - libgcc-ng >=12 + - libxcb >=1.16,<2.0.0a0 + - xcb-util >=0.4.1,<0.5.0a0 + license: MIT + license_family: MIT + size: 24910 + timestamp: 1718880504308 +- conda: https://prefix.dev/conda-forge/linux-64/xcb-util-keysyms-0.4.1-hb711507_0.conda + sha256: 546e3ee01e95a4c884b6401284bb22da449a2f4daf508d038fdfa0712fe4cc69 + md5: ad748ccca349aec3e91743e08b5e2b50 + depends: + - libgcc-ng >=12 + - libxcb >=1.16,<2.0.0a0 + license: MIT + license_family: MIT + size: 14314 + timestamp: 1718846569232 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-keysyms-0.4.1-h5c728e9_0.conda + sha256: 9d92daa7feb0e14f81bf0d4b3f0b6ff1e8cec3ff514df8a0c06c4d49b518c315 + md5: 57ca8564599ddf8b633c4ea6afee6f3a + depends: + - libgcc-ng >=12 + - libxcb >=1.16,<2.0.0a0 + license: MIT + license_family: MIT + size: 14343 + timestamp: 1718846624153 +- conda: https://prefix.dev/conda-forge/linux-64/xcb-util-renderutil-0.3.10-hb711507_0.conda + sha256: 2d401dadc43855971ce008344a4b5bd804aca9487d8ebd83328592217daca3df + md5: 0e0cbe0564d03a99afd5fd7b362feecd + depends: + - libgcc-ng >=12 + - libxcb >=1.16,<2.0.0a0 + license: MIT + license_family: MIT + size: 16978 + timestamp: 1718848865819 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-renderutil-0.3.10-h5c728e9_0.conda + sha256: 5827f5617c9741599f72bb7f090726f89c6ef91e4bada621895fdc2bbadfb0f1 + md5: 7beeda4223c5484ef72d89fb66b7e8c1 + depends: + - libgcc-ng >=12 + - libxcb >=1.16,<2.0.0a0 + license: MIT + license_family: MIT + size: 18139 + timestamp: 1718849914457 +- conda: https://prefix.dev/conda-forge/linux-64/xcb-util-wm-0.4.2-hb711507_0.conda + sha256: 31d44f297ad87a1e6510895740325a635dd204556aa7e079194a0034cdd7e66a + md5: 608e0ef8256b81d04456e8d211eee3e8 + depends: + - libgcc-ng >=12 + - libxcb >=1.16,<2.0.0a0 + license: MIT + license_family: MIT + size: 51689 + timestamp: 1718844051451 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-wm-0.4.2-h5c728e9_0.conda + sha256: 3f52cd8783e7d953c54266255fd11886c611c2620545eabc28ec8cf470ae8be7 + md5: f14dcda6894722e421da2b7dcffb0b78 + depends: + - libgcc-ng >=12 + - libxcb >=1.16,<2.0.0a0 + license: MIT + license_family: MIT + size: 50772 + timestamp: 1718845072660 +- conda: https://prefix.dev/conda-forge/linux-64/xerces-c-3.3.0-h988505b_0.conda + sha256: dbed30e56bea060c8b077773138f388144686c24793172ee3d39b69aa0628165 + md5: eeecd6ccca69409a39ac99721a72f387 + depends: + - __glibc >=2.17,<3.0.a0 + - icu >=75.1,<76.0a0 + - libgcc >=13 + - libnsl >=2.0.1,<2.1.0a0 + - libstdcxx >=13 + license: Apache-2.0 + license_family: Apache + size: 1637176 + timestamp: 1728975948928 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xerces-c-3.3.0-h595f43b_0.conda + sha256: 2e46a23e7763b750b074a85cf3df88c44261550306c501de4514d2ae9a4a2439 + md5: 58602537eb97764dfd262dfddd763cfe + depends: + - icu >=75.1,<76.0a0 + - libgcc >=13 + - libnsl >=2.0.1,<2.1.0a0 + - libstdcxx >=13 + license: Apache-2.0 + license_family: Apache + size: 1629566 + timestamp: 1728976186820 +- conda: https://prefix.dev/conda-forge/osx-64/xerces-c-3.3.0-hd0321b6_0.conda + sha256: 8769f3f08e78f26fdf6f530efc84a48d05ce7d8dbde405bd81d87e5dc43cb2d9 + md5: 3ad24748832587b79c7a1f96ca874376 + depends: + - __osx >=10.13 + - icu >=75.1,<76.0a0 + - libcxx >=17 + license: Apache-2.0 + license_family: Apache + size: 1353665 + timestamp: 1728976213621 +- conda: https://prefix.dev/conda-forge/osx-arm64/xerces-c-3.3.0-hd62221f_0.conda + sha256: 54e36cb8172675de7f8ce39b5914de602b860c1febb1770b758f0f220836f41e + md5: 619c817c693a09599ecb7e864d538f63 + depends: + - __osx >=11.0 + - icu >=75.1,<76.0a0 + - libcxx >=17 + license: Apache-2.0 + license_family: Apache + size: 1277136 + timestamp: 1728976036185 +- conda: https://prefix.dev/conda-forge/win-64/xerces-c-3.3.0-he0c23c2_0.conda + sha256: bba9bc42593fc8e1da32bc8f810c305ab3fd230689c41b59e6fe77ab79cbe7d7 + md5: 9c600d9aaba64595d0c3561f1b9d700b + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 3560268 + timestamp: 1728976534703 +- conda: https://prefix.dev/conda-forge/linux-64/xkeyboard-config-2.43-hb9d3cd8_0.conda + sha256: 0d89b5873515a1f05d311f37ea4e087bbccc0418afa38f2f6189e97280db3179 + md5: f725c7425d6d7c15e31f3b99a88ea02f + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 389475 + timestamp: 1727840188958 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xkeyboard-config-2.43-h86ecc28_0.conda + sha256: b3f09cc99b6b7707aa8812bbc7556fd431999ad3a48292e4ff82335b5fda976c + md5: a809b8e3776fbc05696c82f8cf6f5a92 + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + license: MIT + license_family: MIT + size: 391011 + timestamp: 1727840308426 +- conda: https://prefix.dev/conda-forge/noarch/xlrd-2.0.1-pyhd8ed1ab_3.tar.bz2 + sha256: a97030fc6cde1a335c035392db47efdb4add7d1db76a11b4bfac6ec7fc42bfe5 + md5: 97dfcd5ff030d829b55f67e82f928093 + depends: + - python >=3.6 + license: BSD-3-Clause AND BSD-4-Clause + license_family: BSD + size: 94071 + timestamp: 1610224499738 +- conda: https://prefix.dev/conda-forge/noarch/xlutils-2.0.0-pyhd8ed1ab_1.conda + sha256: 87fb367432d257eda2f94429f80e5a018afcfa2fec0b18464bdc29f96d29caa5 + md5: 6aa4173d12cc0cba794a71d476f6a3db + depends: + - python >=3.9 + - xlrd >=0.7.2 + - xlwt >=0.7.4 + license: MIT + license_family: MIT + size: 33957 + timestamp: 1732996003821 +- conda: https://prefix.dev/conda-forge/noarch/xlwt-1.3.0-py_1.tar.bz2 + sha256: 3a019d182779f53c65f1a4466d5c1d3363b200d5e3b554cc2a6303d318b7ca0b + md5: deb0fb0c5977e3aa33050a9c405842a4 + depends: + - python + license: BSD + license_family: BSD + size: 85227 + timestamp: 1531611142582 +- conda: https://prefix.dev/conda-forge/win-64/xorg-fixesproto-5.0-hcd874cb_1002.tar.bz2 + sha256: 6be2ef984ad26b5f1d03ab67ed5e136316c35c2201c17a66a8730fc8411bcc55 + md5: 148f09dc4251d118d803878eb3b0570a + depends: + - m2w64-gcc-libs + - xorg-xextproto + license: MIT + license_family: MIT + size: 9910 + timestamp: 1617480107415 +- conda: https://prefix.dev/conda-forge/win-64/xorg-kbproto-1.0.7-hcd874cb_1002.tar.bz2 + sha256: 5b16e1ca1ecc0d2907f236bc4d8e6ecfd8417db013c862a01afb7f9d78e48c09 + md5: 8d11c1dac4756ca57e78c1bfe173bba4 + depends: + - m2w64-gcc-libs + license: MIT + license_family: MIT + size: 28166 + timestamp: 1610028297505 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libice-1.1.2-hb9d3cd8_0.conda + sha256: c12396aabb21244c212e488bbdc4abcdef0b7404b15761d9329f5a4a39113c4b + md5: fb901ff28063514abb6046c9ec2c4a45 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 58628 + timestamp: 1734227592886 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libice-1.1.2-h86ecc28_0.conda + sha256: a2ba1864403c7eb4194dacbfe2777acf3d596feae43aada8d1b478617ce45031 + md5: c8d8ec3e00cd0fd8a231789b91a7c5b7 + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 60433 + timestamp: 1734229908988 +- conda: https://prefix.dev/conda-forge/osx-64/xorg-libice-1.1.2-h6e16a3a_0.conda + sha256: ab190f758a1d7cf2bdd3656e6eb90b7316cdd03a32214638f691e02ad798aaed + md5: d894608e2c18127545d67a096f1b4bab + depends: + - __osx >=10.13 + license: MIT + license_family: MIT + size: 50154 + timestamp: 1734227708757 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libice-1.1.2-h5505292_0.conda + sha256: 0e68b75a51901294ab21c031dcc1e485a65770a4893f98943b0908c4217b14e1 + md5: daf3b34253eea046c9ab94e0c3b2f83d + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 48418 + timestamp: 1734227712919 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libice-1.1.1-hcd874cb_0.conda + sha256: 353e07e311eb10e934f03e0123d0f05d9b3770a70b0c3993e6d11cf74d85689f + md5: 5271e3af4791170e2c55d02818366916 + depends: + - m2w64-gcc-libs + - m2w64-gcc-libs-core + - xorg-libx11 >=1.8.4,<2.0a0 + license: MIT + license_family: MIT + size: 158086 + timestamp: 1685308072189 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libsm-1.2.6-he73a12e_0.conda + sha256: 277841c43a39f738927145930ff963c5ce4c4dacf66637a3d95d802a64173250 + md5: 1c74ff8c35dcadf952a16f752ca5aa49 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libuuid >=2.38.1,<3.0a0 + - xorg-libice >=1.1.2,<2.0a0 + license: MIT + license_family: MIT + size: 27590 + timestamp: 1741896361728 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libsm-1.2.6-h0808dbd_0.conda + sha256: b86a819cd16f90c01d9d81892155126d01555a20dabd5f3091da59d6309afd0a + md5: 2d1409c50882819cb1af2de82e2b7208 + depends: + - libgcc >=13 + - libuuid >=2.38.1,<3.0a0 + - xorg-libice >=1.1.2,<2.0a0 + license: MIT + license_family: MIT + size: 28701 + timestamp: 1741897678254 +- conda: https://prefix.dev/conda-forge/osx-64/xorg-libsm-1.2.6-h6e16a3a_0.conda + sha256: 9f0cb0a0a94a76f07ed449ee404c83fb91e77cd732cd0dcff395e90cc02338ef + md5: 267dc632a1c41345622c935bb6026dc4 + depends: + - __osx >=10.13 + - xorg-libice >=1.1.2,<2.0a0 + license: MIT + license_family: MIT + size: 24556 + timestamp: 1741896589948 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libsm-1.2.6-h5505292_0.conda + sha256: 9bd3cb47ad7bb6c2d0b3b39d76c0e0a7b1d39fc76524fe76a7ff014073467bf5 + md5: a01171a0aee17fc4e74a50971a87755d + depends: + - __osx >=11.0 + - xorg-libice >=1.1.2,<2.0a0 + license: MIT + license_family: MIT + size: 24419 + timestamp: 1741896544082 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libsm-1.2.4-hcd874cb_0.conda + sha256: 3a8cc151142c379d3ec3ec4420395d3a273873d3a45a94cd3038d143f5a519e8 + md5: 25926681339df15918243d9a7cec25a1 + depends: + - m2w64-gcc-libs + - m2w64-gcc-libs-core + - xorg-libice >=1.1.1,<2.0a0 + license: MIT + license_family: MIT + size: 86397 + timestamp: 1685454296879 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libx11-1.8.12-h4f16b4b_0.conda + sha256: 51909270b1a6c5474ed3978628b341b4d4472cd22610e5f22b506855a5e20f67 + md5: db038ce880f100acc74dba10302b5630 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libxcb >=1.17.0,<2.0a0 + license: MIT + license_family: MIT + size: 835896 + timestamp: 1741901112627 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libx11-1.8.12-hca56bd8_0.conda + sha256: 452977d8ad96f04ec668ba74f46e70a53e00f99c0e0307956aeca75894c8131d + md5: 3df132f0048b9639bc091ef22937c111 + depends: + - libgcc >=13 + - libxcb >=1.17.0,<2.0a0 + license: MIT + license_family: MIT + size: 864850 + timestamp: 1741901264068 +- conda: https://prefix.dev/conda-forge/osx-64/xorg-libx11-1.8.12-h217831a_0.conda + sha256: 3a40a2cf7d50546342aa1159a5e3116d580062cb2d6aef1d3458b4f75e0f271c + md5: 4b83c16519d328361b001ae732955fc9 + depends: + - __osx >=10.13 + - libxcb >=1.17.0,<2.0a0 + license: MIT + license_family: MIT + size: 784591 + timestamp: 1741901259949 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libx11-1.8.12-h6a5fb8c_0.conda + sha256: 3ba39f182ecb6bf0bfb2dbbc08b1fc80a0a97e5c07cad06a03e71baf1fe7ac9d + md5: 89b59aaa3c35257dba0b7c2d980f35f0 + depends: + - __osx >=11.0 + - libxcb >=1.17.0,<2.0a0 + license: MIT + license_family: MIT + size: 761938 + timestamp: 1741901455497 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libx11-1.8.9-h0076a8d_1.conda + sha256: c378304044321e74c6acd483674f404864a229ab2a8841bf9515bc1a30783e99 + md5: 0296a4de2235cad9ad3112134f8e4519 + depends: + - libxcb >=1.16,<2.0.0a0 + - m2w64-gcc-libs + - m2w64-gcc-libs-core + - xorg-kbproto + - xorg-xextproto >=7.3.0,<8.0a0 + - xorg-xproto + license: MIT + license_family: MIT + size: 814589 + timestamp: 1718847832308 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda + sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038 + md5: f6ebe2cb3f82ba6c057dde5d9debe4f7 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 14780 + timestamp: 1734229004433 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxau-1.0.12-h86ecc28_0.conda + sha256: 7829a0019b99ba462aece7592d2d7f42e12d12ccd3b9614e529de6ddba453685 + md5: d5397424399a66d33c80b1f2345a36a6 + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 15873 + timestamp: 1734230458294 +- conda: https://prefix.dev/conda-forge/osx-64/xorg-libxau-1.0.12-h6e16a3a_0.conda + sha256: b4d2225135aa44e551576c4f3cf999b3252da6ffe7b92f0ad45bb44b887976fc + md5: 4cf40e60b444d56512a64f39d12c20bd + depends: + - __osx >=10.13 + license: MIT + license_family: MIT + size: 13290 + timestamp: 1734229077182 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxau-1.0.12-h5505292_0.conda + sha256: f33e6f013fc36ebc200f09ddead83468544cb5c353a3b50499b07b8c34e28a8d + md5: 50901e0764b7701d8ed7343496f4f301 + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 13593 + timestamp: 1734229104321 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libxau-1.0.11-hcd874cb_0.conda + sha256: 8c5b976e3b36001bdefdb41fb70415f9c07eff631f1f0155f3225a7649320e77 + md5: c46ba8712093cb0114404ae8a7582e1a + depends: + - m2w64-gcc-libs + - m2w64-gcc-libs-core + license: MIT + license_family: MIT + size: 51297 + timestamp: 1684638355740 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxcomposite-0.4.6-hb9d3cd8_2.conda + sha256: 753f73e990c33366a91fd42cc17a3d19bb9444b9ca5ff983605fa9e953baf57f + md5: d3c295b50f092ab525ffe3c2aa4b7413 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + license: MIT + license_family: MIT + size: 13603 + timestamp: 1727884600744 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxcomposite-0.4.6-h86ecc28_2.conda + sha256: 0cb82160412adb6d83f03cf50e807a8e944682d556b2215992a6fbe9ced18bc0 + md5: 86051eee0766c3542be24844a9c3cf36 + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + license: MIT + license_family: MIT + size: 13982 + timestamp: 1727884626338 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxcursor-1.2.3-hb9d3cd8_0.conda + sha256: 832f538ade441b1eee863c8c91af9e69b356cd3e9e1350fff4fe36cc573fc91a + md5: 2ccd714aa2242315acaf0a67faea780b + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - xorg-libxrender >=0.9.11,<0.10.0a0 + license: MIT + license_family: MIT + size: 32533 + timestamp: 1730908305254 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxcursor-1.2.3-h86ecc28_0.conda + sha256: c5d3692520762322a9598e7448492309f5ee9d8f3aff72d787cf06e77c42507f + md5: f2054759c2203d12d0007005e1f1296d + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - xorg-libxrender >=0.9.11,<0.10.0a0 + license: MIT + license_family: MIT + size: 34596 + timestamp: 1730908388714 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxdamage-1.1.6-hb9d3cd8_0.conda + sha256: 43b9772fd6582bf401846642c4635c47a9b0e36ca08116b3ec3df36ab96e0ec0 + md5: b5fcc7172d22516e1f965490e65e33a4 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + license: MIT + license_family: MIT + size: 13217 + timestamp: 1727891438799 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxdamage-1.1.6-h86ecc28_0.conda + sha256: 3afaa2f43eb4cb679fc0c3d9d7c50f0f2c80cc5d3df01d5d5fd60655d0bfa9be + md5: d5773c4e4d64428d7ddaa01f6f845dc7 + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + license: MIT + license_family: MIT + size: 13794 + timestamp: 1727891406431 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda + sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee + md5: 8035c64cb77ed555e3f150b7b3972480 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 19901 + timestamp: 1727794976192 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxdmcp-1.1.5-h57736b2_0.conda + sha256: efcc150da5926cf244f757b8376d96a4db78bc15b8d90ca9f56ac6e75755971f + md5: 25a5a7b797fe6e084e04ffe2db02fc62 + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 20615 + timestamp: 1727796660574 +- conda: https://prefix.dev/conda-forge/osx-64/xorg-libxdmcp-1.1.5-h00291cd_0.conda + sha256: bb4d1ef9cafef535494adf9296130b6193b3a44375883185b5167de03eb1ac7f + md5: 9f438e1b6f4e73fd9e6d78bfe7c36743 + depends: + - __osx >=10.13 + license: MIT + license_family: MIT + size: 18465 + timestamp: 1727794980957 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxdmcp-1.1.5-hd74edd7_0.conda + sha256: 9939a166d780700d81023546759102b33fdc2c5f11ef09f5f66c77210fd334c8 + md5: 77c447f48cab5d3a15ac224edb86a968 + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 18487 + timestamp: 1727795205022 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.3-hcd874cb_0.tar.bz2 + sha256: f51205d33c07d744ec177243e5d9b874002910c731954f2c8da82459be462b93 + md5: 46878ebb6b9cbd8afcf8088d7ef00ece + depends: + - m2w64-gcc-libs + license: MIT + license_family: MIT + size: 67908 + timestamp: 1610072296570 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxext-1.3.6-hb9d3cd8_0.conda + sha256: da5dc921c017c05f38a38bd75245017463104457b63a1ce633ed41f214159c14 + md5: febbab7d15033c913d53c7a2c102309d + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 50060 + timestamp: 1727752228921 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxext-1.3.6-h57736b2_0.conda + sha256: 8e216b024f52e367463b4173f237af97cf7053c77d9ce3e958bc62473a053f71 + md5: bd1e86dd8aa3afd78a4bfdb4ef918165 + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + license: MIT + license_family: MIT + size: 50746 + timestamp: 1727754268156 +- conda: https://prefix.dev/conda-forge/osx-64/xorg-libxext-1.3.6-h00291cd_0.conda + sha256: 26c88c5629895d7df5722320931377aa1ba3dea3950faa77e0c9fe5af29f78e5 + md5: 62f4f9d7a6c176be164329b4a1fc2616 + depends: + - __osx >=10.13 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 42572 + timestamp: 1727752240262 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxext-1.3.6-hd74edd7_0.conda + sha256: 4526fcd879b74400e66cc2a041ca00c0ecd210486459cc65610b135be7c6a2d2 + md5: acf6c394865f1b7a51c8e57fec6fcde3 + depends: + - __osx >=11.0 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 41870 + timestamp: 1727752280756 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libxext-1.3.4-hcd874cb_2.conda + sha256: 829320f05866ea1cc51924828427f215f4d0db093e748a662e3bb68b764785a4 + md5: 2aa695ac3c56193fd8d526e3b511e021 + depends: + - m2w64-gcc-libs + - xorg-libx11 >=1.7.2,<2.0a0 + - xorg-xextproto + license: MIT + license_family: MIT + size: 221821 + timestamp: 1677038179908 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxfixes-6.0.1-hb9d3cd8_0.conda + sha256: 2fef37e660985794617716eb915865ce157004a4d567ed35ec16514960ae9271 + md5: 4bdb303603e9821baf5fe5fdff1dc8f8 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 19575 + timestamp: 1727794961233 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxfixes-6.0.1-h57736b2_0.conda + sha256: f5c71e0555681a82a65c483374b91d91b2cb9a9903b3a22ddc00f36719fce549 + md5: 78f8715c002cc66991d7c11e3cf66039 + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + license: MIT + license_family: MIT + size: 20289 + timestamp: 1727796500830 +- conda: https://prefix.dev/conda-forge/osx-64/xorg-libxfixes-6.0.1-h00291cd_0.conda + sha256: 40f00881dec5e77810e53069d6a16b83985299484743cb950f64ddf329c2be39 + md5: 466ace5d8c55c03e571e7c0dcd288b17 + depends: + - __osx >=10.13 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 16859 + timestamp: 1727794961843 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxfixes-6.0.1-hd74edd7_0.conda + sha256: 39e82a4d7e91d55f5a719b7ce27c185f9ad52f5315a28c6c768b3c985a2bc2b7 + md5: d59076ce442150458d39285c01ebf26a + depends: + - __osx >=11.0 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 17116 + timestamp: 1727795029882 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libxfixes-5.0.3-hcd874cb_1004.tar.bz2 + sha256: 4e6962989a4e422561cc3153aae27de9ed4a0efb314765f88986ffe0d24b4f36 + md5: 5a918f49233ba0206d86062a14fa8724 + depends: + - m2w64-gcc-libs + - xorg-fixesproto + - xorg-libx11 >=1.7.0,<2.0a0 + license: MIT + license_family: MIT + size: 109879 + timestamp: 1617718538793 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxi-1.8.2-hb9d3cd8_0.conda + sha256: 1a724b47d98d7880f26da40e45f01728e7638e6ec69f35a3e11f92acd05f9e7a + md5: 17dcc85db3c7886650b8908b183d6876 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + license: MIT + license_family: MIT + size: 47179 + timestamp: 1727799254088 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxi-1.8.2-h57736b2_0.conda + sha256: 7b587407ecb9ccd2bbaf0fb94c5dbdde4d015346df063e9502dc0ce2b682fb5e + md5: eeee3bdb31c6acde2b81ad1b8c287087 + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + license: MIT + license_family: MIT + size: 48197 + timestamp: 1727801059062 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxinerama-1.1.5-h5888daf_1.conda + sha256: 1b9141c027f9d84a9ee5eb642a0c19457c788182a5a73c5a9083860ac5c20a8c + md5: 5e2eb9bf77394fc2e5918beefec9f9ab + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + license: MIT + license_family: MIT + size: 13891 + timestamp: 1727908521531 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxinerama-1.1.5-h5ad3122_1.conda + sha256: 5f84f820397db504e187754665d48d385e0a2a49f07ffc2372c7f42fa36dd972 + md5: a7b99f104e14b99ca773d2fe2d195585 + depends: + - libgcc >=13 + - libstdcxx >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + license: MIT + license_family: MIT + size: 14388 + timestamp: 1727908606602 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxmu-1.2.1-hb9d3cd8_1.conda + sha256: 467cba5106e628068487dcbc2ba2dbd6a434e75d752eaf0895086e9fe65e6a8d + md5: f35a9a2da717ade815ffa70c0e8bdfbd + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxt >=1.3.0,<2.0a0 + license: MIT + license_family: MIT + size: 89078 + timestamp: 1727965853556 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxmu-1.2.1-h57736b2_1.conda + sha256: 18a1d4591976d2266adf6951ce6edaadf9f4994408c6d15e0b5d8f41b8154671 + md5: 198cb350a783849b5683dbaac3ca96df + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxt >=1.3.0,<2.0a0 + license: MIT + license_family: MIT + size: 92167 + timestamp: 1727965913339 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libxpm-3.5.17-hcd874cb_0.conda + sha256: d5cc2f026658e8b85679813bff35c16c857f873ba02489e6eb6e30d5865dacc4 + md5: 029be9b667bf3896fa28bc32adb1bfc3 + depends: + - m2w64-gcc-libs + - m2w64-gcc-libs-core + - xorg-libx11 >=1.8.6,<2.0a0 + - xorg-libxext >=1.3.4,<2.0a0 + - xorg-libxt >=1.3.0,<2.0a0 + - xorg-xextproto >=7.3.0,<8.0a0 + - xorg-xproto + license: MIT + license_family: MIT + size: 195881 + timestamp: 1696449889560 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxrandr-1.5.4-hb9d3cd8_0.conda + sha256: ac0f037e0791a620a69980914a77cb6bb40308e26db11698029d6708f5aa8e0d + md5: 2de7f99d6581a4a7adbff607b5c278ca + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxrender >=0.9.11,<0.10.0a0 + license: MIT + license_family: MIT + size: 29599 + timestamp: 1727794874300 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxrandr-1.5.4-h86ecc28_0.conda + sha256: b2588a2b101d1b0a4e852532c8b9c92c59ef584fc762dd700567bdbf8cd00650 + md5: dd3e74283a082381aa3860312e3c721e + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxrender >=0.9.11,<0.10.0a0 + license: MIT + license_family: MIT + size: 30197 + timestamp: 1727794957221 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxrender-0.9.12-hb9d3cd8_0.conda + sha256: 044c7b3153c224c6cedd4484dd91b389d2d7fd9c776ad0f4a34f099b3389f4a1 + md5: 96d57aba173e878a2089d5638016dc5e + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 33005 + timestamp: 1734229037766 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxrender-0.9.12-h86ecc28_0.conda + sha256: ffd77ee860c9635a28cfda46163dcfe9224dc6248c62404c544ae6b564a0be1f + md5: ae2c2dd0e2d38d249887727db2af960e + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 33649 + timestamp: 1734229123157 +- conda: https://prefix.dev/conda-forge/osx-64/xorg-libxrender-0.9.12-h6e16a3a_0.conda + sha256: c027136ce87496fd517ce7c07cda2236d8aef00d292cdf42bff8f5a1ad03192c + md5: 15949671046839008f5e782dfbf63e65 + depends: + - __osx >=10.13 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 28831 + timestamp: 1734229108708 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxrender-0.9.12-h5505292_0.conda + sha256: 1c4a8a229e847604045de1f2af032104cab0f0e93b57f0cc553478f8a21f970a + md5: 01690f6107fc7487529242d29bf2abe8 + depends: + - __osx >=11.0 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 28434 + timestamp: 1734229187899 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libxrender-0.9.11-hcd874cb_0.conda + sha256: a6b87abbf9898021d3dbb831d4ad1cb470635bb920b3632fd389d99e2a50a652 + md5: c961f8e9aa1039e1b656b2f1792f05d8 + depends: + - m2w64-gcc-libs + - m2w64-gcc-libs-core + - xorg-libx11 >=1.8.6,<2.0a0 + - xorg-renderproto + license: MIT + license_family: MIT + size: 152274 + timestamp: 1688301251907 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxscrnsaver-1.2.4-hb9d3cd8_0.conda + sha256: 58e8fc1687534124832d22e102f098b5401173212ac69eb9fd96b16a3e2c8cb2 + md5: 303f7a0e9e0cd7d250bb6b952cecda90 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + license: MIT + license_family: MIT + size: 14412 + timestamp: 1727899730073 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxt-1.3.1-hb9d3cd8_0.conda + sha256: a8afba4a55b7b530eb5c8ad89737d60d60bc151a03fbef7a2182461256953f0e + md5: 279b0de5f6ba95457190a1c459a64e31 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libice >=1.1.1,<2.0a0 + - xorg-libsm >=1.2.4,<2.0a0 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 379686 + timestamp: 1731860547604 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxt-1.3.1-h57736b2_0.conda + sha256: 7c109792b60720809a580612aba7f8eb2a0bd425b9fc078748a9d6ffc97cbfa8 + md5: a9e4852c8e0b68ee783e7240030b696f + depends: + - libgcc >=13 + - xorg-libice >=1.1.1,<2.0a0 + - xorg-libsm >=1.2.4,<2.0a0 + - xorg-libx11 >=1.8.9,<2.0a0 + license: MIT + license_family: MIT + size: 384752 + timestamp: 1731860572314 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libxt-1.3.0-hcd874cb_1.conda + sha256: d513e0c627f098ef6655ce188eca79a672eaf763b0bbf37b228cb46dc82a66ca + md5: 511a29edd2ff3d973f63e54f19dcc06e + depends: + - m2w64-gcc-libs + - m2w64-gcc-libs-core + - xorg-kbproto + - xorg-libice >=1.1.1,<2.0a0 + - xorg-libsm >=1.2.4,<2.0a0 + - xorg-libx11 >=1.8.6,<2.0a0 + - xorg-xproto + license: MIT + license_family: MIT + size: 671704 + timestamp: 1690289114426 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxtst-1.2.5-hb9d3cd8_3.conda + sha256: 752fdaac5d58ed863bbf685bb6f98092fe1a488ea8ebb7ed7b606ccfce08637a + md5: 7bbe9a0cc0df0ac5f5a8ad6d6a11af2f + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxi >=1.7.10,<2.0a0 + license: MIT + license_family: MIT + size: 32808 + timestamp: 1727964811275 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxtst-1.2.5-h57736b2_3.conda + sha256: 6eaffce5a34fc0a16a21ddeaefb597e792a263b1b0c387c1ce46b0a967d558e1 + md5: c05698071b5c8e0da82a282085845860 + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxi >=1.7.10,<2.0a0 + license: MIT + license_family: MIT + size: 33786 + timestamp: 1727964907993 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxxf86vm-1.1.6-hb9d3cd8_0.conda + sha256: 8a4e2ee642f884e6b78c20c0892b85dd9b2a6e64a6044e903297e616be6ca35b + md5: 5efa5fa6243a622445fdfd72aee15efa + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + license: MIT + license_family: MIT + size: 17819 + timestamp: 1734214575628 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxxf86vm-1.1.6-h86ecc28_0.conda + sha256: 012f0d1fd9fb1d949e0dccc0b28d9dd5a8895a1f3e2a7edc1fa2e1b33fc0f233 + md5: d745faa2d7c15092652e40a22bb261ed + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + license: MIT + license_family: MIT + size: 18185 + timestamp: 1734214652726 +- conda: https://prefix.dev/conda-forge/win-64/xorg-renderproto-0.11.1-hcd874cb_1002.tar.bz2 + sha256: 96b3fea823f1d55af85cf137b414905724442db0471a2225fbf2d668dce9730d + md5: d5dc44d9c5a98b56111d9492333b71e6 + depends: + - m2w64-gcc-libs + license: MIT + license_family: MIT + size: 10352 + timestamp: 1614866857633 +- conda: https://prefix.dev/conda-forge/win-64/xorg-xextproto-7.3.0-hcd874cb_1003.conda + sha256: 04c0a08fd34fa33406c20f729e8f9cc40e8fd898072b952a5c14280fcf26f2e6 + md5: 6e6c2639620e436bddb7c040cd4f3adb + depends: + - m2w64-gcc-libs + license: MIT + license_family: MIT + size: 31034 + timestamp: 1677037259999 +- conda: https://prefix.dev/conda-forge/win-64/xorg-xproto-7.0.31-hcd874cb_1007.tar.bz2 + sha256: b84cacba8479fa14199c9255fb62e005cacc619e90198c53b1653973709ec331 + md5: 88f3c65d2ad13826a9e0b162063be023 + depends: + - m2w64-gcc-libs + license: MIT + license_family: MIT + size: 75708 + timestamp: 1607292254607 +- conda: https://prefix.dev/conda-forge/linux-64/xz-5.6.4-hbcc6ac9_0.conda + sha256: 91fc251034fa5199919680aa50299296d89da54b2d066fb6e6a60461c17c0c4a + md5: bb511c87804cf7220246a3a6efc45c22 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - liblzma 5.6.4 hb9d3cd8_0 + - liblzma-devel 5.6.4 hb9d3cd8_0 + - xz-gpl-tools 5.6.4 hbcc6ac9_0 + - xz-tools 5.6.4 hb9d3cd8_0 + license: 0BSD AND LGPL-2.1-or-later AND GPL-2.0-or-later + size: 23477 + timestamp: 1738525395307 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xz-5.6.4-h2dbfc1b_0.conda + sha256: e95f911e89ec939f516ab478e67c1a1222bb8d17298d9f04d1f9da7ea3bc2815 + md5: 106b4128bc624409d2685c5a395c6778 + depends: + - libgcc >=13 + - liblzma 5.6.4 h86ecc28_0 + - liblzma-devel 5.6.4 h86ecc28_0 + - xz-gpl-tools 5.6.4 h2dbfc1b_0 + - xz-tools 5.6.4 h86ecc28_0 + license: 0BSD AND LGPL-2.1-or-later AND GPL-2.0-or-later + size: 23627 + timestamp: 1738529030085 +- conda: https://prefix.dev/conda-forge/linux-64/xz-gpl-tools-5.6.4-hbcc6ac9_0.conda + sha256: 300fc4e5993a36c979e61b1a38d00f0c23c0c56d5989be537cbc7bd8658254ed + md5: 246840b451f7a66bd68869e56b066dd5 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - liblzma 5.6.4 hb9d3cd8_0 + license: 0BSD AND LGPL-2.1-or-later AND GPL-2.0-or-later + size: 33285 + timestamp: 1738525381548 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xz-gpl-tools-5.6.4-h2dbfc1b_0.conda + sha256: bba299a0b05e8772226e859cfc301c682935da677e3613cfa874dc4ad1c818f7 + md5: c43dd63b7ffb096cd1de6392b2a6f5cc + depends: + - libgcc >=13 + - liblzma 5.6.4 h86ecc28_0 + license: 0BSD AND LGPL-2.1-or-later AND GPL-2.0-or-later + size: 33515 + timestamp: 1738528828839 +- conda: https://prefix.dev/conda-forge/linux-64/xz-tools-5.6.4-hb9d3cd8_0.conda + sha256: 57506a312d8cfbee98217fb382822bd49794ea6318dd4e0413a0d588dc6f4f69 + md5: a098f9f949af52610fdceb8e35b57513 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - liblzma 5.6.4 hb9d3cd8_0 + license: 0BSD AND LGPL-2.1-or-later + size: 89735 + timestamp: 1738525367692 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xz-tools-5.6.4-h86ecc28_0.conda + sha256: 30b1f1ffbf1a578f003e39263dc3e1fb3f28c8d602326126df14f3a28cee21d7 + md5: f99b6cd964d91182b36681fba1170965 + depends: + - libgcc >=13 + - liblzma 5.6.4 h86ecc28_0 + license: 0BSD AND LGPL-2.1-or-later + size: 95247 + timestamp: 1738528627128 +- conda: https://prefix.dev/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 + sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 + md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae + depends: + - libgcc-ng >=9.4.0 + license: MIT + license_family: MIT + size: 89141 + timestamp: 1641346969816 +- conda: https://prefix.dev/conda-forge/linux-aarch64/yaml-0.2.5-hf897c2e_2.tar.bz2 + sha256: 8bc601d6dbe249eba44b3c456765265cd8f42ef1e778f8df9b0c9c88b8558d7e + md5: b853307650cb226731f653aa623936a4 + depends: + - libgcc-ng >=9.4.0 + license: MIT + license_family: MIT + size: 92927 + timestamp: 1641347626613 +- conda: https://prefix.dev/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2 + sha256: 5301417e2c8dea45b401ffee8df3957d2447d4ce80c83c5ff151fc6bfe1c4148 + md5: d7e08fcf8259d742156188e8762b4d20 + license: MIT + license_family: MIT + size: 84237 + timestamp: 1641347062780 +- conda: https://prefix.dev/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 + sha256: 93181a04ba8cfecfdfb162fc958436d868cc37db504c58078eab4c1a3e57fbb7 + md5: 4bb3f014845110883a3c5ee811fd84b4 + license: MIT + license_family: MIT + size: 88016 + timestamp: 1641347076660 +- conda: https://prefix.dev/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2 + sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5 + md5: adbfb9f45d1004a26763652246a33764 + depends: + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 + license: MIT + license_family: MIT + size: 63274 + timestamp: 1641347623319 +- conda: https://prefix.dev/conda-forge/linux-64/yaml-cpp-0.8.0-h59595ed_0.conda + sha256: a65bb5284369e548a15a44b14baf1f7ac34fa4718d7d987dd29032caba2ecf20 + md5: 965eaacd7c18eb8361fd12bb9e7a57d7 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + size: 204867 + timestamp: 1695710312002 +- conda: https://prefix.dev/conda-forge/linux-aarch64/yaml-cpp-0.8.0-h2f0025b_0.conda + sha256: 3ca47a7b43f4453e72cfc8333fbffe99b68e936a5e54457afa0a89e39239e251 + md5: b5da38ee183c1e50e3e7ffb171a2eca5 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + size: 193472 + timestamp: 1695710254150 +- conda: https://prefix.dev/conda-forge/osx-64/yaml-cpp-0.8.0-he965462_0.conda + sha256: 6e5e4afa1011a1ad5a734e895b8d2b2ad0fbc9ef6538aac8f852b33b2ebe44a8 + md5: 1bb3addc859ed1338370da6e2996ef47 + depends: + - libcxx >=15.0.7 + license: MIT + license_family: MIT + size: 130328 + timestamp: 1695710502498 +- conda: https://prefix.dev/conda-forge/osx-arm64/yaml-cpp-0.8.0-h13dd4ca_0.conda + sha256: e65a52fb1c9821ba3a7a670d650314f8ff983865e77ba9f69f74e0906844943d + md5: e783a232972a5c7dca549111e63a78b2 + depends: + - libcxx >=15.0.7 + license: MIT + license_family: MIT + size: 130329 + timestamp: 1695712959746 +- conda: https://prefix.dev/conda-forge/win-64/yaml-cpp-0.8.0-h63175ca_0.conda + sha256: d2e506baddde40388700f2c83586a002b927810d453272065b9e7b69d422fcca + md5: 9032e2129ea7afcc1a8e3d85715a931d + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 136608 + timestamp: 1695710737262 +- conda: https://prefix.dev/conda-forge/linux-64/yarl-1.18.3-py312h178313f_1.conda + sha256: 6b054c93dd19fd7544af51b41a8eacca2ab62271f6c0c5a2a0cffe80dc37a0ce + md5: 6822c49f294d4355f19d314b8b6063d8 + depends: + - __glibc >=2.17,<3.0.a0 + - idna >=2.0 + - libgcc >=13 + - multidict >=4.0 + - propcache >=0.2.1 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 152305 + timestamp: 1737575898300 +- conda: https://prefix.dev/conda-forge/linux-aarch64/yarl-1.18.3-py312hcc812fe_1.conda + sha256: bfa211c0dd5dbb308788f055277dc428b7923ceb2de6a22ea98bc17cf306f9f5 + md5: d14c78abdd6109e2b7162f53b6cc1e77 + depends: + - idna >=2.0 + - libgcc >=13 + - multidict >=4.0 + - propcache >=0.2.1 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 149654 + timestamp: 1737576065314 +- conda: https://prefix.dev/conda-forge/osx-64/yarl-1.18.3-py312h3520af0_1.conda + sha256: 0aa40f238e282d8b0a549732722ec655b752ff1bf6c0e0b5248aba16cc57a527 + md5: c9c69a722e1cb1250608ed6c58bd2215 + depends: + - __osx >=10.13 + - idna >=2.0 + - multidict >=4.0 + - propcache >=0.2.1 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 144992 + timestamp: 1737576039602 +- conda: https://prefix.dev/conda-forge/osx-arm64/yarl-1.18.3-py312h998013c_1.conda + sha256: 48821d23567ca0f853eee6f7812c74392867e123798b5b3c44f58758d8eb580e + md5: 092d3b40acc67c470f379049be343a7a + depends: + - __osx >=11.0 + - idna >=2.0 + - multidict >=4.0 + - propcache >=0.2.1 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: Apache-2.0 + license_family: Apache + size: 145543 + timestamp: 1737576074753 +- conda: https://prefix.dev/conda-forge/win-64/yarl-1.18.3-py312h31fea79_1.conda + sha256: ed25427ab892f0e9aa37514316b408d2f3739583dab600d3c744eaae9cbcf6f8 + md5: 004fb3779f2f70e82c6154369d711125 + depends: + - idna >=2.0 + - multidict >=4.0 + - propcache >=0.2.1 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 141616 + timestamp: 1737576608333 +- conda: https://prefix.dev/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_1.conda + sha256: 567c04f124525c97a096b65769834b7acb047db24b15a56888a322bf3966c3e1 + md5: 0c3cc595284c5e8f0f9900a9b228a332 + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 21809 + timestamp: 1732827613585 +- conda: https://prefix.dev/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda + sha256: 5d7c0e5f0005f74112a34a7425179f4eb6e73c92f5d109e6af4ddeca407c92ab + md5: c9f075ab2f33b3bbee9e62d4ad0a6cd8 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libzlib 1.3.1 hb9d3cd8_2 + license: Zlib + license_family: Other + size: 92286 + timestamp: 1727963153079 +- conda: https://prefix.dev/conda-forge/linux-aarch64/zlib-1.3.1-h86ecc28_2.conda + sha256: b4f649aa3ecdae384d5dad7074e198bff120edd3dfb816588e31738fc6d627b1 + md5: bc230abb5d21b63ff4799b0e75204783 + depends: + - libgcc >=13 + - libzlib 1.3.1 h86ecc28_2 + license: Zlib + license_family: Other + size: 95582 + timestamp: 1727963203597 +- conda: https://prefix.dev/conda-forge/osx-64/zlib-1.3.1-hd23fc13_2.conda + sha256: 219edbdfe7f073564375819732cbf7cc0d7c7c18d3f546a09c2dfaf26e4d69f3 + md5: c989e0295dcbdc08106fe5d9e935f0b9 + depends: + - __osx >=10.13 + - libzlib 1.3.1 hd23fc13_2 + license: Zlib + license_family: Other + size: 88544 + timestamp: 1727963189976 +- conda: https://prefix.dev/conda-forge/osx-arm64/zlib-1.3.1-h8359307_2.conda + sha256: 58f8860756680a4831c1bf4f294e2354d187f2e999791d53b1941834c4b37430 + md5: e3170d898ca6cb48f1bb567afb92f775 + depends: + - __osx >=11.0 + - libzlib 1.3.1 h8359307_2 + license: Zlib + license_family: Other + size: 77606 + timestamp: 1727963209370 +- conda: https://prefix.dev/conda-forge/win-64/zlib-1.3.1-h2466b09_2.conda + sha256: 8c688797ba23b9ab50cef404eca4d004a948941b6ee533ead0ff3bf52012528c + md5: be60c4e8efa55fddc17b4131aa47acbd + depends: + - libzlib 1.3.1 h2466b09_2 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Zlib + license_family: Other + size: 107439 + timestamp: 1727963788936 +- conda: https://prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py312h66e93f0_1.conda + sha256: b4fd6bd1cb87a183a8bbe85b4e87a1e7c51473309d0d82cd88d38fb021bcf41e + md5: d28b82fcc8d1b462b595af4b15a6cdcf + depends: + - __glibc >=2.17,<3.0.a0 + - cffi >=1.11 + - libgcc >=13 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 731658 + timestamp: 1741853415477 +- conda: https://prefix.dev/conda-forge/linux-aarch64/zstandard-0.23.0-py312hb2c0f52_1.conda + sha256: 0c0b17aa65255fe39a7f7d2c1feea3c1787a9c79329674b5981b6f13250bf230 + md5: 21505638229948770e18bd31635285ea + depends: + - cffi >=1.11 + - libgcc >=13 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 696505 + timestamp: 1741853476146 +- conda: https://prefix.dev/conda-forge/osx-64/zstandard-0.23.0-py312h01d7ebd_1.conda + sha256: 5d2635e81ff5d61c87383c62824988154acefeae63f408d03dbefcb80cba5f02 + md5: 493516415601e57f73bda23e91dda742 + depends: + - __osx >=10.13 + - cffi >=1.11 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 688202 + timestamp: 1741853531183 +- conda: https://prefix.dev/conda-forge/osx-arm64/zstandard-0.23.0-py312hea69d52_1.conda + sha256: db7ed45ce0ed42de5b799c094f15c064e5e7e88bbee128f8d15a0565367f3c41 + md5: b0af1b749dbf9621fbea742c2de68ff8 + depends: + - __osx >=11.0 + - cffi >=1.11 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython + - python_abi 3.12.* *_cp312 + license: BSD-3-Clause + license_family: BSD + size: 531069 + timestamp: 1741853718145 +- conda: https://prefix.dev/conda-forge/win-64/zstandard-0.23.0-py312h4389bb4_1.conda + sha256: 17f2abbda821be146b549498fab3d0eb9cafb210e163b983524db91524b8dcb5 + md5: 5028543ffb67666ca4fc3ebd620c97b8 + depends: + - cffi >=1.11 + - python >=3.12,<3.13.0a0 + - python_abi 3.12.* *_cp312 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 444958 + timestamp: 1741853730076 +- conda: https://prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda + sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb + md5: 6432cb5d4ac0046c3ac0a8a0f95842f9 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 567578 + timestamp: 1742433379869 +- conda: https://prefix.dev/conda-forge/linux-aarch64/zstd-1.5.7-hbcf94c1_2.conda + sha256: 0812e7b45f087cfdd288690ada718ce5e13e8263312e03b643dd7aa50d08b51b + md5: 5be90c5a3e4b43c53e38f50a85e11527 + depends: + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 551176 + timestamp: 1742433378347 +- conda: https://prefix.dev/conda-forge/osx-64/zstd-1.5.7-h8210216_2.conda + sha256: c171c43d0c47eed45085112cb00c8c7d4f0caa5a32d47f2daca727e45fb98dca + md5: cd60a4a5a8d6a476b30d8aa4bb49251a + depends: + - __osx >=10.13 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 485754 + timestamp: 1742433356230 +- conda: https://prefix.dev/conda-forge/osx-arm64/zstd-1.5.7-h6491c7d_2.conda + sha256: 0d02046f57f7a1a3feae3e9d1aa2113788311f3cf37a3244c71e61a93177ba67 + md5: e6f69c7bcccdefa417f056fa593b40f0 + depends: + - __osx >=11.0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 399979 + timestamp: 1742433432699 +- conda: https://prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda + sha256: bc64864377d809b904e877a98d0584f43836c9f2ef27d3d2a1421fa6eae7ca04 + md5: 21f56217d6125fb30c3c3f10c786d751 + depends: + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 354697 + timestamp: 1742433568506 diff --git a/package/rattler-build/pixi.toml b/package/rattler-build/pixi.toml new file mode 100644 index 0000000000..bbb1924749 --- /dev/null +++ b/package/rattler-build/pixi.toml @@ -0,0 +1,66 @@ +[workspace] +channels = [ + "https://prefix.dev/pixi-build-backends", + "https://prefix.dev/conda-forge", +] +platforms = ["linux-64", "linux-aarch64", "osx-64", "osx-arm64", "win-64"] +preview = ["pixi-build"] + +[package] +name = "freecad" +version = "1.1.0dev" +homepage = "https://freecad.org" +repository = "https://github.com/FreeCAD/FreeCAD" +description = "FreeCAD" + +[package.build] +backend = { name = "pixi-build-rattler-build", version = "*" } + +[feature.freecad.dependencies] +freecad = { path = "." } + +[feature.package.dependencies] +python = "==3.12.9" + +## Linux (x86-64) +[feature.package.target.linux-64.dependencies] +coreutils = "*" + +[feature.package.target.linux-64.tasks] +create_bundle = 'bash -c "cd linux && bash create_bundle.sh"' + +## Linux (aarch64) +[feature.package.target.linux-aarch64.dependencies] +coreutils = "*" + +[feature.package.target.linux-aarch64.tasks] +create_bundle = 'bash -c "cd linux && bash create_bundle.sh"' + +## macOS (Intel) +[feature.package.target.osx-64.dependencies] +coreutils = "*" +dmgbuild = "*" +sed = "*" + +[feature.package.target.osx-64.tasks] +create_bundle = 'bash -c "cd osx && bash create_bundle.sh"' + +## macOS (Apple Silicon) +[feature.package.target.osx-arm64.dependencies] +coreutils = "*" +dmgbuild = "*" +sed = "*" + +[feature.package.target.osx-arm64.tasks] +create_bundle = 'bash -c "cd osx && bash create_bundle.sh"' + +## Windows dependencies (x86-64) +[feature.package.target.win-64.dependencies] +git = "*" + +[feature.package.target.win-64.tasks] +create_bundle = 'bash -c "cd windows && bash create_bundle.sh"' + +[environments] +default = ["freecad"] +package = ["package"] diff --git a/package/rattler-build/recipe.yaml b/package/rattler-build/recipe.yaml new file mode 100644 index 0000000000..b45e28b4bc --- /dev/null +++ b/package/rattler-build/recipe.yaml @@ -0,0 +1,169 @@ +context: + version: "1.1.0dev" + +package: + name: freecad + version: "${{ version }}" + +source: + path: ../.. + use_gitignore: true + +build: + number: 0 + +requirements: + build: + - ccache + - cmake>=3.31.6,<4.0.0 + - compilers + - doxygen + - ninja + - noqt5 + - python==3.12.9 + - qt6-main==6.8.2 + - swig + + - if: linux and x86_64 + then: + - kernel-headers_linux-64 + - libdrm-cos7-x86_64 + - libselinux-cos7-x86_64 + - libsepol-cos7-x86_64 + - libspnav + - libx11-common-cos7-x86_64 + - libx11-cos7-x86_64 + - libxau-cos7-x86_64 + - libxcb-cos7-x86_64 + - libxdamage-cos7-x86_64 + - libxext-cos7-x86_64 + - libxfixes-cos7-x86_64 + - libxi-cos7-x86_64 + - libxi-devel-cos7-x86_64 + - libxxf86vm-cos7-x86_64 + - mesa-dri-drivers-cos7-x86_64 + - mesa-libegl-cos7-x86_64 + - mesa-libegl-devel-cos7-x86_64 + - mesa-libgl-cos7-x86_64 + - mesa-libgl-devel-cos7-x86_64 + - pixman-cos7-x86_64 + - sed + - sysroot_linux-64 + - xorg-x11-server-common-cos7-x86_64 + - xorg-x11-server-xvfb-cos7-x86_64 + - xorg-xproto + + - if: linux and aarch64 + then: + - kernel-headers_linux-aarch64 + - libdrm-cos7-aarch64 + - libselinux-cos7-aarch64 + - libsepol-cos7-aarch64 + - libspnav + - libx11-common-cos7-aarch64 + - libx11-cos7-aarch64 + - libxau-cos7-aarch64 + - libxcb-cos7-aarch64 + - libxdamage-cos7-aarch64 + - libxext-cos7-aarch64 + - libxfixes-cos7-aarch64 + - libxi-cos7-aarch64 + - libxi-devel-cos7-aarch64 + - libxxf86vm-cos7-aarch64 + - mesa-dri-drivers-cos7-aarch64 + - mesa-libegl-cos7-aarch64 + - mesa-libegl-devel-cos7-aarch64 + - mesa-libgl-cos7-aarch64 + - mesa-libgl-devel-cos7-aarch64 + - pixman-cos7-aarch64 + - sed + - sysroot_linux-aarch64 + - xorg-x11-server-common-cos7-aarch64 + - xorg-x11-server-xvfb-cos7-aarch64 + - xorg-xproto + + - if: build_platform != target_platform + then: + - cross-python_${{ target_platform }} + + host: + - coin3d + - eigen + - fmt + - freetype + - hdf5 + - libboost-devel + - matplotlib-base + - noqt5 + - numpy + - occt + - pcl + - pivy + - ply + - pybind11 + - pyside6 + - python==3.12.9 + - qt6-main==6.8.2 + - six + - smesh + - vtk + - xerces-c + - yaml-cpp + - zlib + + - if: windows + then: + - tbb-devel + + - if: unix + then: + - sed + + - if: linux + then: + - libspnav + - xorg-xproto + + - if: osx + then: + - blas * accelerate* + + run: + - blas + - blinker + - calculix + - debugpy + - docutils + - gmsh + - graphviz + # - ifcopenshell + - jinja2 + - lark + - lxml + - matplotlib-base + - nine + - noqt5 + - numpy + - occt + - olefile + - opencamlib + - opencv + - pandas + - pip + - pivy + - ply + - pycollada + - pyside6 + - python==3.12.9 + - pythonocc-core + - pyyaml + - qt6-main==6.8.2 + - requests + - scipy + - sympy + - vtk + - xlutils + + - if: linux + then: + - libspnav diff --git a/package/rattler-build/scripts/disable_git_info.patch b/package/rattler-build/scripts/disable_git_info.patch new file mode 100644 index 0000000000..4dc370fa63 --- /dev/null +++ b/package/rattler-build/scripts/disable_git_info.patch @@ -0,0 +1,13 @@ +diff --git a/src/Tools/SubWCRev.py b/src/Tools/SubWCRev.py +index 1f3f0a436343..c314003736f1 100644 +--- a/src/Tools/SubWCRev.py ++++ b/src/Tools/SubWCRev.py +@@ -523,7 +523,7 @@ def main(): + inp = open("%s/src/Build/Version.h.in" % (bindir)) + lines = inp.readlines() + inp.close() +- lines = i.writeVersion(lines) ++ #lines = i.writeVersion(lines) + out = open("%s/src/Build/Version.h.out" % (bindir), "w") + out.writelines(lines) + out.write("\n") diff --git a/package/rattler-build/scripts/fix_macos_lib_paths.py b/package/rattler-build/scripts/fix_macos_lib_paths.py new file mode 100644 index 0000000000..8a3dbebdac --- /dev/null +++ b/package/rattler-build/scripts/fix_macos_lib_paths.py @@ -0,0 +1,88 @@ +import os +import subprocess +import re +import sys + +if len(sys.argv) < 1 or "-h" in sys.argv: + print("""Usage: python fix_macos_paths.py [-r] [-s] + + Options: + -r scan the directory recursively + -s scan only without fixing absolute paths in LC_RPATH or LC_REEXPORT_DYLIB + """) + sys.exit(1) + +scan_path = os.path.abspath(os.path.expanduser(sys.argv[1])) +recursive = "-r" in sys.argv +scanmode = "-s" in sys.argv + +def get_lc_paths(output): + if "is not an object file" in output: + return [], [] + + rpath_result = [] + reexport_result = [] + + matches = re.finditer(r'cmd LC_RPATH', output) + for match in matches: + pos = match.start(0) + + path_match = re.search(r'path (.*) \(offset.+?\)', output[pos:]) + rpath_result.append(path_match.group(1)) + + matches = re.finditer(r'cmd LC_REEXPORT_DYLIB', output) + for match in matches: + pos = match.start(0) + + path_match = re.search(r'name (.*) \(offset.+?\)', output[pos:]) + reexport_result.append(path_match.group(1)) + + return rpath_result, reexport_result + +def remove_rpath(file_path, rpath): + subprocess.run(['install_name_tool', '-delete_rpath', rpath, file_path]) + subprocess.run(['codesign', '--force', '--sign', '-', file_path]) + print(f'\nRemoved rpath {rpath} from {file_path}') + +def change_reexport_dylib(file_path, reexport_dylib): + rel_reexport_dylib = "@rpath/" + os.path.basename(reexport_dylib) + subprocess.run(['install_name_tool', '-change', reexport_dylib, rel_reexport_dylib, file_path]) + subprocess.run(['codesign', '--force', '--sign', '-', file_path]) + print(f'\nChanged reexport dylib {reexport_dylib} to {rel_reexport_dylib} in {file_path}') + +def scan_directory(directory, recursive=False): + if recursive: + print(f"Recursively scanning dir: {scan_path}") + else: + print(f"Scanning dir: {scan_path}") + + for filename in os.listdir(directory): + full_path = os.path.join(directory, filename) + if recursive and os.path.isdir(full_path): + scan_directory(full_path, recursive) + continue + elif not os.path.isfile(full_path) or os.path.islink(full_path): + continue + + try: + output = subprocess.check_output(['otool', '-l', full_path], text=True) + rpaths, reexport_dylibs = get_lc_paths(output) + except: + continue + + file_dir = os.path.dirname(full_path) + for rpath in rpaths: + if os.path.isabs(rpath) and os.path.samefile(file_dir, rpath): + if scanmode: + print(f'\nFound absolute path in LC_RPATH: {rpath}\nIn: {full_path}') + else: + remove_rpath(full_path, rpath) + for reexport_dylib in reexport_dylibs: + if os.path.isabs(reexport_dylib): + if scanmode: + print(f'\nFound absolute path inLC_REEXPORT_DYLIB: {reexport_dylib}\nIn: {full_path}') + else: + change_reexport_dylib(full_path, reexport_dylib) + +scan_directory(scan_path, recursive) +print("Done") diff --git a/package/rattler-build/scripts/get_freecad_version.py b/package/rattler-build/scripts/get_freecad_version.py new file mode 100644 index 0000000000..b18ea6d6ce --- /dev/null +++ b/package/rattler-build/scripts/get_freecad_version.py @@ -0,0 +1,53 @@ +import sys +import os +import subprocess +import platform +from datetime import datetime + +import freecad +import FreeCAD + +package_manager = "conda" +system = platform.platform().split("-")[0] +arch = platform.machine() + +# Windows uses a different syntax +if arch == "AMD64": + arch = "x86_64" + +if "ARCH" in os.environ: + if os.environ["ARCH"] != "": + arch = os.environ["ARCH"] + +python_version = platform.python_version().split(".") +python_version = "py" + python_version[0] + python_version[1] +date = str(datetime.now()).split(" ")[0] + +version_info = FreeCAD.Version() +build_version_suffix = FreeCAD.ConfigGet("BuildVersionSuffix") +dev_version = version_info[0] + "." + version_info[1] + "." + version_info[2] + build_version_suffix +revision = version_info[3].split(" ")[0] + +if system == "macOS": + import jinja2 + print("create plist from template") + osx_directory = os.path.join(os.path.dirname(__file__), "..", "osx") + with open(os.path.join(osx_directory, "Info.plist.template")) as template_file: + template_str = template_file.read() + template = jinja2.Template(template_str) + rendered_str = template.render( FREECAD_VERSION="{}-{}".format(dev_version, revision), + APPLICATION_MENU_NAME="FreeCAD-{}-{}".format(dev_version, revision) ) + with open(os.path.join(osx_directory, "FreeCAD.app", "Contents", "Info.plist"), "w") as rendered_file: + rendered_file.write(rendered_str) + +if "DEPLOY_RELEASE" in os.environ and os.environ["DEPLOY_RELEASE"] == "weekly-builds": + dev_version = "weekly-builds" + revision_separator = "-" +else: + revision_separator = "" + revision = "" + +bundle_name = f"FreeCAD_{dev_version}{revision_separator}{revision}-{package_manager}-{system}-{arch}-{python_version}" + +with open("bundle_name.txt", "w") as bundle_name_file: + bundle_name_file.write(bundle_name) diff --git a/package/rattler-build/scripts/make_version_file.py b/package/rattler-build/scripts/make_version_file.py new file mode 100755 index 0000000000..cf74e51f8e --- /dev/null +++ b/package/rattler-build/scripts/make_version_file.py @@ -0,0 +1,41 @@ +#!/usr/bin/env python + +# call this file from within the FreeCAD git repo +# this script creates a file with the important version information +import os +import sys +import subprocess + +sys.path.append(f"{os.getcwd()}/src/Tools") +import SubWCRev + +gitInfo = SubWCRev.GitControl() +gitInfo.extractInfo("","") +i = open("src/Build/Version.h.cmake") +content = [] +for line in i.readlines(): + line = line.replace("${PACKAGE_WCREF}",gitInfo.rev) + line = line.replace("${PACKAGE_WCDATE}",gitInfo.date) + line = line.replace("${PACKAGE_WCURL}",gitInfo.url) + content.append(line) + +with open("src/Build/Version.h.cmake", "w") as o: + content.append('// Git relevant stuff\n') + content.append('#define FCRepositoryHash "%s"\n' % (gitInfo.hash)) + content.append('#define FCRepositoryBranch "%s"\n' % (gitInfo.branch)) + o.writelines(content) + +with open(os.sys.argv[1], "w") as f: + f.write(f"rev_number: {gitInfo.rev}\n") + f.write(f"branch_name: {gitInfo.branch}\n") + f.write(f"commit_date: {gitInfo.date}\n") + f.write(f"commit_hash: {gitInfo.hash}\n") + f.write(f"remote_url: {gitInfo.url}\n") + +p = subprocess.Popen(["git", "-c", "user.name='github-actions[bot]'", "-c", "user.email='41898282+github-actions[bot]@users.noreply.github.com'", + "commit", "-a", "-m", "add git information"], stdout=subprocess.PIPE, stderr=subprocess.PIPE) + +out, err = p.communicate() + +print(out.decode()) +print(err.decode()) diff --git a/package/rattler-build/windows/create_bundle.bat b/package/rattler-build/windows/create_bundle.bat new file mode 100644 index 0000000000..aaf60049e0 --- /dev/null +++ b/package/rattler-build/windows/create_bundle.bat @@ -0,0 +1,56 @@ +set conda_env="fc_env" + +robocopy ..\.pixi\envs\default\* %conda_env% /S /MT:%NUMBER_OF_PROCESSORS% > nul + +%conda_env%\python ..\scripts\get_freecad_version.py +set /p freecad_version_name= nul +robocopy %conda_env%\Lib %copy_dir%\bin\Lib /XD __pycache__ /S /MT:%NUMBER_OF_PROCESSORS% > nul +robocopy %conda_env%\Scripts %copy_dir%\bin\Scripts /S /MT:%NUMBER_OF_PROCESSORS% > nul +robocopy %conda_env%\python*.* %copy_dir%\bin\ /XF *.pdb /MT:%NUMBER_OF_PROCESSORS% > nul +robocopy %conda_env%\msvc*.* %copy_dir%\bin\ /XF *.pdb /MT:%NUMBER_OF_PROCESSORS% > nul +robocopy %conda_env%\ucrt*.* %copy_dir%\bin\ /XF *.pdb /MT:%NUMBER_OF_PROCESSORS% > nul +REM Copy meaningful executables +robocopy %conda_env%\Library\bin %copy_dir%\bin\ ccx.exe /MT:%NUMBER_OF_PROCESSORS% > nul +robocopy %conda_env%\Library\bin %copy_dir%\bin\ gmsh.exe /MT:%NUMBER_OF_PROCESSORS% > nul +robocopy %conda_env%\Library\bin %copy_dir%\bin\ dot.exe /MT:%NUMBER_OF_PROCESSORS% > nul +robocopy %conda_env%\Library\bin %copy_dir%\bin\ unflatten.exe /MT:%NUMBER_OF_PROCESSORS% > nul +robocopy %conda_env%\Library\mingw-w64\bin * %copy_dir%\bin\ /MT:%NUMBER_OF_PROCESSORS% > nul +REM Copy Conda's QT5/plugins to FreeCAD/bin +robocopy %conda_env%\Library\plugins %copy_dir%\bin\ /S /MT:%NUMBER_OF_PROCESSORS% > nul +robocopy %conda_env%\Library\resources %copy_dir%\resources /MT:%NUMBER_OF_PROCESSORS% > nul +robocopy %conda_env%\Library\translations %copy_dir%\translations /MT:%NUMBER_OF_PROCESSORS% > nul +REM get all the dependency .dlls +robocopy %conda_env%\Library\bin *.dll %copy_dir%\bin /XF *.pdb /XF api*.* /MT:%NUMBER_OF_PROCESSORS% > nul +REM Copy FreeCAD build +robocopy %conda_env%\Library\bin FreeCAD* %copy_dir%\bin /XF *.pdb /MT:%NUMBER_OF_PROCESSORS% > nul +robocopy %conda_env%\Library\data %copy_dir%\data /XF *.txt /S /MT:%NUMBER_OF_PROCESSORS% > nul +robocopy %conda_env%\Library\Ext %copy_dir%\Ext /S /XD __pycache__ /MT:%NUMBER_OF_PROCESSORS% > nul +robocopy %conda_env%\Library\lib %copy_dir%\lib /XF *.lib /XF *.prl /XF *.sh /MT:%NUMBER_OF_PROCESSORS% > nul +robocopy %conda_env%\Library\Mod %copy_dir%\Mod /S /XD __pycache__ /MT:%NUMBER_OF_PROCESSORS% > nul +robocopy %conda_env%\Library\doc %copy_dir%\doc ThirdPartyLibraries.html LICENSE.html /MT:%NUMBER_OF_PROCESSORS% > nul +REM Apply Patches +rename %copy_dir%\bin\Lib\ssl.py ssl-orig.py +copy ssl-patch.py %copy_dir%\bin\Lib\ssl.py + +cd %copy_dir%\.. +ren %copy_dir% %freecad_version_name% +dir + +REM if errorlevel1 exit 1 + +"%ProgramFiles%\7-Zip\7z.exe" a -t7z -mx9 -mmt=%NUMBER_OF_PROCESSORS% %freecad_version_name%.7z %freecad_version_name%\ -bb +certutil -hashfile "%freecad_version_name%.7z" SHA256 > "%freecad_version_name%.7z"-SHA256.txt +echo %date%-%time% >>"%freecad_version_name%.7z"-SHA256.txt diff --git a/package/rattler-build/windows/create_bundle.sh b/package/rattler-build/windows/create_bundle.sh new file mode 100644 index 0000000000..b5fe5c3db0 --- /dev/null +++ b/package/rattler-build/windows/create_bundle.sh @@ -0,0 +1,80 @@ +#!/bin/bash + +set -e +set -x + +conda_env="fc_env" + +mkdir -p ${conda_env} + +cp -a ../.pixi/envs/default/* ${conda_env} + +export PATH="${PWD}/${conda_env}/bin:${PATH}" +export CONDA_PREFIX="${PWD}/${conda_env}" + +# remove arm binaries that fail to extract unless using latest 7zip +rm $(find ${conda_env} -name \*arm\*.exe) + +# delete unnecessary stuff +rm -rf ${conda_env}/include +find ${conda_env} -name \*.a -delete + +copy_dir="FreeCAD_Conda_Build" +mkdir -p ${copy_dir}/bin + +# Copy Conda's Python and (U)CRT to FreeCAD/bin +cp -a ${conda_env}/DLLs ${copy_dir}/bin/DLLs +cp -a ${conda_env}/Lib ${copy_dir}/bin/Lib +cp -a ${conda_env}/Scripts ${copy_dir}/bin/Scripts +cp -a ${conda_env}/python*.* ${copy_dir}/bin +cp -a ${conda_env}/msvc*.* ${copy_dir}/bin +cp -a ${conda_env}/ucrt*.* ${copy_dir}/bin +# Copy meaningful executables +cp -a ${conda_env}/Library/bin/ccx.exe ${copy_dir}/bin +cp -a ${conda_env}/Library/bin/gmsh.exe ${copy_dir}/bin +cp -a ${conda_env}/Library/bin/dot.exe ${copy_dir}/bin +cp -a ${conda_env}/Library/bin/unflatten.exe ${copy_dir}/bin +cp -a ${conda_env}/Library/mingw-w64/bin/* ${copy_dir}/bin +# copy resources -- perhaps needs reduction +cp -a ${conda_env}/Library/share ${copy_dir}/share +# get all the dependency .dlls +cp -a ${conda_env}/Library/bin/*.dll ${copy_dir}/bin +# Copy FreeCAD build +cp -a ${conda_env}/Library/bin/freecad* ${copy_dir}/bin +cp -a ${conda_env}/Library/bin/FreeCAD* ${copy_dir}/bin +cp -a ${conda_env}/Library/data ${copy_dir}/data +cp -a ${conda_env}/Library/Ext ${copy_dir}/Ext +cp -a ${conda_env}/Library/lib ${copy_dir}/lib +cp -a ${conda_env}/Library/Mod ${copy_dir}/Mod +rm -rf ${conda_env}/bin_tmp + +# Apply Patches +mv ${copy_dir}/bin/Lib/ssl.py ssl-orig.py +cp ssl-patch.py ${copy_dir}/bin/Lib/ssl.py + +echo '[Paths]' >> ${copy_dir}/bin/qt6.conf +echo 'Prefix = ../lib/qt6' >> ${copy_dir}/bin/qt6.conf + +build_tag=$(git describe --tags) +python_version=$(python -c 'import platform; print("py" + platform.python_version_tuple()[0] + platform.python_version_tuple()[1])') +version_name="FreeCAD_${build_tag}-Windows-$(uname -m)-${python_version}" +application_menu_name="FreeCAD_${build_tag}" + +echo -e "################" +echo -e "version_name: ${version_name}" +echo -e "################" + +pixi list -e default > ${copy_dir}/packages.txt +sed -i '1s/.*/\nLIST OF PACKAGES:/' ${copy_dir}/packages.txt + +mv ${copy_dir} ${version_name} + +"${PROGRAMFILES}/7-Zip/7z.exe" a -t7z -mx9 -mmt=${NUMBER_OF_PROCESSORS} ${version_name}.7z ${version_name} -bb + +# create hash +sha256sum ${version_name}.7z > ${version_name}.7z-SHA256.txt + +if [ "${UPLOAD_RELEASE}" == "true" ]; then + gh release create ${BUILD_TAG} --title "Weekly Build ${BUILD_TAG}" --notes "Weekly Build ${BUILD_TAG}" --prerelease || true + gh release upload --clobber ${BUILD_TAG} "${version_name}.7z" "${version_name}.7z-SHA256.txt" +fi diff --git a/package/rattler-build/windows/ssl-patch.py b/package/rattler-build/windows/ssl-patch.py new file mode 100644 index 0000000000..538ebdea7f --- /dev/null +++ b/package/rattler-build/windows/ssl-patch.py @@ -0,0 +1,1497 @@ +# Wrapper module for _ssl, providing some additional facilities +# implemented in Python. Written by Bill Janssen. + +"""This module provides some more Pythonic support for SSL. + +Object types: + + SSLSocket -- subtype of socket.socket which does SSL over the socket + +Exceptions: + + SSLError -- exception raised for I/O errors + +Functions: + + cert_time_to_seconds -- convert time string used for certificate + notBefore and notAfter functions to integer + seconds past the Epoch (the time values + returned from time.time()) + + fetch_server_certificate (HOST, PORT) -- fetch the certificate provided + by the server running on HOST at port PORT. No + validation of the certificate is performed. + +Integer constants: + +SSL_ERROR_ZERO_RETURN +SSL_ERROR_WANT_READ +SSL_ERROR_WANT_WRITE +SSL_ERROR_WANT_X509_LOOKUP +SSL_ERROR_SYSCALL +SSL_ERROR_SSL +SSL_ERROR_WANT_CONNECT + +SSL_ERROR_EOF +SSL_ERROR_INVALID_ERROR_CODE + +The following group define certificate requirements that one side is +allowing/requiring from the other side: + +CERT_NONE - no certificates from the other side are required (or will + be looked at if provided) +CERT_OPTIONAL - certificates are not required, but if provided will be + validated, and if validation fails, the connection will + also fail +CERT_REQUIRED - certificates are required, and will be validated, and + if validation fails, the connection will also fail + +The following constants identify various SSL protocol variants: + +PROTOCOL_SSLv2 +PROTOCOL_SSLv3 +PROTOCOL_SSLv23 +PROTOCOL_TLS +PROTOCOL_TLS_CLIENT +PROTOCOL_TLS_SERVER +PROTOCOL_TLSv1 +PROTOCOL_TLSv1_1 +PROTOCOL_TLSv1_2 + +The following constants identify various SSL alert message descriptions as per +http://www.iana.org/assignments/tls-parameters/tls-parameters.xml#tls-parameters-6 + +ALERT_DESCRIPTION_CLOSE_NOTIFY +ALERT_DESCRIPTION_UNEXPECTED_MESSAGE +ALERT_DESCRIPTION_BAD_RECORD_MAC +ALERT_DESCRIPTION_RECORD_OVERFLOW +ALERT_DESCRIPTION_DECOMPRESSION_FAILURE +ALERT_DESCRIPTION_HANDSHAKE_FAILURE +ALERT_DESCRIPTION_BAD_CERTIFICATE +ALERT_DESCRIPTION_UNSUPPORTED_CERTIFICATE +ALERT_DESCRIPTION_CERTIFICATE_REVOKED +ALERT_DESCRIPTION_CERTIFICATE_EXPIRED +ALERT_DESCRIPTION_CERTIFICATE_UNKNOWN +ALERT_DESCRIPTION_ILLEGAL_PARAMETER +ALERT_DESCRIPTION_UNKNOWN_CA +ALERT_DESCRIPTION_ACCESS_DENIED +ALERT_DESCRIPTION_DECODE_ERROR +ALERT_DESCRIPTION_DECRYPT_ERROR +ALERT_DESCRIPTION_PROTOCOL_VERSION +ALERT_DESCRIPTION_INSUFFICIENT_SECURITY +ALERT_DESCRIPTION_INTERNAL_ERROR +ALERT_DESCRIPTION_USER_CANCELLED +ALERT_DESCRIPTION_NO_RENEGOTIATION +ALERT_DESCRIPTION_UNSUPPORTED_EXTENSION +ALERT_DESCRIPTION_CERTIFICATE_UNOBTAINABLE +ALERT_DESCRIPTION_UNRECOGNIZED_NAME +ALERT_DESCRIPTION_BAD_CERTIFICATE_STATUS_RESPONSE +ALERT_DESCRIPTION_BAD_CERTIFICATE_HASH_VALUE +ALERT_DESCRIPTION_UNKNOWN_PSK_IDENTITY +""" +# Workaround see https://forum.freecad.org/viewtopic.php?f=42&t=47095 +CERTS_IGNORE = ["MUP Republike Srbije"] + +import sys +import os +from collections import namedtuple +from enum import Enum as _Enum, IntEnum as _IntEnum, IntFlag as _IntFlag + +import _ssl # if we can't import it, let the error propagate + +from _ssl import OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_INFO, OPENSSL_VERSION +from _ssl import _SSLContext, MemoryBIO, SSLSession +from _ssl import ( + SSLError, SSLZeroReturnError, SSLWantReadError, SSLWantWriteError, + SSLSyscallError, SSLEOFError, SSLCertVerificationError + ) +from _ssl import txt2obj as _txt2obj, nid2obj as _nid2obj +from _ssl import RAND_status, RAND_add, RAND_bytes, RAND_pseudo_bytes +try: + from _ssl import RAND_egd +except ImportError: + # LibreSSL does not provide RAND_egd + pass + + +from _ssl import ( + HAS_SNI, HAS_ECDH, HAS_NPN, HAS_ALPN, HAS_SSLv2, HAS_SSLv3, HAS_TLSv1, + HAS_TLSv1_1, HAS_TLSv1_2, HAS_TLSv1_3 +) +from _ssl import _DEFAULT_CIPHERS, _OPENSSL_API_VERSION + + +_IntEnum._convert_( + '_SSLMethod', __name__, + lambda name: name.startswith('PROTOCOL_') and name != 'PROTOCOL_SSLv23', + source=_ssl) + +_IntFlag._convert_( + 'Options', __name__, + lambda name: name.startswith('OP_'), + source=_ssl) + +_IntEnum._convert_( + 'AlertDescription', __name__, + lambda name: name.startswith('ALERT_DESCRIPTION_'), + source=_ssl) + +_IntEnum._convert_( + 'SSLErrorNumber', __name__, + lambda name: name.startswith('SSL_ERROR_'), + source=_ssl) + +_IntFlag._convert_( + 'VerifyFlags', __name__, + lambda name: name.startswith('VERIFY_'), + source=_ssl) + +_IntEnum._convert_( + 'VerifyMode', __name__, + lambda name: name.startswith('CERT_'), + source=_ssl) + +PROTOCOL_SSLv23 = _SSLMethod.PROTOCOL_SSLv23 = _SSLMethod.PROTOCOL_TLS +_PROTOCOL_NAMES = {value: name for name, value in _SSLMethod.__members__.items()} + +_SSLv2_IF_EXISTS = getattr(_SSLMethod, 'PROTOCOL_SSLv2', None) + + +class TLSVersion(_IntEnum): + MINIMUM_SUPPORTED = _ssl.PROTO_MINIMUM_SUPPORTED + SSLv3 = _ssl.PROTO_SSLv3 + TLSv1 = _ssl.PROTO_TLSv1 + TLSv1_1 = _ssl.PROTO_TLSv1_1 + TLSv1_2 = _ssl.PROTO_TLSv1_2 + TLSv1_3 = _ssl.PROTO_TLSv1_3 + MAXIMUM_SUPPORTED = _ssl.PROTO_MAXIMUM_SUPPORTED + + +class _TLSContentType(_IntEnum): + """Content types (record layer) + + See RFC 8446, section B.1 + """ + CHANGE_CIPHER_SPEC = 20 + ALERT = 21 + HANDSHAKE = 22 + APPLICATION_DATA = 23 + # pseudo content types + HEADER = 0x100 + INNER_CONTENT_TYPE = 0x101 + + +class _TLSAlertType(_IntEnum): + """Alert types for TLSContentType.ALERT messages + + See RFC 8466, section B.2 + """ + CLOSE_NOTIFY = 0 + UNEXPECTED_MESSAGE = 10 + BAD_RECORD_MAC = 20 + DECRYPTION_FAILED = 21 + RECORD_OVERFLOW = 22 + DECOMPRESSION_FAILURE = 30 + HANDSHAKE_FAILURE = 40 + NO_CERTIFICATE = 41 + BAD_CERTIFICATE = 42 + UNSUPPORTED_CERTIFICATE = 43 + CERTIFICATE_REVOKED = 44 + CERTIFICATE_EXPIRED = 45 + CERTIFICATE_UNKNOWN = 46 + ILLEGAL_PARAMETER = 47 + UNKNOWN_CA = 48 + ACCESS_DENIED = 49 + DECODE_ERROR = 50 + DECRYPT_ERROR = 51 + EXPORT_RESTRICTION = 60 + PROTOCOL_VERSION = 70 + INSUFFICIENT_SECURITY = 71 + INTERNAL_ERROR = 80 + INAPPROPRIATE_FALLBACK = 86 + USER_CANCELED = 90 + NO_RENEGOTIATION = 100 + MISSING_EXTENSION = 109 + UNSUPPORTED_EXTENSION = 110 + CERTIFICATE_UNOBTAINABLE = 111 + UNRECOGNIZED_NAME = 112 + BAD_CERTIFICATE_STATUS_RESPONSE = 113 + BAD_CERTIFICATE_HASH_VALUE = 114 + UNKNOWN_PSK_IDENTITY = 115 + CERTIFICATE_REQUIRED = 116 + NO_APPLICATION_PROTOCOL = 120 + + +class _TLSMessageType(_IntEnum): + """Message types (handshake protocol) + + See RFC 8446, section B.3 + """ + HELLO_REQUEST = 0 + CLIENT_HELLO = 1 + SERVER_HELLO = 2 + HELLO_VERIFY_REQUEST = 3 + NEWSESSION_TICKET = 4 + END_OF_EARLY_DATA = 5 + HELLO_RETRY_REQUEST = 6 + ENCRYPTED_EXTENSIONS = 8 + CERTIFICATE = 11 + SERVER_KEY_EXCHANGE = 12 + CERTIFICATE_REQUEST = 13 + SERVER_DONE = 14 + CERTIFICATE_VERIFY = 15 + CLIENT_KEY_EXCHANGE = 16 + FINISHED = 20 + CERTIFICATE_URL = 21 + CERTIFICATE_STATUS = 22 + SUPPLEMENTAL_DATA = 23 + KEY_UPDATE = 24 + NEXT_PROTO = 67 + MESSAGE_HASH = 254 + CHANGE_CIPHER_SPEC = 0x0101 + + +if sys.platform == "win32": + from _ssl import enum_certificates, enum_crls + +from socket import socket, AF_INET, SOCK_STREAM, create_connection +from socket import SOL_SOCKET, SO_TYPE +import socket as _socket +import base64 # for DER-to-PEM translation +import errno +import warnings + + +socket_error = OSError # keep that public name in module namespace + +CHANNEL_BINDING_TYPES = ['tls-unique'] + +HAS_NEVER_CHECK_COMMON_NAME = hasattr(_ssl, 'HOSTFLAG_NEVER_CHECK_SUBJECT') + + +_RESTRICTED_SERVER_CIPHERS = _DEFAULT_CIPHERS + +CertificateError = SSLCertVerificationError + + +def _dnsname_match(dn, hostname): + """Matching according to RFC 6125, section 6.4.3 + + - Hostnames are compared lower case. + - For IDNA, both dn and hostname must be encoded as IDN A-label (ACE). + - Partial wildcards like 'www*.example.org', multiple wildcards, sole + wildcard or wildcards in labels other then the left-most label are not + supported and a CertificateError is raised. + - A wildcard must match at least one character. + """ + if not dn: + return False + + wildcards = dn.count('*') + # speed up common case w/o wildcards + if not wildcards: + return dn.lower() == hostname.lower() + + if wildcards > 1: + raise CertificateError( + "too many wildcards in certificate DNS name: {!r}.".format(dn)) + + dn_leftmost, sep, dn_remainder = dn.partition('.') + + if '*' in dn_remainder: + # Only match wildcard in leftmost segment. + raise CertificateError( + "wildcard can only be present in the leftmost label: " + "{!r}.".format(dn)) + + if not sep: + # no right side + raise CertificateError( + "sole wildcard without additional labels are not support: " + "{!r}.".format(dn)) + + if dn_leftmost != '*': + # no partial wildcard matching + raise CertificateError( + "partial wildcards in leftmost label are not supported: " + "{!r}.".format(dn)) + + hostname_leftmost, sep, hostname_remainder = hostname.partition('.') + if not hostname_leftmost or not sep: + # wildcard must match at least one char + return False + return dn_remainder.lower() == hostname_remainder.lower() + + +def _inet_paton(ipname): + """Try to convert an IP address to packed binary form + + Supports IPv4 addresses on all platforms and IPv6 on platforms with IPv6 + support. + """ + # inet_aton() also accepts strings like '1', '127.1', some also trailing + # data like '127.0.0.1 whatever'. + try: + addr = _socket.inet_aton(ipname) + except OSError: + # not an IPv4 address + pass + else: + if _socket.inet_ntoa(addr) == ipname: + # only accept injective ipnames + return addr + else: + # refuse for short IPv4 notation and additional trailing data + raise ValueError( + "{!r} is not a quad-dotted IPv4 address.".format(ipname) + ) + + try: + return _socket.inet_pton(_socket.AF_INET6, ipname) + except OSError: + raise ValueError("{!r} is neither an IPv4 nor an IP6 " + "address.".format(ipname)) + except AttributeError: + # AF_INET6 not available + pass + + raise ValueError("{!r} is not an IPv4 address.".format(ipname)) + + +def _ipaddress_match(cert_ipaddress, host_ip): + """Exact matching of IP addresses. + + RFC 6125 explicitly doesn't define an algorithm for this + (section 1.7.2 - "Out of Scope"). + """ + # OpenSSL may add a trailing newline to a subjectAltName's IP address, + # commonly woth IPv6 addresses. Strip off trailing \n. + ip = _inet_paton(cert_ipaddress.rstrip()) + return ip == host_ip + + +def match_hostname(cert, hostname): + """Verify that *cert* (in decoded format as returned by + SSLSocket.getpeercert()) matches the *hostname*. RFC 2818 and RFC 6125 + rules are followed. + + The function matches IP addresses rather than dNSNames if hostname is a + valid ipaddress string. IPv4 addresses are supported on all platforms. + IPv6 addresses are supported on platforms with IPv6 support (AF_INET6 + and inet_pton). + + CertificateError is raised on failure. On success, the function + returns nothing. + """ + if not cert: + raise ValueError("empty or no certificate, match_hostname needs a " + "SSL socket or SSL context with either " + "CERT_OPTIONAL or CERT_REQUIRED") + try: + host_ip = _inet_paton(hostname) + except ValueError: + # Not an IP address (common case) + host_ip = None + dnsnames = [] + san = cert.get('subjectAltName', ()) + for key, value in san: + if key == 'DNS': + if host_ip is None and _dnsname_match(value, hostname): + return + dnsnames.append(value) + elif key == 'IP Address': + if host_ip is not None and _ipaddress_match(value, host_ip): + return + dnsnames.append(value) + if not dnsnames: + # The subject is only checked when there is no dNSName entry + # in subjectAltName + for sub in cert.get('subject', ()): + for key, value in sub: + # XXX according to RFC 2818, the most specific Common Name + # must be used. + if key == 'commonName': + if _dnsname_match(value, hostname): + return + dnsnames.append(value) + if len(dnsnames) > 1: + raise CertificateError("hostname %r " + "doesn't match either of %s" + % (hostname, ', '.join(map(repr, dnsnames)))) + elif len(dnsnames) == 1: + raise CertificateError("hostname %r " + "doesn't match %r" + % (hostname, dnsnames[0])) + else: + raise CertificateError("no appropriate commonName or " + "subjectAltName fields were found") + + +DefaultVerifyPaths = namedtuple("DefaultVerifyPaths", + "cafile capath openssl_cafile_env openssl_cafile openssl_capath_env " + "openssl_capath") + +def get_default_verify_paths(): + """Return paths to default cafile and capath. + """ + parts = _ssl.get_default_verify_paths() + + # environment vars shadow paths + cafile = os.environ.get(parts[0], parts[1]) + capath = os.environ.get(parts[2], parts[3]) + + return DefaultVerifyPaths(cafile if os.path.isfile(cafile) else None, + capath if os.path.isdir(capath) else None, + *parts) + + +class _ASN1Object(namedtuple("_ASN1Object", "nid shortname longname oid")): + """ASN.1 object identifier lookup + """ + __slots__ = () + + def __new__(cls, oid): + return super().__new__(cls, *_txt2obj(oid, name=False)) + + @classmethod + def fromnid(cls, nid): + """Create _ASN1Object from OpenSSL numeric ID + """ + return super().__new__(cls, *_nid2obj(nid)) + + @classmethod + def fromname(cls, name): + """Create _ASN1Object from short name, long name or OID + """ + return super().__new__(cls, *_txt2obj(name, name=True)) + + +class Purpose(_ASN1Object, _Enum): + """SSLContext purpose flags with X509v3 Extended Key Usage objects + """ + SERVER_AUTH = '1.3.6.1.5.5.7.3.1' + CLIENT_AUTH = '1.3.6.1.5.5.7.3.2' + + +class SSLContext(_SSLContext): + """An SSLContext holds various SSL-related configuration options and + data, such as certificates and possibly a private key.""" + _windows_cert_stores = ("CA", "ROOT") + + sslsocket_class = None # SSLSocket is assigned later. + sslobject_class = None # SSLObject is assigned later. + + def __new__(cls, protocol=PROTOCOL_TLS, *args, **kwargs): + self = _SSLContext.__new__(cls, protocol) + return self + + def _encode_hostname(self, hostname): + if hostname is None: + return None + elif isinstance(hostname, str): + return hostname.encode('idna').decode('ascii') + else: + return hostname.decode('ascii') + + def wrap_socket(self, sock, server_side=False, + do_handshake_on_connect=True, + suppress_ragged_eofs=True, + server_hostname=None, session=None): + # SSLSocket class handles server_hostname encoding before it calls + # ctx._wrap_socket() + return self.sslsocket_class._create( + sock=sock, + server_side=server_side, + do_handshake_on_connect=do_handshake_on_connect, + suppress_ragged_eofs=suppress_ragged_eofs, + server_hostname=server_hostname, + context=self, + session=session + ) + + def wrap_bio(self, incoming, outgoing, server_side=False, + server_hostname=None, session=None): + # Need to encode server_hostname here because _wrap_bio() can only + # handle ASCII str. + return self.sslobject_class._create( + incoming, outgoing, server_side=server_side, + server_hostname=self._encode_hostname(server_hostname), + session=session, context=self, + ) + + def set_npn_protocols(self, npn_protocols): + protos = bytearray() + for protocol in npn_protocols: + b = bytes(protocol, 'ascii') + if len(b) == 0 or len(b) > 255: + raise SSLError('NPN protocols must be 1 to 255 in length') + protos.append(len(b)) + protos.extend(b) + + self._set_npn_protocols(protos) + + def set_servername_callback(self, server_name_callback): + if server_name_callback is None: + self.sni_callback = None + else: + if not callable(server_name_callback): + raise TypeError("not a callable object") + + def shim_cb(sslobj, servername, sslctx): + servername = self._encode_hostname(servername) + return server_name_callback(sslobj, servername, sslctx) + + self.sni_callback = shim_cb + + def set_alpn_protocols(self, alpn_protocols): + protos = bytearray() + for protocol in alpn_protocols: + b = bytes(protocol, 'ascii') + if len(b) == 0 or len(b) > 255: + raise SSLError('ALPN protocols must be 1 to 255 in length') + protos.append(len(b)) + protos.extend(b) + + self._set_alpn_protocols(protos) + + def _load_windows_store_certs(self, storename, purpose): + certs = bytearray() + try: + for cert, encoding, trust in enum_certificates(storename): + # CA certs are never PKCS#7 encoded + if encoding == "x509_asn": + if trust is True or purpose.oid in trust: + ignore_cert = False + for CERT_IGNORE in CERTS_IGNORE: + if CERT_IGNORE in str(cert): + ignore_cert = True + # only load certs that are not in the CERTS_IGNORE list + if not ignore_cert: + certs.extend(cert) + except PermissionError: + warnings.warn("unable to enumerate Windows certificate store") + if certs: + self.load_verify_locations(cadata=certs) + return certs + + def load_default_certs(self, purpose=Purpose.SERVER_AUTH): + if not isinstance(purpose, _ASN1Object): + raise TypeError(purpose) + if sys.platform == "win32": + for storename in self._windows_cert_stores: + self._load_windows_store_certs(storename, purpose) + self.set_default_verify_paths() + + if hasattr(_SSLContext, 'minimum_version'): + @property + def minimum_version(self): + return TLSVersion(super().minimum_version) + + @minimum_version.setter + def minimum_version(self, value): + if value == TLSVersion.SSLv3: + self.options &= ~Options.OP_NO_SSLv3 + super(SSLContext, SSLContext).minimum_version.__set__(self, value) + + @property + def maximum_version(self): + return TLSVersion(super().maximum_version) + + @maximum_version.setter + def maximum_version(self, value): + super(SSLContext, SSLContext).maximum_version.__set__(self, value) + + @property + def options(self): + return Options(super().options) + + @options.setter + def options(self, value): + super(SSLContext, SSLContext).options.__set__(self, value) + + if hasattr(_ssl, 'HOSTFLAG_NEVER_CHECK_SUBJECT'): + @property + def hostname_checks_common_name(self): + ncs = self._host_flags & _ssl.HOSTFLAG_NEVER_CHECK_SUBJECT + return ncs != _ssl.HOSTFLAG_NEVER_CHECK_SUBJECT + + @hostname_checks_common_name.setter + def hostname_checks_common_name(self, value): + if value: + self._host_flags &= ~_ssl.HOSTFLAG_NEVER_CHECK_SUBJECT + else: + self._host_flags |= _ssl.HOSTFLAG_NEVER_CHECK_SUBJECT + else: + @property + def hostname_checks_common_name(self): + return True + + @property + def _msg_callback(self): + """TLS message callback + + The message callback provides a debugging hook to analyze TLS + connections. The callback is called for any TLS protocol message + (header, handshake, alert, and more), but not for application data. + Due to technical limitations, the callback can't be used to filter + traffic or to abort a connection. Any exception raised in the + callback is delayed until the handshake, read, or write operation + has been performed. + + def msg_cb(conn, direction, version, content_type, msg_type, data): + pass + + conn + :class:`SSLSocket` or :class:`SSLObject` instance + direction + ``read`` or ``write`` + version + :class:`TLSVersion` enum member or int for unknown version. For a + frame header, it's the header version. + content_type + :class:`_TLSContentType` enum member or int for unsupported + content type. + msg_type + Either a :class:`_TLSContentType` enum number for a header + message, a :class:`_TLSAlertType` enum member for an alert + message, a :class:`_TLSMessageType` enum member for other + messages, or int for unsupported message types. + data + Raw, decrypted message content as bytes + """ + inner = super()._msg_callback + if inner is not None: + return inner.user_function + else: + return None + + @_msg_callback.setter + def _msg_callback(self, callback): + if callback is None: + super(SSLContext, SSLContext)._msg_callback.__set__(self, None) + return + + if not hasattr(callback, '__call__'): + raise TypeError(f"{callback} is not callable.") + + def inner(conn, direction, version, content_type, msg_type, data): + try: + version = TLSVersion(version) + except ValueError: + pass + + try: + content_type = _TLSContentType(content_type) + except ValueError: + pass + + if content_type == _TLSContentType.HEADER: + msg_enum = _TLSContentType + elif content_type == _TLSContentType.ALERT: + msg_enum = _TLSAlertType + else: + msg_enum = _TLSMessageType + try: + msg_type = msg_enum(msg_type) + except ValueError: + pass + + return callback(conn, direction, version, + content_type, msg_type, data) + + inner.user_function = callback + + super(SSLContext, SSLContext)._msg_callback.__set__(self, inner) + + @property + def protocol(self): + return _SSLMethod(super().protocol) + + @property + def verify_flags(self): + return VerifyFlags(super().verify_flags) + + @verify_flags.setter + def verify_flags(self, value): + super(SSLContext, SSLContext).verify_flags.__set__(self, value) + + @property + def verify_mode(self): + value = super().verify_mode + try: + return VerifyMode(value) + except ValueError: + return value + + @verify_mode.setter + def verify_mode(self, value): + super(SSLContext, SSLContext).verify_mode.__set__(self, value) + + +def create_default_context(purpose=Purpose.SERVER_AUTH, *, cafile=None, + capath=None, cadata=None): + """Create a SSLContext object with default settings. + + NOTE: The protocol and settings may change anytime without prior + deprecation. The values represent a fair balance between maximum + compatibility and security. + """ + if not isinstance(purpose, _ASN1Object): + raise TypeError(purpose) + + # SSLContext sets OP_NO_SSLv2, OP_NO_SSLv3, OP_NO_COMPRESSION, + # OP_CIPHER_SERVER_PREFERENCE, OP_SINGLE_DH_USE and OP_SINGLE_ECDH_USE + # by default. + context = SSLContext(PROTOCOL_TLS) + + if purpose == Purpose.SERVER_AUTH: + # verify certs and host name in client mode + context.verify_mode = CERT_REQUIRED + context.check_hostname = True + + if cafile or capath or cadata: + context.load_verify_locations(cafile, capath, cadata) + elif context.verify_mode != CERT_NONE: + # no explicit cafile, capath or cadata but the verify mode is + # CERT_OPTIONAL or CERT_REQUIRED. Let's try to load default system + # root CA certificates for the given purpose. This may fail silently. + context.load_default_certs(purpose) + # OpenSSL 1.1.1 keylog file + if hasattr(context, 'keylog_filename'): + keylogfile = os.environ.get('SSLKEYLOGFILE') + if keylogfile and not sys.flags.ignore_environment: + context.keylog_filename = keylogfile + return context + +def _create_unverified_context(protocol=PROTOCOL_TLS, *, cert_reqs=CERT_NONE, + check_hostname=False, purpose=Purpose.SERVER_AUTH, + certfile=None, keyfile=None, + cafile=None, capath=None, cadata=None): + """Create a SSLContext object for Python stdlib modules + + All Python stdlib modules shall use this function to create SSLContext + objects in order to keep common settings in one place. The configuration + is less restrict than create_default_context()'s to increase backward + compatibility. + """ + if not isinstance(purpose, _ASN1Object): + raise TypeError(purpose) + + # SSLContext sets OP_NO_SSLv2, OP_NO_SSLv3, OP_NO_COMPRESSION, + # OP_CIPHER_SERVER_PREFERENCE, OP_SINGLE_DH_USE and OP_SINGLE_ECDH_USE + # by default. + context = SSLContext(protocol) + + if not check_hostname: + context.check_hostname = False + if cert_reqs is not None: + context.verify_mode = cert_reqs + if check_hostname: + context.check_hostname = True + + if keyfile and not certfile: + raise ValueError("certfile must be specified") + if certfile or keyfile: + context.load_cert_chain(certfile, keyfile) + + # load CA root certs + if cafile or capath or cadata: + context.load_verify_locations(cafile, capath, cadata) + elif context.verify_mode != CERT_NONE: + # no explicit cafile, capath or cadata but the verify mode is + # CERT_OPTIONAL or CERT_REQUIRED. Let's try to load default system + # root CA certificates for the given purpose. This may fail silently. + context.load_default_certs(purpose) + # OpenSSL 1.1.1 keylog file + if hasattr(context, 'keylog_filename'): + keylogfile = os.environ.get('SSLKEYLOGFILE') + if keylogfile and not sys.flags.ignore_environment: + context.keylog_filename = keylogfile + return context + +# Used by http.client if no context is explicitly passed. +_create_default_https_context = create_default_context + + +# Backwards compatibility alias, even though it's not a public name. +_create_stdlib_context = _create_unverified_context + + +class SSLObject: + """This class implements an interface on top of a low-level SSL object as + implemented by OpenSSL. This object captures the state of an SSL connection + but does not provide any network IO itself. IO needs to be performed + through separate "BIO" objects which are OpenSSL's IO abstraction layer. + + This class does not have a public constructor. Instances are returned by + ``SSLContext.wrap_bio``. This class is typically used by framework authors + that want to implement asynchronous IO for SSL through memory buffers. + + When compared to ``SSLSocket``, this object lacks the following features: + + * Any form of network IO, including methods such as ``recv`` and ``send``. + * The ``do_handshake_on_connect`` and ``suppress_ragged_eofs`` machinery. + """ + def __init__(self, *args, **kwargs): + raise TypeError( + f"{self.__class__.__name__} does not have a public " + f"constructor. Instances are returned by SSLContext.wrap_bio()." + ) + + @classmethod + def _create(cls, incoming, outgoing, server_side=False, + server_hostname=None, session=None, context=None): + self = cls.__new__(cls) + sslobj = context._wrap_bio( + incoming, outgoing, server_side=server_side, + server_hostname=server_hostname, + owner=self, session=session + ) + self._sslobj = sslobj + return self + + @property + def context(self): + """The SSLContext that is currently in use.""" + return self._sslobj.context + + @context.setter + def context(self, ctx): + self._sslobj.context = ctx + + @property + def session(self): + """The SSLSession for client socket.""" + return self._sslobj.session + + @session.setter + def session(self, session): + self._sslobj.session = session + + @property + def session_reused(self): + """Was the client session reused during handshake""" + return self._sslobj.session_reused + + @property + def server_side(self): + """Whether this is a server-side socket.""" + return self._sslobj.server_side + + @property + def server_hostname(self): + """The currently set server hostname (for SNI), or ``None`` if no + server hostname is set.""" + return self._sslobj.server_hostname + + def read(self, len=1024, buffer=None): + """Read up to 'len' bytes from the SSL object and return them. + + If 'buffer' is provided, read into this buffer and return the number of + bytes read. + """ + if buffer is not None: + v = self._sslobj.read(len, buffer) + else: + v = self._sslobj.read(len) + return v + + def write(self, data): + """Write 'data' to the SSL object and return the number of bytes + written. + + The 'data' argument must support the buffer interface. + """ + return self._sslobj.write(data) + + def getpeercert(self, binary_form=False): + """Returns a formatted version of the data in the certificate provided + by the other end of the SSL channel. + + Return None if no certificate was provided, {} if a certificate was + provided, but not validated. + """ + return self._sslobj.getpeercert(binary_form) + + def selected_npn_protocol(self): + """Return the currently selected NPN protocol as a string, or ``None`` + if a next protocol was not negotiated or if NPN is not supported by one + of the peers.""" + if _ssl.HAS_NPN: + return self._sslobj.selected_npn_protocol() + + def selected_alpn_protocol(self): + """Return the currently selected ALPN protocol as a string, or ``None`` + if a next protocol was not negotiated or if ALPN is not supported by one + of the peers.""" + if _ssl.HAS_ALPN: + return self._sslobj.selected_alpn_protocol() + + def cipher(self): + """Return the currently selected cipher as a 3-tuple ``(name, + ssl_version, secret_bits)``.""" + return self._sslobj.cipher() + + def shared_ciphers(self): + """Return a list of ciphers shared by the client during the handshake or + None if this is not a valid server connection. + """ + return self._sslobj.shared_ciphers() + + def compression(self): + """Return the current compression algorithm in use, or ``None`` if + compression was not negotiated or not supported by one of the peers.""" + return self._sslobj.compression() + + def pending(self): + """Return the number of bytes that can be read immediately.""" + return self._sslobj.pending() + + def do_handshake(self): + """Start the SSL/TLS handshake.""" + self._sslobj.do_handshake() + + def unwrap(self): + """Start the SSL shutdown handshake.""" + return self._sslobj.shutdown() + + def get_channel_binding(self, cb_type="tls-unique"): + """Get channel binding data for current connection. Raise ValueError + if the requested `cb_type` is not supported. Return bytes of the data + or None if the data is not available (e.g. before the handshake).""" + return self._sslobj.get_channel_binding(cb_type) + + def version(self): + """Return a string identifying the protocol version used by the + current SSL channel. """ + return self._sslobj.version() + + def verify_client_post_handshake(self): + return self._sslobj.verify_client_post_handshake() + + +def _sslcopydoc(func): + """Copy docstring from SSLObject to SSLSocket""" + func.__doc__ = getattr(SSLObject, func.__name__).__doc__ + return func + + +class SSLSocket(socket): + """This class implements a subtype of socket.socket that wraps + the underlying OS socket in an SSL context when necessary, and + provides read and write methods over that channel. """ + + def __init__(self, *args, **kwargs): + raise TypeError( + f"{self.__class__.__name__} does not have a public " + f"constructor. Instances are returned by " + f"SSLContext.wrap_socket()." + ) + + @classmethod + def _create(cls, sock, server_side=False, do_handshake_on_connect=True, + suppress_ragged_eofs=True, server_hostname=None, + context=None, session=None): + if sock.getsockopt(SOL_SOCKET, SO_TYPE) != SOCK_STREAM: + raise NotImplementedError("only stream sockets are supported") + if server_side: + if server_hostname: + raise ValueError("server_hostname can only be specified " + "in client mode") + if session is not None: + raise ValueError("session can only be specified in " + "client mode") + if context.check_hostname and not server_hostname: + raise ValueError("check_hostname requires server_hostname") + + kwargs = dict( + family=sock.family, type=sock.type, proto=sock.proto, + fileno=sock.fileno() + ) + self = cls.__new__(cls, **kwargs) + super(SSLSocket, self).__init__(**kwargs) + self.settimeout(sock.gettimeout()) + sock.detach() + + self._context = context + self._session = session + self._closed = False + self._sslobj = None + self.server_side = server_side + self.server_hostname = context._encode_hostname(server_hostname) + self.do_handshake_on_connect = do_handshake_on_connect + self.suppress_ragged_eofs = suppress_ragged_eofs + + # See if we are connected + try: + self.getpeername() + except OSError as e: + if e.errno != errno.ENOTCONN: + raise + connected = False + else: + connected = True + + self._connected = connected + if connected: + # create the SSL object + try: + self._sslobj = self._context._wrap_socket( + self, server_side, self.server_hostname, + owner=self, session=self._session, + ) + if do_handshake_on_connect: + timeout = self.gettimeout() + if timeout == 0.0: + # non-blocking + raise ValueError("do_handshake_on_connect should not be specified for non-blocking sockets") + self.do_handshake() + except (OSError, ValueError): + self.close() + raise + return self + + @property + @_sslcopydoc + def context(self): + return self._context + + @context.setter + def context(self, ctx): + self._context = ctx + self._sslobj.context = ctx + + @property + @_sslcopydoc + def session(self): + if self._sslobj is not None: + return self._sslobj.session + + @session.setter + def session(self, session): + self._session = session + if self._sslobj is not None: + self._sslobj.session = session + + @property + @_sslcopydoc + def session_reused(self): + if self._sslobj is not None: + return self._sslobj.session_reused + + def dup(self): + raise NotImplementedError("Can't dup() %s instances" % + self.__class__.__name__) + + def _checkClosed(self, msg=None): + # raise an exception here if you wish to check for spurious closes + pass + + def _check_connected(self): + if not self._connected: + # getpeername() will raise ENOTCONN if the socket is really + # not connected; note that we can be connected even without + # _connected being set, e.g. if connect() first returned + # EAGAIN. + self.getpeername() + + def read(self, len=1024, buffer=None): + """Read up to LEN bytes and return them. + Return zero-length string on EOF.""" + + self._checkClosed() + if self._sslobj is None: + raise ValueError("Read on closed or unwrapped SSL socket.") + try: + if buffer is not None: + return self._sslobj.read(len, buffer) + else: + return self._sslobj.read(len) + except SSLError as x: + if x.args[0] == SSL_ERROR_EOF and self.suppress_ragged_eofs: + if buffer is not None: + return 0 + else: + return b'' + else: + raise + + def write(self, data): + """Write DATA to the underlying SSL channel. Returns + number of bytes of DATA actually transmitted.""" + + self._checkClosed() + if self._sslobj is None: + raise ValueError("Write on closed or unwrapped SSL socket.") + return self._sslobj.write(data) + + @_sslcopydoc + def getpeercert(self, binary_form=False): + self._checkClosed() + self._check_connected() + return self._sslobj.getpeercert(binary_form) + + @_sslcopydoc + def selected_npn_protocol(self): + self._checkClosed() + if self._sslobj is None or not _ssl.HAS_NPN: + return None + else: + return self._sslobj.selected_npn_protocol() + + @_sslcopydoc + def selected_alpn_protocol(self): + self._checkClosed() + if self._sslobj is None or not _ssl.HAS_ALPN: + return None + else: + return self._sslobj.selected_alpn_protocol() + + @_sslcopydoc + def cipher(self): + self._checkClosed() + if self._sslobj is None: + return None + else: + return self._sslobj.cipher() + + @_sslcopydoc + def shared_ciphers(self): + self._checkClosed() + if self._sslobj is None: + return None + else: + return self._sslobj.shared_ciphers() + + @_sslcopydoc + def compression(self): + self._checkClosed() + if self._sslobj is None: + return None + else: + return self._sslobj.compression() + + def send(self, data, flags=0): + self._checkClosed() + if self._sslobj is not None: + if flags != 0: + raise ValueError( + "non-zero flags not allowed in calls to send() on %s" % + self.__class__) + return self._sslobj.write(data) + else: + return super().send(data, flags) + + def sendto(self, data, flags_or_addr, addr=None): + self._checkClosed() + if self._sslobj is not None: + raise ValueError("sendto not allowed on instances of %s" % + self.__class__) + elif addr is None: + return super().sendto(data, flags_or_addr) + else: + return super().sendto(data, flags_or_addr, addr) + + def sendmsg(self, *args, **kwargs): + # Ensure programs don't send data unencrypted if they try to + # use this method. + raise NotImplementedError("sendmsg not allowed on instances of %s" % + self.__class__) + + def sendall(self, data, flags=0): + self._checkClosed() + if self._sslobj is not None: + if flags != 0: + raise ValueError( + "non-zero flags not allowed in calls to sendall() on %s" % + self.__class__) + count = 0 + with memoryview(data) as view, view.cast("B") as byte_view: + amount = len(byte_view) + while count < amount: + v = self.send(byte_view[count:]) + count += v + else: + return super().sendall(data, flags) + + def sendfile(self, file, offset=0, count=None): + """Send a file, possibly by using os.sendfile() if this is a + clear-text socket. Return the total number of bytes sent. + """ + if self._sslobj is not None: + return self._sendfile_use_send(file, offset, count) + else: + # os.sendfile() works with plain sockets only + return super().sendfile(file, offset, count) + + def recv(self, buflen=1024, flags=0): + self._checkClosed() + if self._sslobj is not None: + if flags != 0: + raise ValueError( + "non-zero flags not allowed in calls to recv() on %s" % + self.__class__) + return self.read(buflen) + else: + return super().recv(buflen, flags) + + def recv_into(self, buffer, nbytes=None, flags=0): + self._checkClosed() + if buffer and (nbytes is None): + nbytes = len(buffer) + elif nbytes is None: + nbytes = 1024 + if self._sslobj is not None: + if flags != 0: + raise ValueError( + "non-zero flags not allowed in calls to recv_into() on %s" % + self.__class__) + return self.read(nbytes, buffer) + else: + return super().recv_into(buffer, nbytes, flags) + + def recvfrom(self, buflen=1024, flags=0): + self._checkClosed() + if self._sslobj is not None: + raise ValueError("recvfrom not allowed on instances of %s" % + self.__class__) + else: + return super().recvfrom(buflen, flags) + + def recvfrom_into(self, buffer, nbytes=None, flags=0): + self._checkClosed() + if self._sslobj is not None: + raise ValueError("recvfrom_into not allowed on instances of %s" % + self.__class__) + else: + return super().recvfrom_into(buffer, nbytes, flags) + + def recvmsg(self, *args, **kwargs): + raise NotImplementedError("recvmsg not allowed on instances of %s" % + self.__class__) + + def recvmsg_into(self, *args, **kwargs): + raise NotImplementedError("recvmsg_into not allowed on instances of " + "%s" % self.__class__) + + @_sslcopydoc + def pending(self): + self._checkClosed() + if self._sslobj is not None: + return self._sslobj.pending() + else: + return 0 + + def shutdown(self, how): + self._checkClosed() + self._sslobj = None + super().shutdown(how) + + @_sslcopydoc + def unwrap(self): + if self._sslobj: + s = self._sslobj.shutdown() + self._sslobj = None + return s + else: + raise ValueError("No SSL wrapper around " + str(self)) + + @_sslcopydoc + def verify_client_post_handshake(self): + if self._sslobj: + return self._sslobj.verify_client_post_handshake() + else: + raise ValueError("No SSL wrapper around " + str(self)) + + def _real_close(self): + self._sslobj = None + super()._real_close() + + @_sslcopydoc + def do_handshake(self, block=False): + self._check_connected() + timeout = self.gettimeout() + try: + if timeout == 0.0 and block: + self.settimeout(None) + self._sslobj.do_handshake() + finally: + self.settimeout(timeout) + + def _real_connect(self, addr, connect_ex): + if self.server_side: + raise ValueError("can't connect in server-side mode") + # Here we assume that the socket is client-side, and not + # connected at the time of the call. We connect it, then wrap it. + if self._connected or self._sslobj is not None: + raise ValueError("attempt to connect already-connected SSLSocket!") + self._sslobj = self.context._wrap_socket( + self, False, self.server_hostname, + owner=self, session=self._session + ) + try: + if connect_ex: + rc = super().connect_ex(addr) + else: + rc = None + super().connect(addr) + if not rc: + self._connected = True + if self.do_handshake_on_connect: + self.do_handshake() + return rc + except (OSError, ValueError): + self._sslobj = None + raise + + def connect(self, addr): + """Connects to remote ADDR, and then wraps the connection in + an SSL channel.""" + self._real_connect(addr, False) + + def connect_ex(self, addr): + """Connects to remote ADDR, and then wraps the connection in + an SSL channel.""" + return self._real_connect(addr, True) + + def accept(self): + """Accepts a new connection from a remote client, and returns + a tuple containing that new connection wrapped with a server-side + SSL channel, and the address of the remote client.""" + + newsock, addr = super().accept() + newsock = self.context.wrap_socket(newsock, + do_handshake_on_connect=self.do_handshake_on_connect, + suppress_ragged_eofs=self.suppress_ragged_eofs, + server_side=True) + return newsock, addr + + @_sslcopydoc + def get_channel_binding(self, cb_type="tls-unique"): + if self._sslobj is not None: + return self._sslobj.get_channel_binding(cb_type) + else: + if cb_type not in CHANNEL_BINDING_TYPES: + raise ValueError( + "{0} channel binding type not implemented".format(cb_type) + ) + return None + + @_sslcopydoc + def version(self): + if self._sslobj is not None: + return self._sslobj.version() + else: + return None + + +# Python does not support forward declaration of types. +SSLContext.sslsocket_class = SSLSocket +SSLContext.sslobject_class = SSLObject + + +def wrap_socket(sock, keyfile=None, certfile=None, + server_side=False, cert_reqs=CERT_NONE, + ssl_version=PROTOCOL_TLS, ca_certs=None, + do_handshake_on_connect=True, + suppress_ragged_eofs=True, + ciphers=None): + + if server_side and not certfile: + raise ValueError("certfile must be specified for server-side " + "operations") + if keyfile and not certfile: + raise ValueError("certfile must be specified") + context = SSLContext(ssl_version) + context.verify_mode = cert_reqs + if ca_certs: + context.load_verify_locations(ca_certs) + if certfile: + context.load_cert_chain(certfile, keyfile) + if ciphers: + context.set_ciphers(ciphers) + return context.wrap_socket( + sock=sock, server_side=server_side, + do_handshake_on_connect=do_handshake_on_connect, + suppress_ragged_eofs=suppress_ragged_eofs + ) + +# some utility functions + +def cert_time_to_seconds(cert_time): + """Return the time in seconds since the Epoch, given the timestring + representing the "notBefore" or "notAfter" date from a certificate + in ``"%b %d %H:%M:%S %Y %Z"`` strptime format (C locale). + + "notBefore" or "notAfter" dates must use UTC (RFC 5280). + + Month is one of: Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + UTC should be specified as GMT (see ASN1_TIME_print()) + """ + from time import strptime + from calendar import timegm + + months = ( + "Jan","Feb","Mar","Apr","May","Jun", + "Jul","Aug","Sep","Oct","Nov","Dec" + ) + time_format = ' %d %H:%M:%S %Y GMT' # NOTE: no month, fixed GMT + try: + month_number = months.index(cert_time[:3].title()) + 1 + except ValueError: + raise ValueError('time data %r does not match ' + 'format "%%b%s"' % (cert_time, time_format)) + else: + # found valid month + tt = strptime(cert_time[3:], time_format) + # return an integer, the previous mktime()-based implementation + # returned a float (fractional seconds are always zero here). + return timegm((tt[0], month_number) + tt[2:6]) + +PEM_HEADER = "-----BEGIN CERTIFICATE-----" +PEM_FOOTER = "-----END CERTIFICATE-----" + +def DER_cert_to_PEM_cert(der_cert_bytes): + """Takes a certificate in binary DER format and returns the + PEM version of it as a string.""" + + f = str(base64.standard_b64encode(der_cert_bytes), 'ASCII', 'strict') + ss = [PEM_HEADER] + ss += [f[i:i+64] for i in range(0, len(f), 64)] + ss.append(PEM_FOOTER + '\n') + return '\n'.join(ss) + +def PEM_cert_to_DER_cert(pem_cert_string): + """Takes a certificate in ASCII PEM format and returns the + DER-encoded version of it as a byte sequence""" + + if not pem_cert_string.startswith(PEM_HEADER): + raise ValueError("Invalid PEM encoding; must start with %s" + % PEM_HEADER) + if not pem_cert_string.strip().endswith(PEM_FOOTER): + raise ValueError("Invalid PEM encoding; must end with %s" + % PEM_FOOTER) + d = pem_cert_string.strip()[len(PEM_HEADER):-len(PEM_FOOTER)] + return base64.decodebytes(d.encode('ASCII', 'strict')) + +def get_server_certificate(addr, ssl_version=PROTOCOL_TLS, ca_certs=None): + """Retrieve the certificate from the server at the specified address, + and return it as a PEM-encoded string. + If 'ca_certs' is specified, validate the server cert against it. + If 'ssl_version' is specified, use it in the connection attempt.""" + + host, port = addr + if ca_certs is not None: + cert_reqs = CERT_REQUIRED + else: + cert_reqs = CERT_NONE + context = _create_stdlib_context(ssl_version, + cert_reqs=cert_reqs, + cafile=ca_certs) + with create_connection(addr) as sock: + with context.wrap_socket(sock) as sslsock: + dercert = sslsock.getpeercert(True) + return DER_cert_to_PEM_cert(dercert) + +def get_protocol_name(protocol_code): + return _PROTOCOL_NAMES.get(protocol_code, '')