diff --git a/.github/ISSUE_TEMPLATE/0_bug.yml b/.github/ISSUE_TEMPLATE/0_bug.yml new file mode 100644 index 00000000..b530bb12 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/0_bug.yml @@ -0,0 +1,41 @@ +# edit this in https://github.com/conda/infrastructure + +name: Bug Report +description: Create a bug report. +labels: + - type::bug +body: + - type: markdown + attributes: + value: | + Because processing new bug reports is time-consuming, we would like to ask you to fill out the following form to the best of your ability and as completely as possible. + + > [!NOTE] + > Bug reports that are incomplete or missing information may be closed as inactionable. + + Since there are already a lot of open issues, please also take a moment to search existing ones to see if your bug has already been reported. If you find something related, please upvote that issue and provide additional details as necessary. + + 💐 Thank you for helping to make `conda/issue-tracker` better. We would be unable to improve `conda/issue-tracker` without our community! + - type: checkboxes + id: checks + attributes: + label: Checklist + description: Please confirm and check all of the following options. + options: + - label: I added a descriptive title + required: true + - label: I searched open reports and couldn't find a duplicate + required: true + - type: textarea + id: what + attributes: + label: What happened? + description: What should have happened instead? Please provide as many details as possible. The more information provided, the more likely we are able to replicate your problem and offer a solution. + validations: + required: true + + - type: textarea + id: context + attributes: + label: Additional Context + description: Include any additional information (or screenshots) that you think would be valuable. diff --git a/.github/ISSUE_TEMPLATE/1_feature.yml b/.github/ISSUE_TEMPLATE/1_feature.yml new file mode 100644 index 00000000..86ebfb8d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/1_feature.yml @@ -0,0 +1,50 @@ +# edit this in https://github.com/conda/infrastructure + +name: Feature Request +description: Create a feature request. +labels: + - type::feature +body: + - type: markdown + attributes: + value: | + Because processing new feature requests is time-consuming, we would like to ask you to fill out the following form to the best of your ability and as completely as possible. + + > [!NOTE] + > Feature requests that are incomplete or missing information may be closed as inactionable. + + Since there are already a lot of open issues, please also take a moment to search existing ones to see if your feature request has already been submitted. If you find something related, please upvote that issue and provide additional details as necessary. + + 💐 Thank you for helping to make `conda/issue-tracker` better. We would be unable to improve `conda/issue-tracker` without our community! + - type: checkboxes + id: checks + attributes: + label: Checklist + description: Please confirm and check all of the following options. + options: + - label: I added a descriptive title + required: true + - label: I searched open requests and couldn't find a duplicate + required: true + - type: textarea + id: idea + attributes: + label: What is the idea? + description: Describe what the feature is and the desired state. + validations: + required: true + - type: textarea + id: why + attributes: + label: Why is this needed? + description: Who would benefit from this feature? Why would this add value to them? What problem does this solve? + - type: textarea + id: what + attributes: + label: What should happen? + description: What should be the user experience with the feature? Describe from a user perspective what they would do and see. + - type: textarea + id: context + attributes: + label: Additional Context + description: Include any additional information that you think would be valuable. diff --git a/.github/ISSUE_TEMPLATE/2_documentation.yml b/.github/ISSUE_TEMPLATE/2_documentation.yml new file mode 100644 index 00000000..56e2fb8e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/2_documentation.yml @@ -0,0 +1,38 @@ +# edit this in https://github.com/conda/infrastructure + +name: Documentation +description: Create a documentation related issue. +labels: + - type::documentation +body: + - type: markdown + attributes: + value: | + > [!NOTE] + > Documentation requests that are incomplete or missing information may be closed as inactionable. + + Since there are already a lot of open issues, please also take a moment to search existing ones to see if your bug has already been reported. If you find something related, please upvote that issue and provide additional details as necessary. + + 💐 Thank you for helping to make conda better. We would be unable to improve conda without our community! + - type: checkboxes + id: checks + attributes: + label: Checklist + description: Please confirm and check all of the following options. + options: + - label: I added a descriptive title + required: true + - label: I searched open reports and couldn't find a duplicate + required: true + - type: textarea + id: what + attributes: + label: What happened? + description: Mention here any typos, broken links, or missing, incomplete, or outdated information, etc. that you have noticed in the conda docs or CLI help. + validations: + required: true + - type: textarea + id: context + attributes: + label: Additional Context + description: Include any additional information (or screenshots) that you think would be valuable. diff --git a/.github/ISSUE_TEMPLATE/epic.yml b/.github/ISSUE_TEMPLATE/epic.yml index 50efd4cf..2bf64ea6 100644 --- a/.github/ISSUE_TEMPLATE/epic.yml +++ b/.github/ISSUE_TEMPLATE/epic.yml @@ -1,24 +1,108 @@ +# edit this in https://github.com/conda/infrastructure + name: Epic -description: (for conda-core team only) A collection of smaller related tickets -labels: [epic] +description: A collection of related tickets. +labels: + - epic body: + - type: markdown + attributes: + value: | + This form is intended for grouping and collecting together related tickets to better gauge the scope of a problem/feature. + + If you are attempting to report a bug, propose a new feature, or some other code change please use one of the other forms available. + + > [!NOTE] + > Epics that are incomplete or missing information may be closed as inactionable. + + Since there are already a lot of open issues, please also take a moment to search existing ones to see if a similar epic has already been opened. If you find something related, please upvote that issue and provide additional details as necessary. + + 💐 Thank you for helping to make `conda/issue-tracker` better. We would be unable to improve `conda/issue-tracker` without our community! + + - type: checkboxes + id: checks + attributes: + label: Checklist + description: Please confirm and check all of the following options. + options: + - label: I added a descriptive title + required: true + - label: I searched open issues and couldn't find a duplicate + required: true + - type: textarea + id: what attributes: - label: Summary + label: What? description: >- - Define the highlevel objectives accomplished in this epic. Include the - bigger picture of what is changing and/or the user story for why the - changes are desired/necessary. + What feature or problem will be addressed in this epic? + placeholder: Please describe here. validations: required: true + - type: textarea + id: why attributes: - label: Linked Issues & PRs - description: List all issues related to this epic. + label: Why? + description: >- + Why is the reported issue(s) a problem, or why is the proposed feature needed? + (Research and spike issues can be linked here.) + value: | + - [ ] + placeholder: Please describe here and/or link to relevant supporting issues. + validations: + required: true + + - type: textarea + id: user_impact + attributes: + label: User impact + description: >- + In what specific way(s) will users benefit from this change? (e.g. use cases or performance improvements) + placeholder: Please describe here. + validations: + required: true + + - type: textarea + id: goals + attributes: + label: Goals + description: >- + What goal(s) should this epic accomplish? value: | - - # - - # - - # - ... + - [ ] validations: required: true + + - type: textarea + id: tasks + attributes: + label: Tasks + description: >- + What needs to be done to implement this change? + value: | + - [ ] + validations: + required: false + + - type: textarea + id: blocked_by + attributes: + label: 'This epic is blocked by:' + description: >- + Epics and issues that block this epic. + value: | + - [ ] + validations: + required: false + + - type: textarea + id: blocks + attributes: + label: 'This epic blocks:' + description: >- + Epics and issues that are blocked by this epic. + value: | + - [ ] + validations: + required: false diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..29d9bba4 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,22 @@ + + +### Description + + + + + + diff --git a/.github/template-files/config.yml b/.github/template-files/config.yml new file mode 100644 index 00000000..10381688 --- /dev/null +++ b/.github/template-files/config.yml @@ -0,0 +1,50 @@ +conda/governance: + # [required] community files + - CODE_OF_CONDUCT.md + +conda/infrastructure: + # [required] general workflows + - .github/workflows/cla.yml + - .github/workflows/update.yml + + # [optional] to include repo in https://github.com/orgs/conda/projects/2 + - .github/workflows/issues.yml + - .github/workflows/labels.yml + - .github/workflows/project.yml + + # [optional] stale bot workflows + - .github/workflows/stale.yml + - .github/workflows/lock.yml + + # [optional] general processes for the conda org + - src: templates/HOW_WE_USE_GITHUB.md + dst: HOW_WE_USE_GITHUB.md + + # [optional] standard issue templates + - src: templates/issues/bug.yml + dst: .github/ISSUE_TEMPLATE/0_bug.yml + + - src: templates/issues/feature.yml + dst: .github/ISSUE_TEMPLATE/1_feature.yml + + - src: templates/issues/documentation.yml + dst: .github/ISSUE_TEMPLATE/2_documentation.yml + + - src: templates/issues/epic.yml + dst: .github/ISSUE_TEMPLATE/epic.yml + + # [optional] standard PR template + # - src: templates/pull_requests/news_tests_docs.md + # dst: .github/template-files/templates/pull_request_template_details.md + - src: templates/pull_requests/base.md + dst: .github/PULL_REQUEST_TEMPLATE.md + + # [optional] rever release files + # - src: templates/releases/RELEASE.md + # dst: RELEASE.md + # with: + # placeholder: YY.M + # - src: templates/releases/rever.xsh + # dst: rever.xsh + # - src: templates/releases/TEMPLATE + # dst: news/TEMPLATE diff --git a/.github/workflows/alltime.yml b/.github/workflows/alltime.yml index 343bb9c0..f9a43d75 100644 --- a/.github/workflows/alltime.yml +++ b/.github/workflows/alltime.yml @@ -24,3 +24,6 @@ jobs: - uses: stefanzweifel/git-auto-commit-action@v4 with: commit_message: Every 3 days snapshot + commit_user_name: Conda Bot + commit_user_email: 18747875+conda-bot@users.noreply.github.com + commit_author: Conda Bot <18747875+conda-bot@users.noreply.github.com> diff --git a/.github/workflows/boards.yml b/.github/workflows/boards.yml deleted file mode 100644 index bbec1ef9..00000000 --- a/.github/workflows/boards.yml +++ /dev/null @@ -1,213 +0,0 @@ -name: Automate Boards - -on: - # NOTE: github.event context is issues payload: - # https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#issues - issues: - types: [opened, labeled, unlabeled] - -env: - BACKLOG_LBL: backlog - SPRINT_LBL: sprint - # these variables cannot be used in if expressions - # see https://docs.github.com/en/actions/learn-github-actions/contexts#context-availability - TRIAGING_ID: 4 - TRIAGING_URL: https://api.github.com/projects/13697310 - BACKLOG_ID: 5 - BACKLOG_URL: https://api.github.com/projects/13697370 - SPRINT_ID: 8 - SPRINT_URL: https://api.github.com/projects/13829490 - -jobs: - # new -> Triaging[New] - to_triaging: - # if new issue (or old issue marked as [stale::recovered]) and not [backlog] or [sprint] - if: >- - !github.event.repository.fork - && github.event_name == 'issues' - && ( - ( - github.event.sender.login != 'conda-bot' - && github.event.action == 'opened' - ) - || ( - github.event.action == 'labeled' - && github.event.label.name == 'stale::recovered' - ) - ) - && !contains(github.event.issue.labels.*.name, 'backlog') - && !contains(github.event.issue.labels.*.name, 'sprint') - runs-on: ubuntu-latest - steps: - # add to Triaging board - - uses: alex-page/github-project-automation-plus@v0.8.1 - with: - action: add # if not present - project: Triaging - column: New - repo-token: ${{ secrets.PROJECT_TOKEN }} - - # new -> Backlog[Unplanned] - # Triaging[Ready] -> Backlog[Unplanned] - # Sprint[To Do] -> Backlog[Do Next] - to_backlog: - # if new issue with [backlog] - # if labeled [backlog] - # if added to Backlog board - # if unlabeled [sprint] - # if removed from Sprint board - if: >- - !github.event.repository.fork - && github.event.sender.login != 'conda-bot' - && github.event.issue.state == 'open' - && ( - ( - github.event_name == 'issues' - && github.event.action == 'opened' - && contains(github.event.issue.labels.*.name, 'backlog') - && !contains(github.event.issue.labels.*.name, 'sprint') - ) - || ( - github.event_name == 'issues' - && github.event.action == 'labeled' - && github.event.label.name == 'backlog' - ) - || ( - github.event_name == 'issues' - && github.event.action == 'unlabeled' - && github.event.label.name == 'sprint' - ) - ) - runs-on: ubuntu-latest - steps: - # (helper) access private GitHub Action - - uses: actions/checkout@v2 - # (helper) detect if attached to triaging board - - id: on_triaging - uses: conda/actions/issue-in-project@v1.1 - with: - org: conda - project: ${{ env.TRIAGING_ID }} - issue: ${{ github.event.issue.id }} - github_token: ${{ secrets.PROJECT_TOKEN }} - # (helper) detect if attached to sprint board - - id: on_sprint - uses: conda/actions/issue-in-project@v1.1 - with: - org: conda - project: ${{ env.SPRINT_ID }} - issue: ${{ github.event.issue.id }} - github_token: ${{ secrets.PROJECT_TOKEN }} - # (fail-safe) remove from Triaging board - - uses: alex-page/github-project-automation-plus@v0.8.1 - with: - action: delete # if present - project: Triaging - column: Ready # unused - repo-token: ${{ secrets.PROJECT_TOKEN }} - # add [backlog] label - - uses: actions-ecosystem/action-add-labels@v1.1.0 - with: - labels: ${{ env.BACKLOG_LBL }} - number: ${{ github.event.issue.number }} - github_token: ${{ secrets.PROJECT_TOKEN }} - # add to Backlog board (from Triaging board) - - uses: alex-page/github-project-automation-plus@v0.8.1 - if: >- - fromJSON(steps.on_triaging.outputs.contains) - && !contains(github.event.issue.labels.*.name, 'sprint') - && !fromJSON(steps.on_sprint.outputs.contains) - with: - action: add # if not present - project: Backlog - column: Unplanned - repo-token: ${{ secrets.PROJECT_TOKEN }} - # add to Backlog board (from Sprint board) - - uses: alex-page/github-project-automation-plus@v0.8.1 - if: >- - !fromJSON(steps.on_triaging.outputs.contains) - || contains(github.event.issue.labels.*.name, 'sprint') - || fromJSON(steps.on_sprint.outputs.contains) - with: - action: add # if not present - project: Backlog - column: Do Next - repo-token: ${{ secrets.PROJECT_TOKEN }} - # remove [sprint] label - - uses: actions-ecosystem/action-remove-labels@v1.3.0 - with: - labels: ${{ env.SPRINT_LBL }} - number: ${{ github.event.issue.number }} - github_token: ${{ secrets.PROJECT_TOKEN }} - # remove from Sprint board - - uses: alex-page/github-project-automation-plus@v0.8.1 - with: - action: delete # if present - project: Sprint - column: To Do # unused - repo-token: ${{ secrets.PROJECT_TOKEN }} - - # new -> Sprint[To Do] - # Backlog[Do Next] -> Sprint[To Do] - to_sprint: - # if new issue with [sprint] - # if unlabeled [backlog] - # if removed from Backlog board - # if labeled [sprint] - # if added to Sprint board - if: >- - !github.event.repository.fork - && github.event.sender.login != 'conda-bot' - && github.event.issue.state == 'open' - && ( - ( - github.event_name == 'issues' - && github.event.action == 'opened' - && contains(github.event.issue.labels.*.name, 'sprint') - ) - || ( - github.event_name == 'issues' - && github.event.action == 'unlabeled' - && github.event.label.name == 'backlog' - ) - || ( - github.event_name == 'issues' - && github.event.action == 'labeled' - && github.event.label.name == 'sprint' - ) - ) - runs-on: ubuntu-latest - steps: - # (fail-safe) remove from Triaging board - - uses: alex-page/github-project-automation-plus@v0.8.1 - with: - action: delete # if present - project: Triaging - column: Ready # unused - repo-token: ${{ secrets.PROJECT_TOKEN }} - # remove [backlog] label - - uses: actions-ecosystem/action-remove-labels@v1.3.0 - with: - labels: ${{ env.BACKLOG_LBL }} - number: ${{ github.event.issue.number }} - github_token: ${{ secrets.PROJECT_TOKEN }} - # remove from Backlog board - - uses: alex-page/github-project-automation-plus@v0.8.1 - with: - action: delete # if present - project: Backlog - column: Do Next # unused - repo-token: ${{ secrets.PROJECT_TOKEN }} - # add [sprint] label - - uses: actions-ecosystem/action-add-labels@v1.1.0 - with: - labels: ${{ env.SPRINT_LBL }} - number: ${{ github.event.issue.number }} - github_token: ${{ secrets.PROJECT_TOKEN }} - # add to Sprint board - - uses: alex-page/github-project-automation-plus@v0.8.1 - with: - action: add # if not present - project: Sprint - column: To Do - repo-token: ${{ secrets.PROJECT_TOKEN }} diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml new file mode 100644 index 00000000..42d24ec3 --- /dev/null +++ b/.github/workflows/cla.yml @@ -0,0 +1,35 @@ +name: CLA + +on: + issue_comment: + types: + - created + pull_request_target: + +jobs: + check: + if: >- + !github.event.repository.fork + && ( + github.event.issue.pull_request + && github.event.comment.body == '@conda-bot check' + || github.event_name == 'pull_request_target' + ) + runs-on: ubuntu-slim + steps: + - name: Check CLA + uses: conda/actions/check-cla@7f6830b1428a9bd47f0b068892c77eae95207037 # v26.1.0 + with: + # [required] + # A token with ability to comment, label, and modify the commit status + # (`pull_request: write` and `statuses: write` for fine-grained PAT; `repo` for classic PAT) + # (default: secrets.GITHUB_TOKEN) + token: ${{ secrets.CLA_ACTION_TOKEN }} + # [required] + # Label to apply to contributor's PR once CLA is signed + label: cla-signed + + # [required] + # Token for opening signee PR in the provided `cla_repo` + # (`pull_request: write` for fine-grained PAT; `repo` and `workflow` for classic PAT) + cla_token: ${{ secrets.CLA_FORK_TOKEN }} diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml index 933f7369..573ef0f3 100644 --- a/.github/workflows/issues.yml +++ b/.github/workflows/issues.yml @@ -11,28 +11,24 @@ env: SUPPORT_LBL: pending::support jobs: - # NOTE: doesn't catch cases where multiple users act as the author/reporter, - # this is just an effort to catch the majority of support cases - # TODO: create conda-triaging team and modify this to toggle label based on - # whether a non-triaging engineer commented + # NOTE: will update label if anyone responds, not just the author/reporter + # TODO: create conda-issue-sorting team and modify this to toggle label based on + # whether a non-issue-sorting engineer commented pending_support: - # if [pending::feedback] and the author responds + # if [pending::feedback] and anyone responds if: >- !github.event.repository.fork - && github.event_name == 'issue_comment' - && github.event.action == 'created' && !github.event.issue.pull_request && contains(github.event.issue.labels.*.name, 'pending::feedback') - && github.event.issue.user.login == github.event.comment.user.login - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: # remove [pending::feedback] - - uses: actions-ecosystem/action-remove-labels@v1.3.0 + - uses: actions-ecosystem/action-remove-labels@2ce5d41b4b6aa8503e285553f75ed56e0a40bae0 # v1.3.0 with: labels: ${{ env.FEEDBACK_LBL }} github_token: ${{ secrets.PROJECT_TOKEN }} - # add [pending::feedback], if still open - - uses: actions-ecosystem/action-add-labels@v1.1.0 + # add [pending::support], if still open + - uses: actions-ecosystem/action-add-labels@18f1af5e3544586314bbe15c0273249c770b2daf # v1.1.3 if: github.event.issue.state == 'open' with: labels: ${{ env.SUPPORT_LBL }} diff --git a/.github/workflows/labels.yml b/.github/workflows/labels.yml index c615a689..7ba0ec7d 100644 --- a/.github/workflows/labels.yml +++ b/.github/workflows/labels.yml @@ -5,37 +5,45 @@ on: # https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#workflow_dispatch workflow_dispatch: inputs: - dryrun: - description: "dryrun: Preview changes to labels without editing them (true|false)" - required: true - default: "true" + delete-unmapped: + description: Delete labels not mapped in either global or local label configurations. + default: false + type: boolean + + dry-run: + description: Run label synchronization workflow without making any changes. + default: false + type: boolean jobs: sync: if: '!github.event.repository.fork' - runs-on: ubuntu-latest + runs-on: ubuntu-slim env: GLOBAL: https://raw.githubusercontent.com/conda/infra/main/.github/global.yml LOCAL: .github/labels.yml steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - id: has_local - uses: andstor/file-existence-action@v1.0.1 + uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0 with: files: ${{ env.LOCAL }} + - name: Global Only - uses: EndBug/label-sync@v2.1.0 + uses: EndBug/label-sync@52074158190acb45f3077f9099fea818aa43f97a # v2.3.3 if: steps.has_local.outputs.files_exists == 'false' with: config-file: ${{ env.GLOBAL }} - delete-other-labels: true - dry-run: ${{ github.event.inputs.dryrun }} + delete-other-labels: ${{ inputs.delete-unmapped }} + dry-run: ${{ inputs.dry-run }} + - name: Global & Local - uses: EndBug/label-sync@v2.1.0 + uses: EndBug/label-sync@52074158190acb45f3077f9099fea818aa43f97a # v2.3.3 if: steps.has_local.outputs.files_exists == 'true' with: config-file: | ${{ env.GLOBAL }} ${{ env.LOCAL }} - delete-other-labels: true - dry-run: ${{ github.event.inputs.dryrun }} + delete-other-labels: ${{ inputs.delete-unmapped }} + dry-run: ${{ inputs.dry-run }} diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index f2136085..7e73297b 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -4,11 +4,6 @@ on: # NOTE: github.event is workflow_dispatch payload: # https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#workflow_dispatch workflow_dispatch: - # inputs: - # dryrun: - # description: "dryrun: Preview locking issues/prs without marking them (true|false)" - # required: true - # default: "true" schedule: - cron: 0 6 * * * @@ -20,39 +15,30 @@ permissions: jobs: lock: if: '!github.event.repository.fork' - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - - id: read_yaml - uses: conda/actions/read-yaml@v22.2.1 - with: - path: https://raw.githubusercontent.com/conda/infra/main/.github/messages.yml - - uses: dessant/lock-threads@v2 + - uses: dessant/lock-threads@7266a7ce5c1df01b1c6db85bf8cd86c737dadbe7 # v6.0.0 with: # Number of days of inactivity before a closed issue is locked - issue-lock-inactive-days: 365 + issue-inactive-days: 180 # Do not lock issues created before a given timestamp, value must follow ISO 8601 - issue-exclude-created-before: '' + exclude-issue-created-before: '' # Do not lock issues with these labels, value must be a comma separated list of labels or '' - issue-exclude-labels: '' + exclude-any-issue-labels: '' # Labels to add before locking an issue, value must be a comma separated list of labels or '' - issue-lock-labels: 'locked' - # Comment to post before locking an issue - issue-lock-comment: ${{ fromJSON(steps.read_yaml.outputs.value)['lock-issue'] }} + add-issue-labels: locked # Reason for locking an issue, value must be one of resolved, off-topic, too heated, spam or '' - issue-lock-reason: 'resolved' - + issue-lock-reason: resolved # Number of days of inactivity before a closed pull request is locked - pr-lock-inactive-days: 365 + pr-inactive-days: 365 # Do not lock pull requests created before a given timestamp, value must follow ISO 8601 - pr-exclude-created-before: '' + exclude-pr-created-before: '' # Do not lock pull requests with these labels, value must be a comma separated list of labels or '' - pr-exclude-labels: '' + exclude-any-pr-labels: '' # Labels to add before locking a pull request, value must be a comma separated list of labels or '' - pr-lock-labels: 'locked' - # Comment to post before locking a pull request - pr-lock-comment: ${{ fromJSON(steps.read_yaml.outputs.value)['lock-pr'] }} + add-pr-labels: locked # Reason for locking a pull request, value must be one of resolved, off-topic, too heated, spam or '' - pr-lock-reason: 'resolved' + pr-lock-reason: resolved - # Limit locking to only issues or pull requests, value must be one of issues, prs or '' - process-only: '' + # Limit locking to issues, pull requests or discussions, value must be a comma separated list of issues, prs, discussions or '' + process-only: issues, prs diff --git a/.github/workflows/month.yml b/.github/workflows/month.yml index 0cc6c59b..19837828 100644 --- a/.github/workflows/month.yml +++ b/.github/workflows/month.yml @@ -24,3 +24,6 @@ jobs: - uses: stefanzweifel/git-auto-commit-action@v4 with: commit_message: Every 3 hours snapshot + commit_user_name: Conda Bot + commit_user_email: 18747875+conda-bot@users.noreply.github.com + commit_author: Conda Bot <18747875+conda-bot@users.noreply.github.com> diff --git a/.github/workflows/project.yml b/.github/workflows/project.yml new file mode 100644 index 00000000..9ff94eb8 --- /dev/null +++ b/.github/workflows/project.yml @@ -0,0 +1,17 @@ +name: Add to Project + +on: + pull_request_target: + types: + - opened + +jobs: + add_to_project: + if: '!github.event.repository.fork' + runs-on: ubuntu-slim + steps: + - uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2 + with: + # PRs are added to the Review project + project-url: https://github.com/orgs/conda/projects/16 + github-token: ${{ secrets.PROJECT_TOKEN }} diff --git a/.github/workflows/recent.yml b/.github/workflows/recent.yml index cbabc8c1..1f7ef7d0 100644 --- a/.github/workflows/recent.yml +++ b/.github/workflows/recent.yml @@ -24,3 +24,6 @@ jobs: - uses: stefanzweifel/git-auto-commit-action@v4 with: commit_message: Hourly snapshot + commit_user_name: Conda Bot + commit_user_email: 18747875+conda-bot@users.noreply.github.com + commit_author: Conda Bot <18747875+conda-bot@users.noreply.github.com> diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index dbc3c870..00e91181 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -6,81 +6,91 @@ on: workflow_dispatch: inputs: dryrun: - description: "dryrun: Preview stale issues/prs without marking them (true|false)" + description: 'dryrun: Preview stale issues/prs without marking them (true|false)' required: true - default: "true" + type: boolean + default: true schedule: - cron: 0 4 * * * +permissions: + issues: write + pull-requests: write + jobs: stale: if: '!github.event.repository.fork' - runs-on: ubuntu-latest + runs-on: ubuntu-slim strategy: matrix: - # The issues labeled "support" have a more aggressive stale/close timeline from the rest - only-issue-labels: ['type::support', ''] + include: + - only-issue-labels: '' + days-before-issue-stale: 365 + days-before-issue-close: 30 + # [type::support] issues have a more aggressive stale/close timeline + - only-issue-labels: type::support + days-before-issue-stale: 90 + days-before-issue-close: 21 steps: - - id: read_yaml - uses: conda/actions/read-yaml@v22.2.1 + - uses: conda/actions/read-yaml@7f6830b1428a9bd47f0b068892c77eae95207037 # v26.1.0 + id: read_yaml with: path: https://raw.githubusercontent.com/conda/infra/main/.github/messages.yml - - uses: actions/stale@v4 + + - uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10.2.0 id: stale with: - # Idle number of days before marking issues stale (default: 60) - days-before-issue-stale: ${{ matrix.only-issue-labels && 21 || 365 }} - # Idle number of days before closing stale issues/PRs (default: 7) - days-before-issue-close: ${{ matrix.only-issue-labels && 7 || 90 }} - # Idle number of days before marking PRs stale (default: 60) + # Only issues with these labels are checked whether they are stale + only-issue-labels: ${{ matrix.only-issue-labels }} + + # Idle number of days before marking issues stale + days-before-issue-stale: ${{ matrix.days-before-issue-stale }} + # Idle number of days before closing stale issues/PRs + days-before-issue-close: ${{ matrix.days-before-issue-close }} + # Idle number of days before marking PRs stale days-before-pr-stale: 365 - # Idle number of days before closing stale PRs (default: 7) + # Idle number of days before closing stale PRs days-before-pr-close: 30 # Comment on the staled issues stale-issue-message: ${{ fromJSON(steps.read_yaml.outputs.value)['stale-issue'] }} - # Comment on the staled issues while closed - close-issue-message: ${{ fromJSON(steps.read_yaml.outputs.value)['close-issue'] }} - # Comment on the staled PRs - stale-pr-message: ${{ fromJSON(steps.read_yaml.outputs.value)['stale-pr'] }} - # Comment on the staled PRs while closed - close-pr-message: ${{ fromJSON(steps.read_yaml.outputs.value)['close-pr'] }} # Label to apply on staled issues - stale-issue-label: 'stale' + stale-issue-label: stale # Label to apply on closed issues - close-issue-label: 'stale::closed' + close-issue-label: stale::closed + # Reason to use when closing issues + close-issue-reason: not_planned + + # Comment on the staled PRs + stale-pr-message: ${{ fromJSON(steps.read_yaml.outputs.value)['stale-pr'] }} # Label to apply on staled PRs - stale-pr-label: 'stale' + stale-pr-label: stale # Label to apply on closed PRs - close-pr-label: 'stale::closed' + close-pr-label: stale::closed - # Issues with these labels will never be considered stale - exempt-issue-labels: 'stale::recovered,good-first-issue,help-wanted,severity::1,source::partner,¡important!,¡security!,type::tech-debt,epic,priority-high' - # Issues with these labels will never be considered stale - exempt-pr-labels: 'stale::recovered,good-first-issue,help-wanted,severity::1,source::partner,¡important!,¡security!,type::tech-debt,epic,priority-high' - # Only issues with these labels are checked whether they are stale - only-issue-labels: ${{ matrix.only-issue-labels }} - - # Max number of operations per run - operations-per-run: ${{ secrets.STALE_OPERATIONS_PER_RUN || 100 }} # Remove stale label from issues/PRs on updates/comments remove-stale-when-updated: true - # Add specified labels to issues/PRs when they become unstale - labels-to-add-when-unstale: 'stale::recovered' - labels-to-remove-when-unstale: 'stale,stale::closed' + labels-to-add-when-unstale: stale::recovered + # Remove specified labels to issues/PRs when they become unstale + labels-to-remove-when-unstale: stale,stale::closed - # Dry-run (default: false) + # Max number of operations per run + operations-per-run: ${{ secrets.STALE_OPERATIONS_PER_RUN || 100 }} + # Dry-run debug-only: ${{ github.event.inputs.dryrun || false }} - # Order to get issues/PRs (default: false) + # Order to get issues/PRs ascending: true - # Delete branch after closing a stale PR (default: false) + # Delete branch after closing a stale PR delete-branch: false + # Issues with these labels will never be considered stale + exempt-issue-labels: stale::recovered,epic + # Issues with these labels will never be considered stale + exempt-pr-labels: stale::recovered,epic # Exempt all issues/PRs with milestones from stale exempt-all-milestones: true - # Assignees on issues/PRs exempted from stale exempt-assignees: mingwandroid diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml new file mode 100644 index 00000000..c598ba68 --- /dev/null +++ b/.github/workflows/update.yml @@ -0,0 +1,124 @@ +name: Update Repository + +on: + # every Sunday at 00:36 UTC + # https://crontab.guru/#36_2_*_*_0 + schedule: + - cron: 36 2 * * 0 + + workflow_dispatch: + + issue_comment: + types: + - created + +jobs: + update: + if: >- + !github.event.repository.fork + && ( + github.event_name == 'schedule' + || github.event_name == 'workflow_dispatch' + || ( + github.event_name == 'issue_comment' + && github.event.issue.pull_request + && ( + github.event.comment.body == '@conda-bot render' + || github.event.comment.body == '@conda-bot recreate' + ) + ) + ) + runs-on: ubuntu-slim + steps: + - if: github.event_name == 'issue_comment' + uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 # v5.0.0 + with: + comment-id: ${{ github.event.comment.id }} + reactions: eyes + reactions-edit-mode: replace + token: ${{ secrets.SYNC_TOKEN }} + + - if: github.event.comment.body == '@conda-bot render' + name: Configure git origin + run: | + echo REPOSITORY=$(curl --silent ${{ github.event.issue.pull_request.url }} | jq --raw-output '.head.repo.full_name') >> $GITHUB_ENV + echo REF=$(curl --silent ${{ github.event.issue.pull_request.url }} | jq --raw-output '.head.ref') >> $GITHUB_ENV + + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + with: + repository: ${{ env.REPOSITORY || github.repository }} + ref: ${{ env.REF || '' }} + token: ${{ secrets.SYNC_TOKEN }} + + - name: Configure git user + run: | + git config --global user.name 'Conda Bot' + git config --global user.email '18747875+conda-bot@users.noreply.github.com' + + - uses: conda/actions/combine-durations@7f6830b1428a9bd47f0b068892c77eae95207037 # v26.1.0 + id: durations + continue-on-error: true + + - uses: conda/actions/template-files@7f6830b1428a9bd47f0b068892c77eae95207037 # v26.1.0 + id: templates + continue-on-error: true + + - name: Commit changes + # no-op if there are no updates + continue-on-error: true + run: | + git add . + git commit --message "🤖 updated file(s)" + + - if: github.event.comment.body != '@conda-bot render' + name: Create fork + # no-op if the repository is already forked + run: echo FORK=$(gh repo fork --clone=false --default-branch-only 2>&1 | awk '{print $1}') >> $GITHUB_ENV + env: + GH_TOKEN: ${{ secrets.SYNC_TOKEN }} + + - if: github.event.comment.body != '@conda-bot render' + id: create + # no-op if no commits were made + uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0 + with: + push-to-fork: ${{ env.FORK }} + token: ${{ secrets.SYNC_TOKEN }} + branch: update + delete-branch: true + title: 🤖 Update infrastructure file(s) + body: | + [update.yml]: ${{ github.server_url }}/${{ github.repository }}/blob/main/.github/workflows/update.yml + + Your friendly repository updater. + + ${{ steps.durations.outputs.summary }} + + ${{ steps.templates.outputs.summary }} + + This PR was triggered by @${{ github.triggering_actor }} via ${{ github.event_name }}. + +
+ Commands + + Trigger actions by commenting on this PR: + + - `@conda-bot render` will run rendering workflows and commit and push any changes to this PR + - `@conda-bot recreate` will recreate this PR, overwriting any edits that have been made to it + +
+ + ###### Auto-generated by the [`update.yml`][update.yml] workflow, see ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}. + + - if: github.event.comment.body == '@conda-bot render' + id: update + name: Push changes + run: git push --force-with-lease + + - if: always() && github.event_name == 'issue_comment' + uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 # v5.0.0 + with: + comment-id: ${{ github.event.comment.id }} + reactions: ${{ (steps.create.conclusion == 'success' || steps.update.conclusion == 'success') && 'hooray' || 'confused' }} + reactions-edit-mode: replace + token: ${{ secrets.SYNC_TOKEN }} diff --git a/.github/workflows/year.yml b/.github/workflows/year.yml index b9b55e4a..11935a43 100644 --- a/.github/workflows/year.yml +++ b/.github/workflows/year.yml @@ -24,3 +24,6 @@ jobs: - uses: stefanzweifel/git-auto-commit-action@v4 with: commit_message: Every 24 hours snapshot + commit_user_name: Conda Bot + commit_user_email: 18747875+conda-bot@users.noreply.github.com + commit_author: Conda Bot <18747875+conda-bot@users.noreply.github.com> diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8320eeae..ce31b940 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.1.0 + rev: v6.0.0 hooks: # standard end of line/end of file cleanup - id: mixed-line-ending @@ -12,36 +12,36 @@ repos: - id: check-json # catch git merge/rebase problems - id: check-merge-conflict - - repo: https://github.com/psf/black - rev: 22.3.0 + - repo: https://github.com/psf/black-pre-commit-mirror + rev: 26.3.1 hooks: - id: black types_or: [python] - repo: https://github.com/asottile/blacken-docs - rev: v1.12.1 + rev: 1.20.0 hooks: - id: blacken-docs - additional_dependencies: [black==21.11b1] + additional_dependencies: [black] types_or: [python] - repo: https://github.com/PyCQA/flake8 - rev: 4.0.1 + rev: 7.3.0 hooks: - id: flake8 types_or: [python] - repo: https://github.com/PyCQA/pylint - rev: v2.13.4 + rev: v4.0.5 hooks: - id: pylint args: [--exit-zero] types_or: [python] - repo: https://github.com/PyCQA/bandit - rev: 1.7.4 + rev: 1.9.4 hooks: - id: bandit args: [--exit-zero] types_or: [python] - repo: https://github.com/pre-commit/mirrors-prettier - rev: v2.6.2 + rev: v4.0.0-alpha.8 hooks: - id: prettier types_or: [ts] diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 00000000..d983bc7f --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,303 @@ +# Conda Organization Code of Conduct + +# The Short Version + +Be kind to others. Do not insult or put down others. Behave professionally. Remember that harassment and sexist, racist, or exclusionary jokes are not appropriate for the conda Organization. + +All communication should be appropriate for a professional audience including people of many different backgrounds. Sexual language and imagery is not appropriate. + +The conda Organization is dedicated to providing a harassment-free community for everyone, regardless of gender, sexual orientation, gender identity and expression, disability, physical appearance, body size, race, or religion. We do not tolerate harassment of community members in any form. + +Thank you for helping make this a welcoming, friendly community for all. + +## Report an Incident + +* Report a code of conduct incident [using a form](https://form.jotform.com/221527028480048). +* Report a code of conduct incident via email: [conduct@conda.org](mailto:conduct@conda.org). +* Contact [an individual committee member](#committee-membership) or [CoC event representative](#coc-representatives) to report an incident in confidence. + +  + +And now the longer version... + +# Conda Organization Diversity Statement + +The conda Organization welcomes and encourages participation in our community by people of all backgrounds and identities. We are committed to promoting and sustaining a culture that values mutual respect, tolerance, and learning, and we work together as a community to help each other live out these values. + +We have created this diversity statement because we believe that a diverse community is stronger, more vibrant, and produces better software and better science. A diverse community where people treat each other with respect has more potential contributors, more sources for ideas, and fewer shared assumptions that might hinder development or research. + +Although we have phrased the formal diversity statement generically to make it all-inclusive, we recognize that there are specific identities that are impacted by systemic discrimination and marginalization. We welcome all people to participate in the conda Organization community regardless of their identity or background. + +# Conda Organization Code of Conduct: Introduction & Scope + +This code of conduct should be honored by everyone who participates in the conda Organization community. It should be honored in any conda Organization-related activities, by anyone claiming affiliation with the conda Organization, and especially when someone is representing the conda Organization in any role (including as an event volunteer or speaker). + +This code of conduct applies to all spaces managed by the conda Organization, including all public and private mailing lists, issue trackers, wikis, forums, and any other communication channel used by our community. The code of conduct equally applies at conda Organization events and governs standards of behavior for attendees, speakers, volunteers, booth staff, and event sponsors. + +This code is not exhaustive or complete. It serves to distill our understanding of a collaborative, inclusive community culture. Please try to follow this code in spirit as much as in letter, to create a friendly and productive environment that enriches the conda Organization community. + +The conda Organization Code of Conduct follows below. + +# Standards for Behavior + +The conda Organization is a worldwide community. All communication should be appropriate for a professional audience including people of many different backgrounds. + +**Please always be kind and courteous. There's never a need to be mean or rude or disrespectful.** Thank you for helping make this a welcoming, friendly community for all. + +We strive to: + +**Be empathetic, welcoming, friendly, and patient.** We remember that the conda Organization is crafted by human beings who deserve to be treated with kindness and empathy. We work together to resolve conflict and assume good intentions. We may all experience some frustration from time to time, but we do not allow frustration to turn into a personal attack. A community where people feel uncomfortable or threatened is not a productive one. + +**Be collaborative.** Our work depends on the participation of many people, and in turn others depend on our work. Open source communities depend on effective and friendly collaboration to achieve their goals. + +**Be inquisitive.** Nobody knows everything! Asking questions early avoids many problems later, so we encourage questions, although we may direct them to the appropriate forum. We will try hard to be responsive and helpful. + +**Be careful in the words that we choose.** We are careful and respectful in our communication and we take responsibility for our own speech. Be kind to others. Do not insult or put down other members of the community. + +## Unacceptable Behavior + +We are committed to making participation in this community a harassment-free experience. + +We will not accept harassment or other exclusionary behaviors, such as: + +- The use of sexualized language or imagery +- Excessive profanity (please avoid curse words; people differ greatly in their sensitivity to swearing) +- Posting sexually explicit or violent material +- Violent or intimidating threats or language directed against another person +- Inappropriate physical contact and/or unwelcome sexual attention or sexual comments +- Sexist, racist, or otherwise discriminatory jokes and language +- Trolling or insulting and derogatory comments +- Written or verbal comments which have the effect of excluding people on the basis of membership in a specific group, including level of experience, gender, gender identity and expression, sexual orientation, disability, neurotype, personal appearance, body size, race, ethnicity, age, religion, or nationality +- Public or private harassment +- Sharing private content, such as emails sent privately or non-publicly, or direct message history, without the sender's consent +- Continuing to initiate interaction (such as photography, recording, messaging, or conversation) with someone after being asked to stop +- Sustained disruption of talks, events, or communications, such as heckling of a speaker +- Publishing (or threatening to post) other people's personally identifying information ("doxing"), such as physical or electronic addresses, without explicit permission +- Other unethical or unprofessional conduct +- Advocating for, or encouraging, any of the above behaviors + +The conda Organization prioritizes marginalized people’s safety over privileged people’s comfort. The conda CoC Committee reserves the right not to act on complaints including, but not limited to: + +* ‘Reverse’ -isms, including ‘reverse racism,’ ‘reverse sexism,’ and ‘cisphobia’. +* Reasonable communication of boundaries, such as “leave me alone,” “go away,” or “I’m not discussing this with you.” +* Communicating in a ‘tone’ you don’t find congenial. +* Criticizing racist, sexist, cissexist, or otherwise oppressive behavior or assumptions. + +## Behavior Outside of conda Organization Spaces + +The CoC Committee does not influence behavior and membership in spaces outside the conda Organization. However, if you are being harassed by a member of the conda community outside our spaces, you may still report it to the CoC Committee. We will take all good-faith reports of harassment by conda community members seriously. This includes harassment outside our spaces and harassment that took place at any point in time. + +The CoC Committee reserves the right to exclude people from conda Organization spaces based on their past behavior, including behavior outside conda Organization spaces and behavior towards people who are not in the conda community. + +# Confidentiality and Public Statements to the Community + +The CoC Committee will keep the identity of the reporter confidential. + +Whenever possible, CoC cases will be reported to the community. The level of detail in reports will vary from case to case. Reports will describe at least the type of infraction that was reported, and the Committee's decision and any action taken. In most cases, the report will not include personally identifiable information. + +# Live Events + +> **If you feel your safety is in jeopardy or the situation is an emergency, we urge you to contact local law enforcement before making a report to the event's Code of Conduct committee members, [representatives](#coc-representatives), or other staff.** (In the U.S., call 911.) + +Live events present particular challenges: + +**Code of conduct reports, and consequences that stem from them, merit a thoughtful and deliberative process. Decisions and consequences matter for the reporter, the reported, and for the community at large. However, many reports, especially at live events, require rapid action to quickly address the behavior being reported.** + +To better support situations where immediate action may be required, these guidelines are used *during* live events: + +* All conda Organization events will have specific, named Code of Conduct contacts for the events. +* The names and contact mechanisms for the Code of Conduct representatives will be clearly and frequently communicated to event participants. + +## CoC Representatives + +Every conda Organization associated event will have named CoC Committee members or *CoC representatives* that are the first point of contact for that event. Who these people are will be clearly and frequently communicated to event participants. CoC approved representatives are used when there are no committee members participating in the event. + +## Live Events: Reporting and Actions +At conda Organization events, Code of Conduct committee members or representatives will attempt to gather and write down [information](#what-to-include-in-a-report) from anyone making a verbal report at a live event. Recording the details in writing is exceedingly important in order for us to effectively respond to reports. If event staff write down a report taken verbally, then the person making the report will be asked to review the written report for accuracy. + +For reports made during live events, or in any situation where urgent action is needed: + +* Any two (or more) event organizers, event staff, CoC Committee members or CoC representatives can decide if immediate action is to be taken and what that action is. In exceptionally dangerous situations, this decision can be made by a single person. +* These rapid decisions can be reconsidered during the event as more information becomes available. +* The scope of any rapid decision is limited to the current event / situation. +* The report, any related information, and any decisions and consequences will be reported to the full Code of Conduct Committee as soon as possible. + +The full Code of Conduct Committee will then consider the report using the full timeline and processes defined below. The Committee may decide to apply consequences in other spaces beyond the space where the behavior was reported. + +Potential *immediate* consequences for violating the conda Organization Code of Conduct at a live event include, but are not limited to: + +- Warning the person to cease their behavior and that any further reports will result in sanctions +- Requiring that the person avoid any interaction with, and physical proximity to, the person they are harassing for the remainder of the event +- Ending a talk that violates the policy early +- Not publishing the video or slides of a talk that violated the policy +- Not allowing a speaker who violated the policy to give (further) talks at the event now or in the future +- Immediately ending any event volunteer responsibilities and privileges the reported person holds +- Expelling the person from the event without a refund +- Requiring that the person immediately leave the event and not return +- Any other response that the CoC members, representatives, or event staff deem necessary and appropriate to the situation + +# Reporting Guidelines + +If you believe someone is violating the code of conduct, please report this in a timely manner. Code of conduct violations reduce the value of the community for everyone. The conda Code of Conduct (CoC) Committee and the conda Organization take reports of misconduct very seriously and are committed to preserving and maintaining the welcoming nature of our community. + +> [!NOTE] +> You are also encouraged to reach out to the conda Code of Conduct (CoC) Committee if you want clarification on something, if you notice some borderline behavior, or just have a concern. Send us a note at [conduct@conda.org](mailto:conduct@conda.org). + +All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The conda CoC Committee commits to maintaining confidentiality with regard to the reporter of an incident. + +For possibly unintentional breaches of the code of conduct, you may want to respond to the person and point out this code of conduct (either in public or in private, whatever is most appropriate). If you would prefer not to do that, please report the issue to the conda CoC Committee directly. + +Take care of each other. Alert someone if you notice a dangerous situation, someone in distress, or violations of this code of conduct, even if they seem inconsequential. + +## How to Submit a Report + +The CoC Committee is committed to promptly addressing any reported issues. If you have experienced or witnessed behavior that violates the conda Organization Code of Conduct, please let us know. + +You can report an incident + +* via the **[Incident Reporting Form](https://form.jotform.com/221527028480048)** +* via email: [conduct@conda.org](mailto:conduct@conda.org) +* contact [an individual committee member](#committee-membership) or [CoC event representative](#coc-representatives) to report an incident in confidence. + +Reports submitted via the form or committee email address are sent to the [full conda Code of Conduct Committee](#committee-membership). + +## What to Include in a Report + +Our ability to address any code of conduct breaches in a timely and effective manner is impacted by the amount of information you can provide, so, we ask you to include as much of the following information as you can**: + +- **Your contact info** (so we can get in touch with you if we need to follow up). This will be kept confidential. You can also file a report [anonymously](#anonymous-reporting). +- The **approximate time and location of the incident** (please be as specific as possible). +- **Identifying information** (e.g. name, nickname, screen name, physical description) of the individual whose behavior is being reported. +- **Description of the behavior** (if reporting harassing language, please be specific about the words used), **your account of what happened**, and any available **supporting records** (e.g. email, GitHub issue, screenshots, etc.). +- **Description of the circumstances/context** surrounding the incident. +- Let us know **if the incident is ongoing**, and/or if this is part of an ongoing pattern of behavior. +- Names and contact info, if possible, of **anyone else who witnessed** or was involved in this incident. (Did anyone else observe the incident?) +- **Any other relevant information** you believe we should have. + +## Anonymous Reporting + +The reporting form supports anonymous incident reporting. Anonymous reporting works best when the behavior happened in a public space and was witnessed by many. If an incident is reported anonymously and was not witnessed by others, then the committee may be limited in what actions it can take and what it can report to the larger community. Nevertheless, the CoC Committee is still interested in receiving these reports. They are helpful when determining what we need to address as a community, and when looking for evidence of repeated behavior. + +## Conflicts of Interest + +Committee members are expected to recuse themselves if they have a conflict of interest, and are required to recuse themselves if they are the accused or the target of the reported behavior. In addition, the CoC Committee can [vote](#voting-and-decision-making) to remove a committee member from a case, if the committee feels that the member has a conflict of interest. This [vote](#voting-and-decision-making) requires a simple majority. + +If you are concerned about making a report that will be read by all committee members, you are strongly encouraged to contact [individual committee members](#committee-membership) directly. + +# Enforcement: What Happens After a Report is Filed? + +## Acknowledgment and Responding to Immediate Needs + +CoC Committee members and/or event staff will attempt to ensure your safety and help with any immediate needs. The CoC Committee will make every effort to **acknowledge receipt within 24 hours** (and we'll aim for much more quickly than that). + +## Reviewing the Report + +The CoC Committee will make all efforts to **review the incident within three days** and determine: + +- Whether this is an ongoing situation, or if there is a threat to anyone's physical safety +- What happened +- Whether this event constitutes a code of conduct violation +- Who the bad actor was, if any + +## Contacting the Person Reported + +After the CoC Committee has had time to review and discuss the report, someone will attempt to contact the person who is the subject of the report to inform them of what has been reported about them. We will then ask that person for their account of what happened. + +## Response and Potential Consequences + +Once the CoC Committee has completed our investigation of the report, we will make a decision as to how to respond. The person making a report will not normally be consulted as to the proposed resolution of the issue, except insofar as we need to understand how to help them feel safe. + +Potential consequences for violating the conda Organization code of conduct include: + +- Nothing (if we determine that no violation occurred) +- Private feedback or reprimand from the CoC Committee to the individual(s) involved +- Warning the person to cease their behavior and that any further reports will result in sanctions +- A public announcement that an incident occurred +- Mediation (only if both reporter and reportee agree) +- An imposed vacation (e.g. asking someone to "take a week off" from a mailing list) +- A permanent or temporary ban from some or all the conda Organization spaces (mailing lists, GitHub repos, in-person events, etc.) +- Assistance to the complainant with a report to other bodies, for example, institutional offices or appropriate law enforcement agencies +- Removing a person from the conda Organization membership or other formal affiliation +- Publishing an account of the harassment and calling for the resignation of the alleged harasser from their responsibilities (may be called for if the person is an event leader, or refuses to stand aside from the conflict of interest, or similar) +- Any other response that the CoC Committee deems necessary and appropriate to the situation + +No one espousing views or values contrary to the standards of our code of conduct will be permitted to hold any position representing the conda Organization, including volunteer positions. The CoC Committee has the right and responsibility to remove, edit, or reject comments, commits, code, website edits, issues, and other contributions that are not aligned with this code of conduct. + +We aim to **respond within one week** to the original reporter with either a resolution or an explanation of why the situation is not yet resolved. + +We will contact the person who is the subject of the report to let them know what actions will be taken as a result of the report, if any. + +Our policy is to make sure that everyone aware of the initial incident is also made aware that official action has been taken, while still respecting the privacy of individuals. In addition, we will also usually [notify the community](#confidentiality-and-public-statements-to-the-community) that an incident has been reported, what type of incident it was, and what the response was, again respecting the privacy of individuals. + +## Appealing a Decision + +To appeal a decision of the CoC Committee, contact the [Committee Co-Chairs](#committee-membership), with your appeal. Please include as much detail as possible about why you are appealing the decision. The Co-Chairs will review the appeal, possibly consulting with the full Committee, and then issue a decision. + +# Timeline Summary: + +| Time | Event | Details | +| ---- | ---- | ---- | +| Within 24 Hours | Acknowledge | The CoC Committee will make every effort to **acknowledge receipt of a report within 24 hours**. | +| Within 3 Days | Review | The CoC Committee aims to **review the incident within three days**. | +| Within 1 Week | Resolve | We will **respond within one week** to the original reporter with either a resolution or an explanation of why the situation is not yet resolved. | + +# Voting and Decision Making + +Committee votes and decisions require both a minimum quorum size for the vote to be counted, and then a minimum percentage of cast affirmative votes to pass. + +Except where otherwise noted, votes require a quorum and a simple majority to pass: + +* Minimum Quorum: + * More than 50% of eligible committee members must vote. + * Eligibile members do not include those excluded because of [conflicts of interest](#conflicts-of-interest). +* Affirmative vote threshold: + * More than 50% of the votes cast need to be affirmative to take action. + +# Committee Membership + +You can reach the entire CoC Committee by emailing [conduct@conda.org](mailto:conduct@conda.org). + +| Name | Employer / Funding | Steering Council Member | Current Term Ends | +| ---- | ---- | ---- | --- | +| [Eric Dill](https://github.com/ericdill) | [Anaconda](https://anaconda.com/) | | 2026-07-01 | +| [Dasha Gurova](https://github.com/dashagurova) | [Anaconda](https://anaconda.com/) | | 2026-07-01 | +| [Bianca Henderson](https://github.com/beeankha) | [Red Hat](https://redhat.com/) | | 2026-07-01 | +| [Katherine Kinnaman](https://github.com/kathatherine) | [Anaconda](https://anadonda.com/) | | 2026-07-01 | +| [Mahe Iram Khan](https://github.com/ForgottenProgramme) | [Anaconda](https://anaconda.com/) | | 2025-07-01 | +| [Ken Odegard](https://github.com/kenodegard) | [Anaconda](https://anaconda.com/) | | 2025-07-01 | +| [Crystal Soja](https://github.com/csoja), Co-Chair | [Anaconda](https://anaconda.com/) | | 2025-07-01 | +| [Jaime Rodríguez-Guerra](https://github.com/jaimergp), Co-Chair | [Quansight](https://quansight.com/) | yes | 2025-07-01 | + +# Terms and New Members + +* Committee members are appointed for two year terms. Committee members can choose to renew their memberships. +* Committee members can resign before their term ends. +* Committee members can also be removed by a [simple majority vote](#voting-and-decision-making) from their fellow committee members. +* New committee members are added by a simple majority vote as well. + +# Eligibility + +Anyone from the community who is interested and able to do CoC Committee work is eligible to be nominated for the committee. New committee members can be nominated by any community member, including nominating themselves. + +## Shared Funding + +Unlike the Steering Council, we are not limiting the number of Committee members who share a common source of funding. However, if a report involves someone who shares funding with CoC Committee members, then the remainder of the committee may vote to exclude some or all Committee members with that same funding, even if that excludes a majority of the CoC Committee. This should be done only if the separately funded Committee members feel that the common funding is interfering with decision making. + +Note: This requires tracking the funding sources of CoC Committee members. + +## Overlap with Steering Council Membership + +Committee members can also be on the conda Organization Steering Council. However, Steering Council members have to make up less than 50% of the Code of Conduct Committee. + +# Updating this Code of Conduct + +The conda Organization's Code of Conduct can be updated by a [simple majority vote](#voting-and-decision-making) of the CoC Committee. + + +# License + +This code of conduct is based on the [NumFOCUS code of conduct template](https://github.com/numfocus/numfocus/blob/8759e21481552f213489e3718979ccecf68e9ead/manual/numfocus-coc.md) as it existed on 2022/03/08 (which is the 2019/11/20 version). Several added sections are based on the [Galaxy Community Code of Conduct](https://galaxyproject.org/community/coc/). + +The NumFOCUS code of conduct template was itself adapted from numerous sources, including the [*Geek Feminism wiki, created by the Ada Initiative and other volunteers, which is under a Creative Commons Zero license*](http://geekfeminism.wikia.com/wiki/Conference_anti-harassment/Policy), the [*Contributor Covenant version 1.2.0*](http://contributor-covenant.org/version/1/2/0/), the [*Bokeh Code of Conduct*](https://github.com/bokeh/bokeh/blob/master/CODE_OF_CONDUCT.md), the [*SciPy Code of Conduct*](https://github.com/jupyter/governance/blob/master/conduct/enforcement.md), the [*Carpentries Code of Conduct*](https://docs.carpentries.org/topic_folders/policies/code-of-conduct.html#enforcement-manual), and the [*NeurIPS Code of Conduct*](https://neurips.cc/public/CodeOfConduct). + +**The conda Organization Code of Conduct is licensed under the [Creative Commons Attribution 3.0 Unported License](https://creativecommons.org/licenses/by/3.0/).** diff --git a/HOW_WE_USE_GITHUB.md b/HOW_WE_USE_GITHUB.md new file mode 100644 index 00000000..8b035792 --- /dev/null +++ b/HOW_WE_USE_GITHUB.md @@ -0,0 +1,357 @@ + +# How We Use GitHub + + +[conda-org]: https://github.com/conda + +[project-refinement]: https://github.com/orgs/conda/projects/22/views/14 +[project-backlog]: https://github.com/orgs/conda/projects/22/views/2 +[project-current-sprint]: https://github.com/orgs/conda/projects/22/views/10 +[project-review]: https://github.com/orgs/conda/projects/16 + +[docs-toc]: https://github.blog/changelog/2021-04-13-table-of-contents-support-in-markdown-files/ +[docs-saved-reply]: https://docs.github.com/en/get-started/writing-on-github/working-with-saved-replies/creating-a-saved-reply + +[infrastructure]: https://github.com/conda/infrastructure +[workflow-sync]: https://github.com/conda/infrastructure/blob/main/.github/workflows/sync.yml +[labels-global]: https://github.com/conda/infrastructure/blob/main/.github/global.yml + + +[workflow-cla]: https://github.com/conda/issue-tracker/blob/main/.github/workflows/cla.yml +[workflow-issues]: https://github.com/conda/issue-tracker/blob/main/.github/workflows/issues.yml +[workflow-labels]: https://github.com/conda/issue-tracker/blob/main/.github/workflows/labels.yml +[workflow-lock]: https://github.com/conda/issue-tracker/blob/main/.github/workflows/lock.yml +[workflow-project]: https://github.com/conda/issue-tracker/blob/main/.github/workflows/project.yml +[workflow-stale]: https://github.com/conda/issue-tracker/blob/main/.github/workflows/stale.yml +[labels-local]: https://github.com/conda/issue-tracker/blob/main/.github/labels.yml +[labels-page]: https://github.com/conda/issue-tracker/labels + +This document seeks to outline how we as a community use GitHub Issues to track bugs and feature requests while still catering to development practices & project management (_e.g._, release cycles, feature planning, priority sorting, etc.). + + +**Topics:** + +- [What is "Issue Sorting"?](#what-is-issue-sorting) +- [Labeling](#labeling) +- [Types of Issues](#types-of-issues) + - [Standard Issue](#standard-issue) + - [Epics](#epics) + - [Spikes](#spikes) +- [Working on Issues](#working-on-issues) +- [Development Processes](#development-processes) +- [Code Review and Merging](#code-review-and-merging) + +> [!NOTE] +> This document is written in the style of an FAQ. For easier navigation, use [GitHub's table of contents feature][docs-toc]. + +## What is "Issue Sorting"? + +> [!NOTE] +> "Issue sorting" is similar to that of "triaging", but we've chosen to use different terminology because "triaging" is a word related to very weighty topics (_e.g._, injuries and war) and we would like to be sensitive to those connotations. Additionally, we are taking a more "fuzzy" approach to sorting (_e.g._, severities may not be assigned, etc.). + +"Issue Sorting" refers to the process of assessing the priority of incoming issues. Below is a high-level diagram of the flow of issues: + +```mermaid +flowchart LR + subgraph flow_sorting [Issue Sorting in Issue Tracker] + state_sorting{{Maintainer sorting}} + end + + subgraph flow_roadmap [Roadmap Board] + board_refinement{{Refinement}} + board_backlog{{Backlog}} + + board_refinement-->board_backlog + board_backlog-- reprioritize -->board_backlog + board_progress{{Current Sprint - In Progress}} + end + + state_new(New Issues) + state_closed(Closed) + + state_new-->state_sorting + state_sorting-- accepted for work -->board_refinement + state_sorting-- duplicate, off-topic, support resolved -->state_closed + board_backlog-- pending work -->board_progress + board_refinement-- not actionable -->state_closed + board_backlog-- resolved, irrelevant -->state_closed + board_progress-- resolved -->state_closed +``` + +### Why sort issues? + +At the most basic "bird's eye view" level, sorted issues will fall into the category of four main priority levels: + +- Do now +- Do sometime +- Provide user support +- Never do (_i.e._, close) + +At its core, sorting enables new issues to be placed into these four categories, which helps to ensure that they will be processed at a velocity similar to or exceeding the rate at which new issues are coming in. One of the benefits of actively sorting issues is to avoid engineer burnout and to make necessary work sustainable; this is done by eliminating a never-ending backlog that has not been reviewed by any maintainers. + +There will always be broad-scope design and architecture implementations that the maintainers will be interested in pursuing; by actively organizing issues, they will be able to more easily track and tackle both specific and big-picture goals. + +### Who does the sorting? + +Core maintainers help with sorting issues, making decisions regarding closing issues and setting feature work priorities, among other sorting-related tasks. + +### How does issue sorting and board intake work? + +New issues that are opened in any of the repositories in the [conda GitHub organization][conda-org] are reviewed in the repository issue tracker first. During sorting in the issue tracker, issues are reviewed for the following outcomes: + +- Mitigation via short-term workarounds and fixes +- Redirection to the correct project +- Determining if support can be provided for errors and questions +- Closing out of any duplicate/off-topic issues + +The core maintainers are not seeking to _resolve_ issues that arise. Instead, the goal is to understand the issue and to determine whether it is legitimate, and then to collect as much relevant information as possible so that the maintainers can make an informed decision about the appropriate resolution schedule. + +Issues can remain in this investigatory phase (_e.g._, querying the user for more details, asking the user to attempt other workarounds, other debugging efforts, etc.) and are likely to remain in this state the longest, but should still be progressing over the course of 1-2 weeks. + +Items are added to the [Refinement tab of the Roadmap Board][project-refinement] once sorting has concluded and the core maintainer has enough information to make a decision about the appropriate resolution schedule for the issue. Newly opened pull requests are automatically added to the [Review board][project-review] by [`.github/workflows/project.yml`][workflow-project]. + +Issues that are not accepted for planned work are closed instead (_e.g._ duplicates, redirects, user errors, resolved support questions, etc.). + +### Where do work issues go after being sorted? + +Once issues are accepted for work, they are added to the ["Refinement" tab of the Roadmap Board][project-refinement]. After refinement and prioritization, issues move to ["Backlog"][project-backlog] and then to ["Current Sprint"][project-current-sprint] when actively being worked. Issues are closed once the work is complete. + +### What is the purpose of having a "Backlog"? + +Issues are "backlogged" when they have been accepted and refined but are not yet planned into the current sprint. + +### What automation procedures are currently in place? + +Global automation procedures synced out from the [`conda/infrastructure`][infrastructure] repo include: + +- [Marking/Closing stale issues and pull requests][workflow-stale]: + - https://github.com/conda/issue-tracker/labels/type%3A%3Asupport issues are labeled as stale after 21 days of inactivity and are closed after 7 more days of inactivity (that is, closed after 30 inactive days total) + - non https://github.com/conda/issue-tracker/labels/type%3A%3Asupport issues are labeled as stale after 365 days of inactivity and are closed after 30 more days of inactivity (that is, closed after an approximate total of 1 year and 1 month of inactivity) + - all pull requests are labeled as stale after 365 days of inactivity and are closed after 30 more days of inactivity (that is, closed after an approximate total of 1 year and 1 month of inactivity) +- [Locking of closed issues and pull requests with no further activity][workflow-lock] after 365 days +- [Adding new pull requests to the Review board][workflow-project] +- [Indicating an issue is ready for a maintainer's attention][workflow-issues] by toggling https://github.com/conda/issue-tracker/labels/pending%3A%3Afeedback with https://github.com/conda/issue-tracker/labels/pending%3A%3Asupport after a contributor leaves a comment +- [Verifying that contributors have signed the CLA][workflow-cla] before allowing pull requests to be merged; if the contributor hasn't signed the CLA previously, merging is blocked until a manual review can be done +- [Syncing out templates, labels, workflows, and documentation][workflow-sync] from [`conda/infrastructure`][infrastructure] to the other repositories + +### Are there any templates to use as responses for commonly-seen issues? + +Some of the same types of issues appear regularly (_e.g._, issues that are duplicates of others, issues that should be filed in the Anaconda issue tracker, errors that are due to a user's specific setup/environment, etc.). + +Below are some boilerplate responses for the most commonly-seen issues to be sorted: + +
+Duplicate Issue + + +
+
+This is a duplicate of [link to primary issue]; please feel free to continue the discussion there.
+
+ + + +> **Warning** +> Apply the https://github.com/conda/issue-tracker/labels/duplicate label to the issue being closed and https://github.com/conda/issue-tracker/labels/duplicate%3A%3Aprimary to the original issue. + +
+ +
+Anaconda Products + + +
+Thank you for filing this issue! Unfortunately, this is off-topic for this repo because it is related to an Anaconda product.
+If you are encountering issues with Anaconda products or services, you have several options for receiving community
+support:
+
+- [Anaconda community forums](https://community.anaconda.cloud)
+- [Anaconda issue tracker on GitHub](https://github.com/ContinuumIO/anaconda-issues/issues)
+
+ + + +> **Warning** +> Apply the https://github.com/conda/issue-tracker/labels/off-topic label to these issues before closing them out. + +
+ +
+General Off Topic + +
+Unfortunately, this issue is outside the scope of support we offer via GitHub or is not directly related to this project.
+Community support can be found elsewhere, though, and we encourage you to explore the following options:
+
+- [Conda discourse forum](https://conda.discourse.group/)
+- [Community chat channels](https://conda.org/community#chat)
+- [Stack Overflow posts tagged "conda"](https://stackoverflow.com/questions/tagged/conda)
+
+ + + +> **Warning** +> Apply the https://github.com/conda/issue-tracker/labels/off-topic label to these issues before closing them out. + +
+ +In order to not have to manually type or copy/paste the above repeatedly, note that it's possible to add text for the most commonly-used responses via [GitHub's "Add Saved Reply" option][docs-saved-reply]. + +## Labeling + +This section covers the labels and conventions used during issue sorting. + +### How does labeling work? + +Labeling is a very important means for core maintainers to keep track of the current state of an issue with regards to the asynchronous nature of communicating with users. Utilizing the proper labels helps to identify the severity of the issue as well as to quickly understand the current state of a discussion. + +Each label has an associated description that clarifies how the label should be used. Hover on the label to see its description. Label colors are used to distinguish labels by category. + +Generally speaking, labels with the same category are considered mutually exclusive, but in some cases labels sharing the same category can occur concurrently, as they indicate qualifiers as opposed to types. For example, we may have the following types, https://github.com/conda/issue-tracker/labels/type%3A%3Abug, https://github.com/conda/issue-tracker/labels/type%3A%3Afeature, and https://github.com/conda/issue-tracker/labels/type%3A%3Adocumentation, where for any one issue there would be _at most_ **one** of these to be defined (_i.e._ an issue should not be a bug _and_ a feature request at the same time). Alternatively, with issues involving specific operating systems (_i.e._, https://github.com/conda/issue-tracker/labels/os%3A%3Alinux, https://github.com/conda/issue-tracker/labels/os%3A%3Amacos, and https://github.com/conda/issue-tracker/labels/os%3A%3Awindows), an issue could be labeled with one or more, depending on the system(s) the issue occurs on. + +Please note that there are also automation policies in place that are affected by labeling. For example, if an issue is labeled as https://github.com/conda/issue-tracker/labels/type%3A%3Asupport, that issue will be marked https://github.com/conda/issue-tracker/labels/stale after 21 days of inactivity and auto-closed after seven more days without activity (30 inactive days total), which is earlier than issues without this label. See [What automation procedures are currently in place?](#what-automation-procedures-are-currently-in-place) for more details. + +### What labels are required for each issue? + +At minimum, both `type` and `source` labels should be specified on each issue before adding it to the "Refinement" tab of the Roadmap Board. All issues that are bugs should also be tagged with a `severity` label. + +The `type` labels are exclusive of each other: each sorted issue should have exactly one `type` label. These labels give high-level information on the issue's classification (_e.g._, bug, feature, tech debt, etc.) + +The `source` labels are exclusive of each other: each sorted issue should have exactly one `source` label. These labels give information on the sub-group to which the issue's author belongs (_e.g._, a partner, a frequent contributor, the wider community, etc.). Through these labels, maintainers gain insight into how well we're meeting the needs of various groups. + +The `severity` labels are exclusive of each other and, while required for the https://github.com/conda/issue-tracker/labels/type%3A%3Abug label, they can also be applied to other types to indicate demand or need. These labels help us to prioritize our work. Severity is not the only factor for work prioritization, but it is an important consideration. + +Please review the descriptions of the `type`, `source`, and `severity` labels on the [labels page][labels-page] prior to use. + +### How are new labels defined? + +Labels are defined using a scoped syntax with an optional high-level category (_e.g._, `source`, `tag`, `type`, etc.) and a specific topic, much like the following: + +- `[topic]` +- `[category::topic]` +- `[category::topic-phrase]` + +This syntax helps with issue sorting enforcement, as it helps to ensure that sorted issues are, at minimum, categorized by type and source. + +There are a number of labels that have been defined for the different repositories. In order to create a streamlined sorting process, label terminologies are standardized using similar (if not the same) labels. + +### How are new labels added? + +New **global** labels (_i.e._, labels that apply equally to all repositories within the conda GitHub organization) are added to [`conda/infrastructure`][infrastructure]'s [`.github/global.yml` file][labels-global]; new **local** labels (_i.e._, labels specific to particular repositories) are added to each repository's [`.github/labels.yml` file][labels-local]. All new labels should follow the labeling syntax described in ["How are new labels defined?"](#how-are-new-labels-defined). Global labels are combined with any local labels and these aggregated labels are used by the [`.github/workflows/labels.yml` workflow][workflow-labels] to synchronize the labels available for the repository. + +## Types of Issues + +### Standard Issue + +Standard issues represent typical bug reports, feature requests, or other work items that have a clear definition and expected outcome. + +### Epics + +Epics are large work items that can be broken down into smaller, more manageable issues. They typically represent major features or significant changes that span multiple iterations or releases. Relate the smaller issues to the epic using the sub-issues feature in GitHub. + +### Spikes + +#### What is a spike? + +"Spike" is a term that is borrowed from extreme programming and agile development. They are used when the **outcome of an issue is unknown or even optional**. For example, when first coming across a problem that has not been solved before, a project may choose to either research the problem or create a prototype in order to better understand it. + +Additionally, spikes represent work that **may or may not actually be completed or implemented**. An example of this are prototypes created to explore possible solutions. Not all prototypes are implemented and the purpose of creating a prototype is often to explore the problem space more. For research-oriented tasks, the end result of this research may be that a feature request simply is not viable at the moment and would result in putting a stop to that work. + +Finally, spikes are usually **timeboxed**. However, given the open source/volunteer nature of our contributions, we do not enforce this for our contributors. When a timebox is set, this means that we are limiting how long we want someone to work on said spike. We do this to prevent contributors from falling into a rabbit hole they may never return from. Instead, we set a time limit to perform work on the spike and then have the assignee report back. If the tasks defined in the spike have not yet been completed, a decision is made on whether it makes sense to perform further work on the spike. + +#### When do I create a spike? + +A spike should be created when we do not have enough information to move forward with solving a problem. That simply means that, whenever we are dealing with unknowns or processes the project team has never encountered before, it may be useful for us to create a spike. + +In day-to-day work, this kind of situation may appear when new bug reports or feature requests come in that deal with problems or technologies that the project team is unfamiliar with. All issues that the project team has sufficient knowledge of should instead proceed as regular issues. + +#### When do I not create a spike? + +Below are some common scenarios where creating a spike is not appropriate: + +- Writing a technical specification for a feature we know how to implement +- Design work that would go into drafting how an API is going to look and function +- Any work that must be completed or is not optional + +## Working on Issues + +### How do I assign myself to an issue I am actively reviewing? + +If you do **not** have permissions, please indicate that you are working on an issue by leaving a comment. Someone who has permissions will assign you to the issue. If two weeks have passed without a pull request or an additional comment requesting information, you may be removed from the issue and the issue reassigned. + +If you are assigned to an issue but will not be able to continue work on it, please comment to indicate that you will no longer be working on it and press `unassign me` next to your username in the `Assignees` section of the issue page (top right). + +If you **do** have permissions, please assign yourself to the issue by pressing `assign myself` under the `Assignees` section of the issue page (top right). + +## Development Processes + +The following are practices the conda organization encourages for feature +development. While we recommend projects under the conda organization adopt +these practices, they are not strictly required. + +### How should we approach feature development? + +For new features, first open an issue if one doesn’t exist. Once the feature request +has been accepted (indicated by the issue's status transitioning from "Sorting" to +"Refinement"), create a specification to gather early feedback. This can include +mockups, API/command references, a written plan in the issue, and sample CLI +arguments (without functionality). + +### What is our change process? + +For larger features, break down the work into smaller, manageable issues +that are added to the backlog. As long as a feature remains on the roadmap +or backlog, do not create long-lived feature branches that span multiple +pull requests. Instead, you should integrate small slices of an overall +feature directly into the main branch to avoid complex integration challenges. + +### Should we make unrelated changes at the same time? + +When making changes, try to follow the Campsite Rule to leave things better +than when you found them. You should enhance the code you encounter, even if +primary goal is unrelated. This could involve refactoring small sections, +improving readability, or fixing minor bugs. + +## Code Review and Merging + +### What are the review requirements? + +#### Standard Review + +Most code changes require one reviewer from someone on the maintainer team for +the repository. Instead of waiting for someone on the team to review it, +directly requesting a review from the person you previously identified to work +with is preferred to optimize teamwork. If you paired with them during +development, continuous review counts as this requirement. + +#### Second Review + +Required only when the code author or the first reviewer feels like it is +necessary to get another set of eyes on a proposed change. In this case, they +add someone specific through GitHub's Request Review feature with a comment on +what they want the person to look for. + +### What are the code review best practices? + +If you are conducting a review, adhere to these best practices: + +- Provide comprehensive feedback in the first review to minimize review rounds +- Reserve Request Changes for blocking issues (bugs or other major problems) — + Select Comment for suggestions and improvements +- Follow-up reviews should focus on whether requested changes resolve original + comments +- Code should be production-ready and maintainable when merged, but doesn't + need to be perfect +- If providing feedback outside the core review focus (nitpicks, tips, + suggestions), clearly mark these as non-blocking comments that don't need to + be addressed before merging. + +### How do we merge code? + +If you are the approving reviewer (typically the first reviewer, or the second +reviewer when needed) and you have completed your review and approved the +changes, you should merge the code immediately to maintain development +velocity. + +Normally, we use squash and merge to keep a clean git history. If you are +merging a pull request, help ensure that the pull request title is updated. diff --git a/LICENSE b/LICENSE index 5f0717a5..bbe84290 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 Ken Odegard +Copyright (c) 2021 conda Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/history.py b/history.py index 899c38cd..711b7649 100755 --- a/history.py +++ b/history.py @@ -6,6 +6,7 @@ Normally this should not be used. This is ideally only used to generate the initial historical data points for repos that have not been previously tracked. """ + import argparse import json import time @@ -329,6 +330,6 @@ def write_snapshots(self, out, rate, trim=None): h.write_repos() h.write_snapshots("recent", rate=1, trim=72) # every hour, keep 3 days worth - h.write_snapshots("month", rate=3, trim=248) # every 3 hours, keep 31 days worth + # h.write_snapshots("month", rate=3, trim=248) # every 3 hours, keep 31 days worth h.write_snapshots("year", rate=24, trim=366) # every day, keep 366 days worth h.write_snapshots("alltime", rate=72) # every 3 days, keep everything diff --git a/index.html b/index.html index 80136f6d..0a542f32 100644 --- a/index.html +++ b/index.html @@ -118,7 +118,7 @@

All Time Overview

- + diff --git a/index.js b/index.js index 48ef053b..1ee19e3f 100644 --- a/index.js +++ b/index.js @@ -1,6 +1,6 @@ import {repos} from "./snapshots/repos.js"; const {default: recent} = await import("./snapshots/recent.js"); -const {default: month} = await import("./snapshots/month.js"); +// const {default: month} = await import("./snapshots/month.js"); const {default: year} = await import("./snapshots/year.js"); const {default: alltime} = await import("./snapshots/alltime.js"); @@ -35,10 +35,10 @@ async function setRepo(path) { // update diff of recent changes setDiff(path, recent); - // // recent chart + // recent chart // generateChart("hourChart", path, recent, "day"); - // // month chart + // month chart // generateChart("monthChart", path, month, "day"); // year chart diff --git a/package-lock.json b/package-lock.json index 3cf22a65..27d28083 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,31 +10,46 @@ "license": "MIT", "dependencies": { "@actions/core": "^1.6.0", - "http-server": "^14.0.0", + "http-server": "^14.1.1", "luxon": "^2.1.1", "node-fetch": "^2.6.6" } }, "node_modules/@actions/core": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.6.0.tgz", - "integrity": "sha512-NB1UAZomZlCV/LmJqkLhNTqtKfFXJZAUPcfl/zqG7EfsQdeUJtaWO98SGbuQ3pydJ3fHl2CvI/51OKYlCYYcaw==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.10.0.tgz", + "integrity": "sha512-2aZDDa3zrrZbP5ZYg159sNoLRb61nQ7awl5pSvIq5Qpj81vwDzdMRKzkWJGJuwVvWpvZKx7vspJALyvaaIQyug==", "dependencies": { - "@actions/http-client": "^1.0.11" + "@actions/http-client": "^2.0.1", + "uuid": "^8.3.2" } }, "node_modules/@actions/http-client": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-1.0.11.tgz", - "integrity": "sha512-VRYHGQV1rqnROJqdMvGUbY/Kn8vriQe/F9HR2AlYHzmKuM/p3kjNuXhmdBfcVgsvRWTz5C5XW5xvndZrVBuAYg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-2.0.1.tgz", + "integrity": "sha512-PIXiMVtz6VvyaRsGY268qvj57hXQEpsYogYOu2nrQhlf+XCGmZstmuZBbAybUl1nQGnvS1k1eEsQ69ZoD7xlSw==", "dependencies": { - "tunnel": "0.0.6" + "tunnel": "^0.0.6" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/async": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", - "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", "dependencies": { "lodash": "^4.17.14" } @@ -62,14 +77,37 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", - "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": ">=0.1.90" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, "node_modules/corser": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz", @@ -92,9 +130,9 @@ "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" }, "node_modules/follow-redirects": { - "version": "1.14.5", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.5.tgz", - "integrity": "sha512-wtphSXy7d4/OR+MvIFbCVBDzZ5520qV8XfPklSN5QtxuMUJZ+b0Wnst1e1lCDocfzuCkHqj8k0FpZqO+UIaKNA==", + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", "funding": [ { "type": "individual", @@ -139,6 +177,14 @@ "node": ">= 0.4.0" } }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, "node_modules/has-symbols": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", @@ -183,18 +229,18 @@ } }, "node_modules/http-server": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/http-server/-/http-server-14.0.0.tgz", - "integrity": "sha512-XTePIXAo5x72bI8SlKFSqsg7UuSHwsOa4+RJIe56YeMUvfTvGDy7TxFkTEhfIRmM/Dnf6x29ut541ythSBZdkQ==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/http-server/-/http-server-14.1.1.tgz", + "integrity": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==", "dependencies": { "basic-auth": "^2.0.1", - "colors": "^1.4.0", + "chalk": "^4.1.2", "corser": "^2.0.1", "he": "^1.2.0", "html-encoding-sniffer": "^3.0.0", "http-proxy": "^1.18.1", "mime": "^1.6.0", - "minimist": "^1.2.5", + "minimist": "^1.2.6", "opener": "^1.5.1", "portfinder": "^1.0.28", "secure-compare": "3.0.1", @@ -244,9 +290,9 @@ } }, "node_modules/minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" }, "node_modules/mkdirp": { "version": "0.5.5", @@ -265,14 +311,22 @@ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" }, "node_modules/node-fetch": { - "version": "2.6.6", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.6.tgz", - "integrity": "sha512-Z8/6vRlTUChSdIgMa51jxQ4lrw/Jy5SOW10ObaA47/RElsAN2c5Pn8bTgFGWn/ibwzXTE8qwr1Yzx28vsecXEA==", + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", "dependencies": { "whatwg-url": "^5.0.0" }, "engines": { "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, "node_modules/object-inspect": { @@ -351,6 +405,17 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", @@ -380,6 +445,14 @@ "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz", "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==" }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, "node_modules/webidl-conversions": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", @@ -408,25 +481,34 @@ }, "dependencies": { "@actions/core": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.6.0.tgz", - "integrity": "sha512-NB1UAZomZlCV/LmJqkLhNTqtKfFXJZAUPcfl/zqG7EfsQdeUJtaWO98SGbuQ3pydJ3fHl2CvI/51OKYlCYYcaw==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.10.0.tgz", + "integrity": "sha512-2aZDDa3zrrZbP5ZYg159sNoLRb61nQ7awl5pSvIq5Qpj81vwDzdMRKzkWJGJuwVvWpvZKx7vspJALyvaaIQyug==", "requires": { - "@actions/http-client": "^1.0.11" + "@actions/http-client": "^2.0.1", + "uuid": "^8.3.2" } }, "@actions/http-client": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-1.0.11.tgz", - "integrity": "sha512-VRYHGQV1rqnROJqdMvGUbY/Kn8vriQe/F9HR2AlYHzmKuM/p3kjNuXhmdBfcVgsvRWTz5C5XW5xvndZrVBuAYg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-2.0.1.tgz", + "integrity": "sha512-PIXiMVtz6VvyaRsGY268qvj57hXQEpsYogYOu2nrQhlf+XCGmZstmuZBbAybUl1nQGnvS1k1eEsQ69ZoD7xlSw==", + "requires": { + "tunnel": "^0.0.6" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "requires": { - "tunnel": "0.0.6" + "color-convert": "^2.0.1" } }, "async": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", - "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", "requires": { "lodash": "^4.17.14" } @@ -448,10 +530,27 @@ "get-intrinsic": "^1.0.2" } }, - "colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", - "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==" + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "corser": { "version": "2.0.1", @@ -472,9 +571,9 @@ "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" }, "follow-redirects": { - "version": "1.14.5", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.5.tgz", - "integrity": "sha512-wtphSXy7d4/OR+MvIFbCVBDzZ5520qV8XfPklSN5QtxuMUJZ+b0Wnst1e1lCDocfzuCkHqj8k0FpZqO+UIaKNA==" + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==" }, "function-bind": { "version": "1.1.1", @@ -499,6 +598,11 @@ "function-bind": "^1.1.1" } }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, "has-symbols": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", @@ -528,18 +632,18 @@ } }, "http-server": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/http-server/-/http-server-14.0.0.tgz", - "integrity": "sha512-XTePIXAo5x72bI8SlKFSqsg7UuSHwsOa4+RJIe56YeMUvfTvGDy7TxFkTEhfIRmM/Dnf6x29ut541ythSBZdkQ==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/http-server/-/http-server-14.1.1.tgz", + "integrity": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==", "requires": { "basic-auth": "^2.0.1", - "colors": "^1.4.0", + "chalk": "^4.1.2", "corser": "^2.0.1", "he": "^1.2.0", "html-encoding-sniffer": "^3.0.0", "http-proxy": "^1.18.1", "mime": "^1.6.0", - "minimist": "^1.2.5", + "minimist": "^1.2.6", "opener": "^1.5.1", "portfinder": "^1.0.28", "secure-compare": "3.0.1", @@ -571,9 +675,9 @@ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" }, "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" }, "mkdirp": { "version": "0.5.5", @@ -589,9 +693,9 @@ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" }, "node-fetch": { - "version": "2.6.6", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.6.tgz", - "integrity": "sha512-Z8/6vRlTUChSdIgMa51jxQ4lrw/Jy5SOW10ObaA47/RElsAN2c5Pn8bTgFGWn/ibwzXTE8qwr1Yzx28vsecXEA==", + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", "requires": { "whatwg-url": "^5.0.0" } @@ -654,6 +758,14 @@ "object-inspect": "^1.9.0" } }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + }, "tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", @@ -677,6 +789,11 @@ "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz", "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==" }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + }, "webidl-conversions": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", diff --git a/package.json b/package.json index 9095af8c..af870916 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "url": "git+https://github.com/conda/issue-tracker.git" }, "keywords": [], - "author": "kenodegard", + "author": "conda", "license": "MIT", "bugs": { "url": "https://github.com/conda/issue-tracker/issues" @@ -20,7 +20,7 @@ "type": "module", "dependencies": { "@actions/core": "^1.6.0", - "http-server": "^14.0.0", + "http-server": "^14.1.1", "luxon": "^2.1.1", "node-fetch": "^2.6.6" } diff --git a/snapshots/alltime.js b/snapshots/alltime.js index 2de6ee16..61778f42 100644 --- a/snapshots/alltime.js +++ b/snapshots/alltime.js @@ -1,2 +1,2 @@ -const alltime = {"conda/conda":[1537,1538,1535,1536,1539,1542,1540,1627,1626,1622,1617,1621,1633,1633,1629,1632,1637,1661,1750,1806,1802,1793,1790,1790,1792,1793,1788,1785,1783,1785,1781,1774,1775,1774,1773,1772,1772,1772,1770,1768,1764,1761,1755,1754,1751,1748,1746,1746,1742,1743,1804,1962,1966,1967,1966,1966,1963,1962,1960,1960,1956,1954,1954,1950,1956,1947,1941,1940,1935,1933,1932,1929,1936,1933,1929,1927,1928,1926,1925,1925,1927,1927,1926,1926,1922,1920,1919,1924,1918,1914,1910,1907,1905,1899,1892,1890,1885,1883,1882,1878,1875,1871,1869,1875,1871,1869,1867,1866,1885,1883,1878,1871,1870,1867,1860,1860,1856,1853,1849,1845,1842,1839,1834,1833,1823,1820,1815,1811,1811,1804,1803,1803,1799,1795,1792,1789,1788,1785,1779,1776,1772,1769,1767,1765,1766,1757,1759,1754,1753,1750,1745,1742,1742,1741,1733,1729,1727,1726,1723,1721,1718,1715,1711,1707,1704,1704,1700,1695,1691,1687,1682,1685,1683,1677,1672,1666,1662,1658,1653,1650,1643,1641,1636,1632,1627,1620,1619,1613,1613,1613,1613,1614,1609,1604,1602,1601,1592,1586,1583,1578,1573,1572,1567,1566,1562,1559,1550,1550,1546,1545,1542,1534,1536,1537,1532,1528,1522,1519,1517,1515,1511,1508,1502,1496,1490,1487,1486,1480,1474,1466,1464,1456,1455,1455,1447,1444,1444,1441,1434,1428,1424,1453,1450,1443,1438,1430,1427,1427,1421,1418,1408,1403,1398,1396,1390,1383,1379,1374,1373,1367,1361,1355,1347,1345,1340,1336,1329,1324,1320,1312,1309,1306,1305,1297,1295,1291,1291,1284,1296,1296,1292,1294,1293,1296,1298,1292,1282,1270,1264,1264,1264,1261,1262,1263,1260,1257,1251,1250,1247,1244,1242,1242,1236,1228,1220,1217,1209,1208,1209,1209,1203,1201,1196,1189,1184,1176,1171,1172,1170,1170,1173,1166,1163,1154,1150,1146,1142,1128,1123,1112,1109,1106,1095,1093,1086,1083,1081,1070,1075,1076,1070,1061,1062,1050,1048,1042,1041,1042,1037,1034,1033,1030,1030,1023,1020,1010,995,990,984,977,970,970,970,967,964,954,956,951,947,943,945,929,925,924,917,914,912,907,902,897,893,890,892,888,882,877,871,865,860,859,855,852,829,821,814,810,807,799,795,789,781,780,778,776,774,773,770,772,769,767,767,765,761,759,757,757,749,748,747,741,737,735,734,720,720,711,696,689,683,681,674,666,661,658,651,664,659,661,659,650,639,636,644,639,632,621,616,613,606,604,598,593,588,589,592,578,574,572,567,569,563,558,556,551,543,538,534,530,514,508,506,508,509,507,493,489,484,479,475,473,470,465,460,459,460,457,453,451,459,456,471,468,462,461,452,444,438,432,429,430,424,417,407,401,447,438,530,525,519,525,522,525,527,518,521,557,657,656,676,672,671,654,656,647,630,626,627,610,604,594,590,585,566,566,562,551,545,540,534,528,531,525,528,524,515,512,507,504,528,529,520,584,571,573,575,572,555,544,549,542,528,522,515,504,500,488,484,464,456,452,459,454,443,438,425,423,416,409,401,395,391,385,374,368,350,347,339,331,343,330,321,309,306,304,303,326,328,318,312,312,311,338,488,734,1041,1350,1387,1472,1468,1491,1483,1475,1459,1459,1449,1447,1442,1433,1425,1409,1405,1390,1378,1363,1358,1356,1363,1361,1368,1357,1345,1343,1328,1298,1283,1266,1251,1256,1272,1271,1254,1249,1233,1228,1216,1207,1203,1198,1194,1190,1188,1182,1167,1161,1153,1147,1129,1117,1112,1112,1117,1107,1106,1103,1097,1097,1100,1092,1105,1129,1123,1116,1124,1122,1115,1105,1096,1078,1074,1048,1034,1028,1024,1021,1021,1016,1013,1006,1001,993,993,987,985,976,972,973,973,971,965,963,969,959,946,938,931,924,916,909,902,910,900,892,871,866,865,861,857,848,846,840,835,825,819,817,805,810,812,809,800,795,789,792,786,778,776,774,770,770,764,763,760,757,751,747,776,780,771,759,759,755,748,741,735,731,713,709,700,694,687,677,674,665,662,655,655,652,650,650,648,649,652,651,649,645,644,635,631,624,616,613,611,608,593,586,577,578,569,555,546,538,536,529,525,520,515,511,509,506,502,503,501,503,501,495,488,478,476,476,470,467,461,461,472,467,460,454,451,442,437,436,441,435,432,431,429,427,421,418,413,412,407,405,402,400,399,395,391,390,386,386,393,392,392,387,387,381,379,380,376,372,368,366,363,362,356,352,343,341,338,332,331,322,320,315,310,307,304,303,301,302,300,298,296,296,296,291,292,291,291,290,283,285,285,283,281,278,275,272,271,269,269,266,268,265,263,259,256,252,246,245,245,248,244,243,242,240,237,237,238,236,234,229,228,225,220,217,212,205,204,200,205,204,204,203,201,202,200,197,195,207,207,207,202,202,203,201,197,196,194,191,193,196,197,193,190,191,189,181,178,176,174,174,173,171,170,171,171,169,168,167,168,166,164,165,164,162,159,157,153,153,152,149,147,139,138,135,133,128,131,129,126,123,120,119,119,124,124,120,120,121,119,119,117,116,112,113,107,103,103,103,103,118,128,129,147,148,153,151,144,145,139,133,132,128,124,123,122,120,117,115,109,108,105,100,99,92,91,88,93,93,94,97,96,99,94,93,93,95,89,86,86,87,88,86,87,86,84,82,79,80,82,79,78,77,75,75,78,76,79,87,86,83,80,80,82,78,78,81,80,76,72,73,70,65,58,50,46,45,45,47,50,44,51,55,55,55,54,53,49,38,36,36,33,32,32,36,35,34,35,29,28,26,26,26,23,21,20,20,20,18,19,9,8,7,6,6,15,13,12,12,12,12,9,12,8,4,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"conda/menuinst":[22,22,22,22,22,22,22,22,22,22,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,19,19,19,19,19,19,19,19,19,19,19,19,19,18,18,18,18,18,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,19,19,19,19,20,20,20,20,20,20,20,20,20,20,20,20,19,19,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,17,16,16,15,15,15,15,15,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,11,10,10,10,10,10,10,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8,8,8,8,8,8,8,8,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,3,2,1,1,1,1,1,2,1],"conda/pycosat":[16,16,16,16,16,16,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,17,17,17,17,17,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,16,16,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,15,15,15,15,15,15,15,15,15,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,11,11,11,11,11,11,11,11,11,11,13,13,13,13,13,13,13,13,13,13,13,13,13,8,8,8,7,7,7,7,7,7,7,7,6,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1],"conda/conda-build":[799,798,796,796,796,795,794,793,792,792,789,789,790,790,790,790,790,789,792,835,834,833,834,834,835,835,835,830,830,828,827,827,827,826,825,825,825,824,824,823,823,824,824,824,824,824,825,826,826,824,827,826,826,826,825,825,825,825,823,824,823,822,822,820,820,819,819,818,815,815,814,813,812,810,810,810,810,810,810,810,809,809,808,807,805,803,801,801,799,797,798,797,796,794,793,793,793,793,793,790,790,790,790,790,790,789,789,790,794,794,793,793,792,792,791,790,789,789,788,787,787,787,788,788,788,788,786,786,785,785,784,783,781,781,780,779,777,775,773,774,772,772,771,772,772,771,770,767,767,766,766,764,764,764,763,762,761,760,760,760,759,759,759,759,760,758,758,758,757,757,758,759,759,758,757,756,756,756,755,753,754,755,754,753,753,752,751,748,748,747,748,748,748,746,744,743,741,740,738,737,736,737,737,734,733,733,733,733,731,731,729,729,730,727,727,726,726,724,723,721,721,721,719,719,717,716,716,715,715,713,712,708,706,705,702,702,702,701,701,701,701,703,702,703,704,702,701,701,702,704,702,701,698,698,698,695,696,695,694,693,693,692,692,692,692,691,692,690,689,688,687,684,683,683,683,682,682,679,677,677,678,678,678,678,678,676,678,677,675,675,675,675,674,674,673,671,671,670,670,667,665,665,665,665,663,663,661,660,658,657,654,654,653,653,653,651,650,649,651,652,652,652,653,653,652,646,645,642,639,637,635,632,628,627,626,628,625,623,621,620,617,615,614,610,607,607,599,598,596,595,595,594,593,592,592,591,588,590,587,584,584,582,582,582,583,582,581,580,578,580,580,582,582,583,584,584,581,581,579,578,579,575,575,572,574,573,574,573,571,570,568,568,566,564,562,562,560,558,558,555,557,555,555,554,555,554,552,551,546,548,546,547,544,544,545,543,545,543,544,543,541,546,542,542,541,540,542,539,539,537,535,540,536,535,534,530,527,528,529,527,524,522,526,527,527,522,520,523,522,520,513,509,508,506,506,505,508,505,505,499,497,497,494,490,487,487,487,485,485,485,482,480,478,474,474,470,486,480,481,476,477,480,478,472,472,471,469,470,469,468,467,466,464,461,462,474,472,471,468,467,464,462,465,459,457,457,455,452,450,450,450,448,448,452,461,461,461,456,454,449,448,449,448,453,452,448,445,444,445,445,450,451,447,450,449,449,448,450,448,445,441,441,440,443,441,441,440,436,434,436,436,434,434,438,436,435,431,430,428,429,426,424,421,425,425,421,422,419,419,417,417,418,418,416,423,419,418,415,411,410,405,411,415,410,408,405,407,407,405,400,395,398,398,404,406,405,403,401,402,401,399,397,397,398,392,386,382,377,379,374,376,375,374,375,369,368,368,364,370,369,367,372,367,366,365,361,358,366,364,367,369,369,371,367,363,368,365,359,358,363,360,354,355,353,349,352,350,350,347,355,352,352,354,355,350,350,351,353,350,349,349,348,350,347,346,346,347,351,345,345,348,345,348,344,350,346,343,342,346,342,336,336,337,336,335,331,326,328,329,329,327,326,323,321,319,318,314,315,314,315,310,314,306,306,308,323,320,308,302,303,304,302,296,293,289,290,284,284,283,280,279,279,280,277,281,290,289,287,286,282,277,274,273,273,273,271,272,270,267,266,262,261,259,258,255,254,251,253,254,252,248,246,244,242,240,241,238,235,235,233,233,232,231,232,232,231,230,232,232,238,236,236,236,235,235,234,235,229,229,228,226,223,222,220,217,216,213,213,211,208,208,207,203,202,200,197,195,190,189,188,187,186,187,189,188,183,181,183,188,183,180,180,178,177,173,172,170,165,163,162,161,159,156,155,154,153,152,151,151,150,149,151,152,153,154,153,154,153,148,145,143,142,142,142,140,138,136,136,136,135,135,134,131,131,128,125,126,128,127,123,123,123,123,123,122,122,117,117,117,118,118,118,117,116,116,116,115,113,113,112,111,111,109,109,109,106,105,105,105,104,104,104,103,102,100,100,98,98,96,95,93,92,91,91,91,90,89,87,84,84,85,83,83,81,80,81,81,80,79,78,80,80,80,80,81,79,78,78,78,79,79,79,74,73,73,73,73,73,71,71,71,71,69,64,64,63,62,60,59,59,59,58,59,59,58,58,59,59,59,57,54,54,52,52,51,50,50,49,50,48,47,47,47,44,45,46,44,44,44,44,41,40,38,37,36,37,36,33,31,30,29,28,28,27,23,20,19,17,16,13,11,8,7,4,2],"conda/conda-docs":[7,7,7,8,8,8,8,8,8,7,7,7,8,8,8,9,9,8,8,8,8,8,8,8,8,8,8,8,8,6,6,6,6,6,6,6,6,6,6,6,5,5,5,4,4,4,4,5,5,4,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,37,37,37,37,37,37,37,37,37,37,37,37,36,36,36,34,34,34,34,34,34,34,34,34,34,34,34,34,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,34,34,34,34,34,34,34,33,33,33,33,32,32,32,32,32,32,32,33,33,33,33,33,33,34,33,33,33,33,32,32,32,32,31,31,31,31,29,29,29,29,29,29,29,29,29,29,29,28,27,27,27,27,27,26,26,26,26,25,24,24,24,24,24,24,23,23,24,25,25,25,25,25,25,24,24,24,24,24,24,24,24,24,24,24,24,24,24,23,23,23,23,23,23,23,23,23,23,23,23,23,22,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,21,22,22,22,21,21,21,21,21,22,22,22,22,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,21,20,20,20,20,20,20,20,20,19,20,20,20,20,20,20,20,20,20,20,20,19,19,19,18,18,18,18,18,18,18,18,20,20,20,20,20,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,17,17,16,16,16,16,16,16,17,17,17,17,17,17,16,16,16,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14,14,14,14,13,13,13,13,13,13,13,11,10,10,10,10,10,10,10,10,9,9,9,9,9,8,8,8,8,8,8,7,7,7,7,7,7,7,7,6,6,6,5,5,5,5,5,5,5,5,6,5,5,4,4,4,4,4,4,4,4,3,3,4,4,4,4,3,3,4,4,4,3,3,3,1,1,1,1,2,2,2,2,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8,8,8,8,8,8,7,6,6,6,6,6,4,4,4,4,4,4,4,4,3,3,3,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,6,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1],"conda/constructor":[50,50,50,49,49,48,48,48,48,48,49,50,49,49,49,49,49,48,48,48,48,49,49,49,49,49,49,49,48,48,48,48,49,47,46,47,49,50,50,49,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,49,49,49,48,47,47,47,47,45,45,44,43,43,42,41,41,41,41,41,41,41,41,41,41,41,41,41,40,40,40,40,40,39,39,39,39,39,39,39,39,39,39,39,39,39,38,38,37,37,37,37,37,37,37,37,37,36,36,36,36,36,36,36,36,36,36,36,36,36,37,36,34,34,34,34,34,33,33,33,33,33,33,32,32,34,33,32,32,32,32,32,32,31,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,28,30,30,30,29,27,30,30,30,29,29,28,28,29,28,28,27,26,26,24,25,24,40,83,83,81,79,79,79,81,82,81,81,85,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,83,83,83,82,82,82,82,82,82,82,82,82,82,81,81,81,81,81,81,81,81,81,80,79,79,79,79,80,80,80,80,80,80,80,80,80,80,80,80,80,79,79,79,79,79,79,79,79,79,78,77,77,78,77,77,77,77,77,77,77,77,76,76,76,76,76,76,76,76,76,76,76,75,74,74,76,76,76,76,77,76,74,74,73,73,73,74,72,72,70,69,68,68,69,68,68,69,70,70,71,71,71,71,71,71,71,71,70,69,68,65,63,64,62,62,62,62,62,62,62,62,62,62,62,62,60,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,64,64,63,63,63,63,65,64,63,63,63,63,62,63,62,63,63,62,62,62,62,62,62,62,61,61,61,61,60,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,60,60,60,59,59,59,59,59,59,59,60,60,60,60,60,60,60,60,60,61,59,58,58,57,57,57,57,56,56,56,56,56,56,56,56,56,57,57,57,57,57,57,58,58,58,58,57,58,58,58,58,58,58,56,56,55,55,54,54,53,52,52,52,52,52,52,53,54,54,53,53,53,53,52,52,52,52,52,52,52,52,53,53,53,53,53,53,53,53,52,51,51,51,51,51,51,51,50,50,49,49,49,49,49,51,56,53,52,50,49,49,45,44,44,44,44,44,44,44,44,42,42,41,40,40,40,39,39,38,38,34,35,37,37,37,37,37,37,37,37,37,37,36,36,36,35,34,35,33,33,32,32,32,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,30,28,27,27,23,22,22,23,23,21,21,21,21,21,21,20,20,20,20,20,18,18,18,18,18,18,18,18,18,17,17,17,17,17,17,17,18,18,17,17,17,17,17,17,17,16,16,17,16,16,16,15,15,15,15,15,15,15,15,15,14,14,12,12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,10,10,10,10,10,11,10,10,10,10,10,10,10,10,10,10,10,10,9,9,9,9,8,8,8,8,9,9,10,10,10,10,10,10,11,10,8,8,7,7,7,7,8,10,8,11,10,11,11,11,8,5,5,5,5,5,5,5,5,5,5,4,4,4,4,5,4,4,4,4,4,4,4,4,4,8,8,8,8,5,4,4,6,6,3,3,3,3,0,1,1],"conda/conda-verify":[11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,5,5,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,3,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,5,5,5,5,5,5,5,5,5,5,7,7,6,6,6,6,6,6,6,6,6,6,6,6,7,6,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"conda/cookiecutter-conda-python":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"conda/conda-pack":[33,33,33,33,33,34,34,34,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,35,36,36,36,35,35,35,35,35,35,35,35,35,34,34,34,34,34,34,34,33,33,33,33,32,32,32,32,32,32,32,32,31,31,31,31,31,31,31,31,31,30,30,28,28,28,28,27,27,27,27,27,27,27,27,27,26,25,25,25,25,24,24,24,24,24,24,24,25,25,25,25,25,25,25,25,24,23,22,22,22,22,22,22,22,22,20,20,20,20,20,22,22,23,22,21,21,20,20,20,20,19,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,15,15,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,13,13,12,12,12,12,12,12,12,12,12,16,15,15,14,14,13,13,13,13,13,13,13,13,13,13,13,13,13,14,19,19,21,21,26,26,27,27,27,27,27,27,26,26,25,24,24,23,22,22,21,21,21,21,20,20,30,30,30,30,30,31,31,29,29,29,29,29,29,29,29,29,29,27,27,26,22,22,22,22,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,20,20,21,21,20,20,19,19,19,19,19,19,18,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,16,16,16,16,16,15,15,15,15,15,15,15,15,15,14,14,14,14,14,13,13,14,13,11,11,11,11,11,10,10,10,10,11,10,9,9,9,13,12,12,12,12,11,10,10,9,9,9,9,9,9,9,9,9,9,9,9,7,7,7,6,7,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,1,1,1,1,1,1,1,1,2,2,4,4,3,3,2,2,2,2,2,1,1,1,2,1,4,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,2,2],"conda/conda-package-handling":[11,11,11,12,11,11,11,10,10,10,11,11,11,11,11,11,11,10,10,16,16,17,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,15,15,15,15,15,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14,14,14,15,15,14,13,13,13,13,13,13,13,13,13,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,11,11,11,10,10,10,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,9,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,7,6,6,6,6,6,6,6,6,7,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"conda/clabot-config":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"conda/conda-content-trust":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1],"conda/schemas":[3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1],"conda/ceps":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,1,1,1,1,1,1,1,1],"conda/infra":[4,4,4,4,4,4,4,4,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],"timestamp":[1649570400000,1649311200000,1649052000000,1648792800000,1648706400000,1648447200000,1648188000000,1647928800000,1647669600000,1647410400000,1647151200000,1646892000000,1646632800000,1646373600000,1646114400000,1646028000000,1645768800000,1645509600000,1645250400000,1644991200000,1644732000000,1644472800000,1644213600000,1643954400000,1643695200000,1643608800000,1643349600000,1643090400000,1642831200000,1642572000000,1642312800000,1642053600000,1641794400000,1641535200000,1641276000000,1641016800000,1640930400000,1640671200000,1640412000000,1640152800000,1639893600000,1639634400000,1639375200000,1639116000000,1638856800000,1638597600000,1638338400000,1638079200000,1637820000000,1637560800000,1637301600000,1637215200000,1636956000000,1636696800000,1636437600000,1636174800000,1635915600000,1635656400000,1635397200000,1635138000000,1634878800000,1634619600000,1634360400000,1634101200000,1633842000000,1633582800000,1633323600000,1633064400000,1632805200000,1632546000000,1632286800000,1632027600000,1631768400000,1631509200000,1631250000000,1630990800000,1630731600000,1630472400000,1630213200000,1629954000000,1629694800000,1629435600000,1629176400000,1628917200000,1628658000000,1628398800000,1628139600000,1627880400000,1627621200000,1627362000000,1627102800000,1626843600000,1626584400000,1626325200000,1626066000000,1625806800000,1625547600000,1625288400000,1625029200000,1624770000000,1624510800000,1624251600000,1623992400000,1623733200000,1623474000000,1623214800000,1622955600000,1622696400000,1622437200000,1622178000000,1621918800000,1621659600000,1621400400000,1621141200000,1620882000000,1620622800000,1620363600000,1620104400000,1619845200000,1619586000000,1619326800000,1619067600000,1618808400000,1618549200000,1618290000000,1618030800000,1617771600000,1617512400000,1617253200000,1616994000000,1616734800000,1616475600000,1616216400000,1615957200000,1615701600000,1615442400000,1615183200000,1614924000000,1614664800000,1614405600000,1614146400000,1613887200000,1613628000000,1613368800000,1613109600000,1612850400000,1612591200000,1612332000000,1612072800000,1611813600000,1611554400000,1611295200000,1611036000000,1610776800000,1610517600000,1610258400000,1609999200000,1609740000000,1609480800000,1609221600000,1608962400000,1608703200000,1608444000000,1608184800000,1607925600000,1607666400000,1607407200000,1607148000000,1606888800000,1606629600000,1606370400000,1606111200000,1605852000000,1605592800000,1605333600000,1605074400000,1604815200000,1604556000000,1604296800000,1604034000000,1603774800000,1603515600000,1603256400000,1602997200000,1602738000000,1602478800000,1602219600000,1601960400000,1601701200000,1601442000000,1601182800000,1600923600000,1600664400000,1600405200000,1600146000000,1599886800000,1599627600000,1599368400000,1599109200000,1598850000000,1598590800000,1598331600000,1598072400000,1597813200000,1597554000000,1597294800000,1597035600000,1596776400000,1596517200000,1596258000000,1595998800000,1595739600000,1595480400000,1595221200000,1594962000000,1594702800000,1594443600000,1594184400000,1593925200000,1593666000000,1593406800000,1593147600000,1592888400000,1592629200000,1592370000000,1592110800000,1591851600000,1591592400000,1591333200000,1591074000000,1590814800000,1590555600000,1590296400000,1590037200000,1589778000000,1589518800000,1589259600000,1589000400000,1588741200000,1588482000000,1588222800000,1587963600000,1587704400000,1587445200000,1587186000000,1586926800000,1586667600000,1586408400000,1586149200000,1585890000000,1585630800000,1585371600000,1585112400000,1584853200000,1584594000000,1584334800000,1584075600000,1583816400000,1583560800000,1583301600000,1583042400000,1582783200000,1582524000000,1582264800000,1582005600000,1581746400000,1581487200000,1581228000000,1580968800000,1580709600000,1580450400000,1580191200000,1579932000000,1579672800000,1579413600000,1579154400000,1578895200000,1578636000000,1578376800000,1578117600000,1577858400000,1577599200000,1577340000000,1577080800000,1576821600000,1576562400000,1576303200000,1576044000000,1575784800000,1575525600000,1575266400000,1575007200000,1574748000000,1574488800000,1574229600000,1573970400000,1573711200000,1573452000000,1573192800000,1572933600000,1572670800000,1572411600000,1572152400000,1571893200000,1571634000000,1571374800000,1571115600000,1570856400000,1570597200000,1570338000000,1570078800000,1569819600000,1569560400000,1569301200000,1569042000000,1568782800000,1568523600000,1568264400000,1568005200000,1567746000000,1567486800000,1567227600000,1566968400000,1566709200000,1566450000000,1566190800000,1565931600000,1565672400000,1565413200000,1565154000000,1564894800000,1564635600000,1564376400000,1564117200000,1563858000000,1563598800000,1563339600000,1563080400000,1562821200000,1562562000000,1562302800000,1562043600000,1561784400000,1561525200000,1561266000000,1561006800000,1560747600000,1560488400000,1560229200000,1559970000000,1559710800000,1559451600000,1559192400000,1558933200000,1558674000000,1558414800000,1558155600000,1557896400000,1557637200000,1557378000000,1557118800000,1556859600000,1556600400000,1556341200000,1556082000000,1555822800000,1555563600000,1555304400000,1555045200000,1554786000000,1554526800000,1554267600000,1554008400000,1553749200000,1553490000000,1553230800000,1552971600000,1552712400000,1552453200000,1552197600000,1551938400000,1551679200000,1551420000000,1551160800000,1550901600000,1550642400000,1550383200000,1550124000000,1549864800000,1549605600000,1549346400000,1549087200000,1548828000000,1548568800000,1548309600000,1548050400000,1547791200000,1547532000000,1547272800000,1547013600000,1546754400000,1546495200000,1546236000000,1545976800000,1545717600000,1545458400000,1545199200000,1544940000000,1544680800000,1544421600000,1544162400000,1543903200000,1543644000000,1543384800000,1543125600000,1542866400000,1542607200000,1542348000000,1542088800000,1541829600000,1541570400000,1541307600000,1541048400000,1540789200000,1540530000000,1540270800000,1540011600000,1539752400000,1539493200000,1539234000000,1538974800000,1538715600000,1538456400000,1538197200000,1537938000000,1537678800000,1537419600000,1537160400000,1536901200000,1536642000000,1536382800000,1536123600000,1535864400000,1535605200000,1535346000000,1535086800000,1534827600000,1534568400000,1534309200000,1534050000000,1533790800000,1533531600000,1533272400000,1533013200000,1532754000000,1532494800000,1532235600000,1531976400000,1531717200000,1531458000000,1531198800000,1530939600000,1530680400000,1530421200000,1530162000000,1529902800000,1529643600000,1529384400000,1529125200000,1528866000000,1528606800000,1528347600000,1528088400000,1527829200000,1527570000000,1527310800000,1527051600000,1526792400000,1526533200000,1526274000000,1526014800000,1525755600000,1525496400000,1525237200000,1524978000000,1524718800000,1524459600000,1524200400000,1523941200000,1523682000000,1523422800000,1523163600000,1522904400000,1522645200000,1522386000000,1522126800000,1521867600000,1521608400000,1521349200000,1521090000000,1520830800000,1520575200000,1520316000000,1520056800000,1519797600000,1519538400000,1519279200000,1519020000000,1518760800000,1518501600000,1518242400000,1517983200000,1517724000000,1517464800000,1517205600000,1516946400000,1516687200000,1516428000000,1516168800000,1515909600000,1515650400000,1515391200000,1515132000000,1514872800000,1514613600000,1514354400000,1514095200000,1513836000000,1513576800000,1513317600000,1513058400000,1512799200000,1512540000000,1512280800000,1512021600000,1511762400000,1511503200000,1511244000000,1510984800000,1510725600000,1510466400000,1510207200000,1509948000000,1509685200000,1509426000000,1509166800000,1508907600000,1508648400000,1508389200000,1508130000000,1507870800000,1507611600000,1507352400000,1507093200000,1506834000000,1506574800000,1506315600000,1506056400000,1505797200000,1505538000000,1505278800000,1505019600000,1504760400000,1504501200000,1504242000000,1503982800000,1503723600000,1503464400000,1503205200000,1502946000000,1502686800000,1502427600000,1502168400000,1501909200000,1501650000000,1501390800000,1501131600000,1500872400000,1500613200000,1500354000000,1500094800000,1499835600000,1499576400000,1499317200000,1499058000000,1498798800000,1498539600000,1498280400000,1498021200000,1497762000000,1497502800000,1497243600000,1496984400000,1496725200000,1496466000000,1496206800000,1495947600000,1495688400000,1495429200000,1495170000000,1494910800000,1494651600000,1494392400000,1494133200000,1493874000000,1493614800000,1493355600000,1493096400000,1492837200000,1492578000000,1492318800000,1492059600000,1491800400000,1491541200000,1491282000000,1491022800000,1490763600000,1490504400000,1490245200000,1489986000000,1489726800000,1489467600000,1489212000000,1488952800000,1488693600000,1488434400000,1488175200000,1487916000000,1487656800000,1487397600000,1487138400000,1486879200000,1486620000000,1486360800000,1486101600000,1485842400000,1485583200000,1485324000000,1485064800000,1484805600000,1484546400000,1484287200000,1484028000000,1483768800000,1483509600000,1483250400000,1482991200000,1482732000000,1482472800000,1482213600000,1481954400000,1481695200000,1481436000000,1481176800000,1480917600000,1480658400000,1480399200000,1480140000000,1479880800000,1479621600000,1479362400000,1479103200000,1478844000000,1478584800000,1478322000000,1478062800000,1477803600000,1477544400000,1477285200000,1477026000000,1476766800000,1476507600000,1476248400000,1475989200000,1475730000000,1475470800000,1475211600000,1474952400000,1474693200000,1474434000000,1474174800000,1473915600000,1473656400000,1473397200000,1473138000000,1472878800000,1472619600000,1472360400000,1472101200000,1471842000000,1471582800000,1471323600000,1471064400000,1470805200000,1470546000000,1470286800000,1470027600000,1469768400000,1469509200000,1469250000000,1468990800000,1468731600000,1468472400000,1468213200000,1467954000000,1467694800000,1467435600000,1467176400000,1466917200000,1466658000000,1466398800000,1466139600000,1465880400000,1465621200000,1465362000000,1465102800000,1464843600000,1464584400000,1464325200000,1464066000000,1463806800000,1463547600000,1463288400000,1463029200000,1462770000000,1462510800000,1462251600000,1461992400000,1461733200000,1461474000000,1461214800000,1460955600000,1460696400000,1460437200000,1460178000000,1459918800000,1459659600000,1459400400000,1459141200000,1458882000000,1458622800000,1458363600000,1458104400000,1457848800000,1457589600000,1457330400000,1457071200000,1456812000000,1456552800000,1456293600000,1456034400000,1455775200000,1455516000000,1455256800000,1454997600000,1454738400000,1454479200000,1454220000000,1453960800000,1453701600000,1453442400000,1453183200000,1452924000000,1452664800000,1452405600000,1452146400000,1451887200000,1451628000000,1451368800000,1451109600000,1450850400000,1450591200000,1450332000000,1450072800000,1449813600000,1449554400000,1449295200000,1449036000000,1448776800000,1448517600000,1448258400000,1447999200000,1447740000000,1447480800000,1447221600000,1446962400000,1446703200000,1446444000000,1446181200000,1445922000000,1445662800000,1445403600000,1445144400000,1444885200000,1444626000000,1444366800000,1444107600000,1443848400000,1443589200000,1443330000000,1443070800000,1442811600000,1442552400000,1442293200000,1442034000000,1441774800000,1441515600000,1441256400000,1440997200000,1440738000000,1440478800000,1440219600000,1439960400000,1439701200000,1439442000000,1439182800000,1438923600000,1438664400000,1438405200000,1438146000000,1437886800000,1437627600000,1437368400000,1437109200000,1436850000000,1436590800000,1436331600000,1436072400000,1435813200000,1435554000000,1435294800000,1435035600000,1434776400000,1434517200000,1434258000000,1433998800000,1433739600000,1433480400000,1433221200000,1432962000000,1432702800000,1432443600000,1432184400000,1431925200000,1431666000000,1431406800000,1431147600000,1430888400000,1430629200000,1430370000000,1430110800000,1429851600000,1429592400000,1429333200000,1429074000000,1428814800000,1428555600000,1428296400000,1428037200000,1427778000000,1427518800000,1427259600000,1427000400000,1426741200000,1426482000000,1426222800000,1425963600000,1425708000000,1425448800000,1425189600000,1424930400000,1424671200000,1424412000000,1424152800000,1423893600000,1423634400000,1423375200000,1423116000000,1422856800000,1422597600000,1422338400000,1422079200000,1421820000000,1421560800000,1421301600000,1421042400000,1420783200000,1420524000000,1420264800000,1420005600000,1419746400000,1419487200000,1419228000000,1418968800000,1418709600000,1418450400000,1418191200000,1417932000000,1417672800000,1417413600000,1417154400000,1416895200000,1416636000000,1416376800000,1416117600000,1415858400000,1415599200000,1415340000000,1415080800000,1414818000000,1414558800000,1414299600000,1414040400000,1413781200000,1413522000000,1413262800000,1413003600000,1412744400000,1412485200000,1412226000000,1411966800000,1411707600000,1411448400000,1411189200000,1410930000000,1410670800000,1410411600000,1410152400000,1409893200000,1409634000000,1409374800000,1409115600000,1408856400000,1408597200000,1408338000000,1408078800000,1407819600000,1407560400000,1407301200000,1407042000000,1406782800000,1406523600000,1406264400000,1406005200000,1405746000000,1405486800000,1405227600000,1404968400000,1404709200000,1404450000000,1404190800000,1403931600000,1403672400000,1403413200000,1403154000000,1402894800000,1402635600000,1402376400000,1402117200000,1401858000000,1401598800000,1401339600000,1401080400000,1400821200000,1400562000000,1400302800000,1400043600000,1399784400000,1399525200000,1399266000000,1399006800000,1398747600000,1398488400000,1398229200000,1397970000000,1397710800000,1397451600000,1397192400000,1396933200000,1396674000000,1396414800000,1396155600000,1395896400000,1395637200000,1395378000000,1395118800000,1394859600000,1394600400000,1394344800000,1394085600000,1393826400000,1393567200000,1393308000000,1393048800000,1392789600000,1392530400000,1392271200000,1392012000000,1391752800000,1391493600000,1391234400000,1390975200000,1390716000000,1390456800000,1390197600000,1389938400000,1389679200000,1389420000000,1389160800000,1388901600000,1388642400000,1388383200000,1388124000000,1387864800000,1387605600000,1387346400000,1387087200000,1386828000000,1386568800000,1386309600000,1386050400000,1385791200000,1385532000000,1385272800000,1385013600000,1384754400000,1384495200000,1384236000000,1383976800000,1383717600000,1383454800000,1383195600000,1382936400000,1382677200000,1382418000000,1382158800000,1381899600000,1381640400000,1381381200000,1381122000000,1380862800000,1380603600000,1380344400000,1380085200000,1379826000000,1379566800000,1379307600000,1379048400000,1378789200000,1378530000000,1378270800000,1378011600000,1377752400000,1377493200000,1377234000000,1376974800000,1376715600000,1376456400000,1376197200000,1375938000000,1375678800000,1375419600000,1375160400000,1374901200000,1374642000000,1374382800000,1374123600000,1373864400000,1373605200000,1373346000000,1373086800000,1372827600000,1372568400000,1372309200000,1372050000000,1371790800000,1371531600000,1371272400000,1371013200000,1370754000000,1370494800000,1370235600000,1369976400000,1369717200000,1369458000000,1369198800000,1368939600000,1368680400000,1368421200000,1368162000000,1367902800000,1367643600000,1367384400000,1367125200000,1366866000000,1366606800000,1366347600000,1366088400000,1365829200000,1365570000000,1365310800000,1365051600000,1364792400000,1364533200000,1364274000000,1364014800000,1363755600000,1363496400000,1363237200000,1362978000000,1362722400000,1362463200000,1362204000000,1361944800000,1361685600000,1361426400000,1361167200000,1360908000000,1360648800000,1360389600000,1360130400000,1359871200000,1359612000000,1359352800000,1359093600000,1358834400000,1358575200000,1358316000000,1358056800000,1357797600000,1357538400000,1357279200000,1357020000000,1356760800000,1356501600000,1356242400000,1355983200000,1355724000000,1355464800000,1355205600000,1354946400000,1354687200000,1354428000000,1354168800000,1353909600000,1353650400000],"conda/issue-tracker":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]}; +const alltime = {"conda/conda":[928,924,920,915,913,914,913,916,912,907,903,901,909,918,919,920,971,972,971,963,962,960,967,975,990,1018,1103,1149,1145,1145,1142,1145,1146,1146,1149,1162,1193,1320,1332,1329,1326,1325,1323,1324,1320,1322,1327,1341,1511,1518,1516,1522,1519,1525,1516,1529,1541,1541,1540,1535,1536,1533,1537,1542,1539,1620,1625,1623,1615,1609,1630,1634,1627,1631,1648,1707,1810,1803,1799,1789,1789,1795,1792,1787,1783,1782,1784,1780,1779,1774,1773,1772,1771,1771,1769,1769,1765,1762,1757,1754,1749,1748,1746,1746,1745,1743,1805,1964,1966,1968,1966,1968,1962,1961,1959,1958,1955,1955,1953,1946,1953,1944,1941,1937,1934,1932,1931,1928,1935,1932,1928,1928,1928,1928,1925,1926,1927,1927,1926,1924,1922,1919,1919,1922,1918,1912,1909,1905,1903,1898,1893,1886,1887,1883,1879,1878,1874,1869,1873,1876,1874,1869,1868,1874,1886,1881,1877,1872,1870,1866,1860,1860,1854,1853,1849,1844,1842,1836,1834,1833,1822,1820,1813,1813,1809,1805,1804,1802,1799,1795,1792,1790,1787,1784,1780,1776,1770,1770,1768,1766,1766,1758,1760,1755,1755,1749,1745,1744,1743,1736,1730,1728,1727,1726,1723,1720,1717,1714,1709,1705,1702,1704,1699,1693,1688,1686,1682,1684,1680,1676,1668,1665,1662,1654,1652,1650,1643,1639,1633,1630,1624,1618,1616,1613,1613,1613,1612,1611,1609,1603,1602,1597,1589,1585,1584,1577,1572,1569,1568,1566,1560,1554,1550,1552,1546,1547,1538,1534,1537,1536,1529,1526,1520,1517,1517,1514,1510,1504,1497,1496,1486,1486,1483,1478,1472,1465,1460,1455,1455,1452,1446,1444,1443,1436,1430,1427,1423,1453,1447,1440,1437,1430,1425,1425,1420,1416,1403,1401,1395,1393,1387,1381,1378,1373,1372,1364,1359,1350,1345,1345,1339,1333,1327,1322,1319,1311,1309,1306,1302,1295,1295,1294,1292,1302,1299,1293,1292,1293,1292,1297,1297,1286,1280,1267,1264,1264,1263,1260,1264,1263,1258,1257,1252,1249,1247,1244,1245,1239,1232,1224,1219,1214,1209,1207,1209,1207,1200,1198,1195,1184,1181,1173,1171,1171,1170,1170,1168,1164,1156,1154,1146,1146,1135,1125,1118,1112,1109,1103,1094,1089,1087,1085,1079,1072,1075,1076,1069,1058,1059,1050,1047,1043,1041,1040,1035,1034,1034,1028,1024,1022,1017,1001,992,990,981,978,969,969,967,964,959,954,956,951,946,946,940,926,925,922,916,913,908,909,899,897,892,888,889,883,877,872,870,864,860,857,852,848,826,820,810,808,805,798,794,786,782,780,777,776,774,772,771,771,768,768,767,764,760,759,761,757,748,746,744,741,736,736,730,717,718,705,696,684,682,678,672,665,659,657,655,664,668,661,658,644,638,637,643,636,625,619,617,611,602,604,598,593,586,593,582,577,575,571,567,567,562,557,553,550,543,537,533,515,512,504,502,508,509,503,491,487,479,476,474,473,467,464,460,458,458,456,452,453,456,470,469,467,461,460,450,441,436,429,429,424,422,413,406,449,442,493,531,523,521,527,525,530,527,522,518,599,658,654,678,670,661,654,655,633,635,623,617,606,600,588,587,578,563,563,555,549,545,541,532,525,531,524,524,520,513,510,504,502,526,525,538,578,567,566,573,564,551,549,545,539,526,522,513,503,496,487,476,462,454,454,459,451,443,433,424,421,413,410,400,394,386,382,372,362,346,342,336,329,333,328,314,308,304,304,329,330,324,315,310,312,313,403,634,809,1039,1391,1484,1466,1498,1487,1481,1468,1457,1453,1446,1445,1437,1426,1419,1409,1401,1385,1371,1364,1355,1374,1359,1370,1364,1354,1352,1341,1317,1298,1276,1264,1250,1271,1270,1261,1251,1247,1233,1222,1210,1207,1200,1197,1194,1192,1184,1174,1166,1158,1151,1139,1125,1115,1116,1109,1113,1103,1105,1105,1097,1091,1101,1090,1131,1128,1119,1121,1126,1120,1109,1103,1093,1079,1063,1042,1028,1027,1022,1020,1017,1017,1008,1006,999,992,986,987,982,976,971,973,974,971,963,964,965,954,943,938,930,922,915,911,904,905,899,891,869,863,864,858,856,847,841,836,832,823,818,812,803,811,810,805,800,793,785,792,783,777,772,773,770,769,763,762,758,752,750,757,780,780,766,758,760,752,747,739,735,727,711,704,699,693,682,677,671,662,658,653,655,651,650,650,647,650,648,655,650,645,643,633,630,622,616,611,609,604,591,581,578,577,564,551,544,536,533,528,525,520,515,509,507,503,501,500,502,502,500,492,485,478,476,472,467,464,461,459,471,466,456,454,447,441,436,438,440,434,432,432,429,423,418,415,412,410,404,404,400,399,399,394,391,389,386,386,393,391,391,387,387,381,379,380,376,371,367,366,362,358,353,349,343,341,336,331,328,322,319,313,310,306,304,301,302,301,300,298,295,296,293,291,291,292,290,287,285,286,285,282,280,277,275,271,270,268,270,266,265,262,260,258,256,252,247,245,245,247,243,242,242,239,237,238,237,234,232,228,226,223,219,214,208,204,202,202,205,204,203,202,199,202,199,197,204,207,207,204,202,203,203,198,196,196,192,190,194,196,196,191,191,191,189,181,178,175,174,174,174,171,170,171,168,169,168,167,168,166,164,166,163,162,159,157,154,151,152,149,142,139,138,133,133,126,129,128,125,123,120,119,118,124,124,120,120,121,119,119,117,115,112,109,104,103,103,104,102,128,130,134,145,158,152,150,144,143,137,131,130,127,123,121,120,117,117,116,108,109,103,99,97,91,92,93,91,97,94,97,96,99,94,93,93,95,89,85,87,87,87,86,85,86,84,82,79,78,83,79,78,77,74,78,78,77,79,85,84,80,80,81,81,78,81,81,79,72,72,71,69,63,58,49,46,46,50,46,50,44,55,55,55,54,54,52,47,38,36,34,32,32,36,36,34,34,33,29,28,26,26,26,22,20,20,20,17,16,13,10,7,6,6,6,15,13,12,12,12,12,8,12,6,4,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"conda/menuinst":[13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,19,19,19,19,19,19,19,19,19,19,19,19,19,19,18,18,18,18,18,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,19,19,19,19,20,20,20,20,20,20,20,20,20,20,20,19,19,19,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,17,16,16,15,15,15,15,15,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,10,10,10,10,10,10,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8,8,8,8,8,8,8,8,8,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,1,1,1,1,2,2,1],"conda/pycosat":[2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,17,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,16,16,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,15,15,15,15,15,15,15,15,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,11,11,11,11,11,11,11,11,11,11,13,13,13,13,13,13,13,13,13,13,13,13,13,8,8,8,7,7,7,7,7,7,7,6,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,0,1,1],"conda/conda-build":[584,587,590,615,621,633,632,632,632,632,632,633,635,641,650,669,685,685,684,682,679,677,676,677,678,681,709,719,717,717,717,718,716,714,714,714,719,763,765,764,761,762,763,763,765,765,763,762,809,810,809,807,806,806,802,802,803,804,800,800,799,797,796,795,794,793,793,791,790,790,789,790,791,791,792,792,815,835,835,834,835,836,836,836,831,831,829,828,828,828,827,826,826,825,825,824,824,825,825,825,825,825,826,827,827,825,827,827,827,827,826,826,826,826,824,825,823,823,823,821,821,820,820,818,816,816,815,814,812,811,811,811,811,811,811,810,810,809,810,807,805,804,802,802,798,799,799,797,797,793,793,793,793,794,791,790,790,790,790,790,790,789,790,794,794,794,793,793,792,792,790,790,789,788,788,787,787,788,788,788,788,787,786,786,785,785,783,781,781,781,779,779,777,775,773,773,772,772,771,772,772,770,770,767,766,766,765,765,764,764,763,763,761,760,760,760,759,759,759,759,758,758,759,757,757,757,758,759,759,757,757,756,756,756,755,753,756,754,754,753,752,752,751,748,748,747,748,748,748,744,743,742,740,739,738,737,737,737,736,733,733,733,733,732,731,730,729,730,727,727,727,726,726,723,722,721,721,719,719,718,717,716,716,715,713,712,710,707,706,704,702,702,702,702,701,701,703,702,702,704,703,702,701,703,702,703,701,700,698,698,697,696,696,694,694,693,693,692,692,692,692,691,691,690,689,688,685,683,683,683,682,683,682,678,677,677,678,678,678,678,677,677,678,675,675,675,675,675,674,673,673,671,671,670,670,666,665,665,665,663,663,663,661,660,656,657,655,654,653,653,654,651,650,648,651,653,652,651,653,653,649,646,645,642,638,636,634,630,628,627,628,627,623,622,621,619,617,614,611,608,607,606,599,598,595,596,594,594,592,592,592,590,588,588,586,584,583,582,582,584,582,582,580,580,579,580,580,582,582,583,583,581,581,581,579,578,579,575,572,574,574,573,573,571,571,572,567,567,566,564,562,561,559,558,557,555,557,555,555,554,555,553,552,550,545,548,546,545,545,546,545,543,545,542,545,542,541,543,542,542,540,541,540,538,537,536,535,538,535,534,532,530,526,528,527,525,526,528,526,528,527,522,523,522,520,519,512,508,507,506,507,506,508,505,504,498,497,497,491,489,487,487,487,485,488,485,481,478,473,477,474,471,484,480,476,477,477,479,477,472,471,471,468,470,469,468,465,466,463,461,462,475,472,469,468,466,463,463,460,460,457,456,453,452,450,450,450,448,447,462,460,459,461,456,453,448,449,449,448,453,449,447,445,446,445,443,448,449,450,449,449,449,449,448,446,444,442,441,441,442,441,440,437,436,433,436,437,433,435,435,436,435,430,430,428,428,426,424,421,425,424,421,418,420,419,416,417,419,416,415,421,419,417,414,411,410,414,412,413,408,407,407,406,406,404,398,394,398,398,406,406,403,403,401,402,400,397,395,401,394,394,386,380,377,375,375,376,377,374,375,371,368,365,364,370,369,366,370,362,365,365,358,357,365,366,370,369,369,371,368,363,366,362,358,358,359,357,352,353,354,348,351,350,349,354,353,353,352,355,355,349,350,353,352,350,349,348,349,349,346,344,348,347,347,345,342,347,344,346,343,350,346,343,347,345,340,334,333,336,333,332,334,327,330,330,327,326,323,322,322,323,317,315,314,315,313,310,313,306,306,315,321,314,305,303,308,304,300,294,292,290,288,285,284,283,279,278,279,280,276,281,291,288,287,283,282,277,273,274,275,271,271,272,269,267,264,261,261,258,256,254,254,251,254,252,249,248,243,244,242,241,241,235,235,234,233,232,232,233,232,233,231,230,232,238,237,235,236,237,235,235,235,232,229,229,227,226,222,222,219,216,215,213,212,210,208,208,206,203,201,200,195,191,190,188,188,187,186,193,189,187,181,181,185,187,182,180,179,177,177,172,172,167,165,163,161,161,159,156,154,154,153,152,151,151,150,148,152,153,151,154,153,154,150,145,144,142,142,142,140,141,137,135,137,136,135,135,134,131,129,127,125,125,128,124,123,123,123,123,123,122,120,118,116,117,118,118,118,117,116,116,114,114,113,113,112,111,111,109,109,108,106,105,105,104,104,104,104,103,102,100,99,98,97,95,95,93,92,90,91,91,90,89,87,84,84,83,83,82,81,80,81,81,80,79,78,80,80,81,79,80,79,78,78,77,79,79,77,74,75,73,73,74,71,71,71,71,70,66,64,63,63,61,59,59,59,58,58,59,59,58,58,59,59,59,56,54,54,52,51,50,50,50,49,48,47,48,47,46,43,45,44,44,44,44,44,40,40,38,37,37,36,35,33,30,30,29,27,27,27,23,20,19,17,16,11,12,8,8,3,1],"conda/conda-docs":[19,19,19,19,19,17,17,17,17,17,17,17,18,18,18,18,18,18,18,22,20,18,18,18,18,18,18,18,18,18,18,18,18,17,17,17,17,17,14,14,14,14,13,13,13,13,12,12,12,12,11,11,8,8,7,7,8,8,7,7,7,7,8,8,8,8,8,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,6,6,6,6,6,6,6,6,6,6,5,5,5,4,4,4,4,5,5,4,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,37,37,37,37,37,37,37,37,37,37,37,37,36,36,36,34,34,34,34,34,34,34,34,34,34,34,34,34,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,34,34,34,34,34,34,34,33,33,33,33,32,32,32,32,32,32,32,34,33,33,33,33,33,34,33,33,33,33,32,32,32,32,31,31,31,29,29,29,29,29,29,29,29,29,29,29,29,28,27,27,27,27,27,26,26,26,25,24,24,24,24,24,24,23,23,24,24,25,25,25,25,25,25,24,24,24,24,24,24,24,24,24,24,24,24,24,24,23,23,23,23,23,23,23,23,23,23,23,23,23,22,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,22,22,22,21,21,21,21,21,22,22,22,22,22,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,21,20,20,20,20,20,20,20,20,19,20,20,20,20,20,21,20,20,20,20,20,19,19,19,18,18,18,18,18,18,18,18,20,20,20,20,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,17,17,16,16,16,16,16,17,17,17,17,17,17,16,16,16,16,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14,14,14,13,13,13,13,13,13,13,12,11,10,10,10,10,10,10,10,10,9,9,9,9,9,8,8,8,8,8,7,7,7,7,7,7,7,7,7,6,6,6,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,3,3,4,4,4,3,3,3,4,4,3,3,3,1,1,1,1,1,2,2,2,2,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,9,9,9,8,8,8,8,8,8,6,6,6,6,6,6,4,4,4,4,4,4,4,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1],"conda/constructor":[13,13,13,13,13,12,12,13,13,18,18,18,17,17,17,18,18,21,20,20,20,20,19,22,23,24,23,23,23,23,24,23,23,23,23,23,23,23,26,26,27,27,27,27,27,27,27,27,51,51,51,51,51,51,51,51,51,51,51,51,51,51,50,49,48,48,48,48,49,50,49,49,49,49,49,48,48,48,48,49,49,49,49,49,48,48,48,48,48,48,47,46,47,50,50,49,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,49,49,48,48,47,47,47,47,45,45,44,43,42,42,41,41,41,41,41,41,41,41,41,41,41,41,40,40,40,40,40,39,39,39,39,39,39,39,39,39,39,39,39,39,39,38,37,37,37,37,37,37,37,37,37,37,36,36,36,36,36,36,36,36,36,36,36,36,37,37,35,34,34,34,34,33,33,33,33,33,33,33,32,32,34,32,32,32,32,32,32,31,30,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,28,30,30,30,27,27,30,30,30,29,28,28,29,29,28,28,27,26,26,24,24,25,83,83,83,81,79,79,79,81,81,80,85,85,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,83,83,82,82,82,82,82,82,82,82,82,82,81,81,81,81,81,81,81,81,81,80,80,81,79,79,80,80,80,80,80,80,80,80,80,80,80,80,80,79,79,79,79,79,79,79,79,79,79,78,77,78,78,77,77,77,78,77,77,77,77,76,76,76,76,76,76,76,76,76,76,76,75,74,74,76,76,76,76,76,75,74,74,73,73,74,74,72,70,69,69,68,69,68,68,69,70,71,71,71,71,71,71,71,71,71,71,69,69,67,65,64,62,62,62,62,62,62,62,61,62,62,62,62,60,60,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,64,64,63,63,63,63,65,63,63,63,63,62,63,63,62,63,62,62,62,62,62,62,62,61,61,61,61,60,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,60,60,59,59,59,59,59,59,59,61,60,60,60,60,60,60,60,60,60,59,58,58,58,57,57,57,57,56,56,56,56,56,56,56,56,56,57,57,57,57,57,57,58,58,58,58,57,58,58,58,58,58,57,56,56,55,55,54,54,53,52,52,52,52,52,52,53,54,53,53,53,53,53,52,52,52,52,52,52,52,52,53,53,53,53,53,53,53,53,52,51,51,51,51,51,51,50,50,49,49,49,48,49,51,56,54,53,51,50,49,47,45,44,44,44,44,44,44,44,44,42,42,41,40,40,40,39,39,38,36,35,35,37,37,37,37,37,37,37,37,37,37,36,36,36,35,34,33,33,33,32,32,32,31,31,31,31,31,31,31,31,31,31,31,31,31,31,30,28,28,27,23,22,22,23,23,23,21,21,21,21,21,20,20,20,20,20,19,18,18,18,18,18,18,18,18,17,17,17,17,17,17,17,17,18,18,17,17,17,17,17,17,17,16,16,17,16,16,15,15,15,15,15,15,15,15,15,14,14,14,12,11,11,11,11,11,11,11,11,11,11,11,11,10,11,10,10,10,10,10,10,11,10,10,10,10,10,10,10,10,10,10,10,10,9,9,9,9,9,8,8,8,9,9,9,10,10,10,10,10,11,11,10,8,8,7,7,7,8,8,8,8,11,11,11,11,10,6,5,5,5,5,5,5,5,5,5,5,4,4,4,4,5,4,4,4,4,4,4,4,4,8,8,8,8,8,5,6,4,6,5,3,2,3,2,0,1],"conda/conda-verify":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,5,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,5,5,5,5,5,5,5,5,5,5,7,7,6,6,6,6,6,6,6,6,6,6,6,6,6,6,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"conda/cookiecutter-conda-python":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"conda/conda-pack":[17,18,18,18,16,17,17,17,18,18,18,18,18,18,18,18,18,19,20,20,20,20,20,20,20,20,20,20,20,21,21,21,22,21,21,21,21,21,22,24,24,24,22,22,22,23,23,23,37,37,37,36,37,36,36,36,36,36,33,33,33,33,33,34,34,34,34,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,35,36,36,36,35,35,35,35,35,35,35,35,34,34,34,34,34,34,34,33,33,33,33,32,32,32,32,32,32,32,32,31,31,31,31,31,31,31,31,30,30,30,28,28,28,27,27,27,27,27,27,27,27,27,27,25,25,25,25,25,24,24,24,24,24,24,24,25,27,25,25,25,25,25,24,24,23,22,22,22,22,22,22,23,22,20,20,20,20,20,22,22,23,22,21,20,20,20,20,19,19,18,18,18,18,18,18,18,18,18,18,18,18,18,18,16,15,15,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,13,13,13,12,12,12,12,12,12,12,12,12,15,15,15,14,13,13,13,13,13,13,13,13,13,13,13,13,13,13,18,19,20,21,21,26,26,27,27,27,27,27,27,26,25,24,24,23,23,22,21,21,21,21,20,20,20,30,30,30,30,30,31,30,29,29,29,29,29,29,29,29,29,29,27,27,24,22,22,22,22,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,20,20,21,21,20,20,19,19,19,19,19,18,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,16,16,16,16,16,15,15,15,15,15,15,15,15,15,14,14,14,14,14,13,13,14,13,11,11,11,11,11,10,10,10,10,11,9,9,9,13,13,12,12,12,12,10,10,10,9,9,9,9,9,9,9,9,9,9,9,9,7,7,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,2,1,1,1,1,1,1,1,1,2,2,4,4,3,3,2,2,2,2,2,1,1,1,2,2,4,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,1,2,2],"conda/conda-package-handling":[6,6,4,4,4,4,4,4,3,2,3,3,3,3,3,3,3,3,3,3,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,11,11,11,12,12,13,12,11,11,11,11,11,11,11,12,12,12,11,11,11,12,12,12,12,12,12,12,11,11,17,17,17,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,15,15,15,15,15,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,16,16,16,16,16,16,16,16,15,15,15,15,15,15,15,15,15,15,15,15,15,14,14,14,14,15,15,13,13,13,13,13,13,13,13,13,13,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,11,11,11,11,10,10,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,7,7,6,6,6,6,6,6,6,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"conda/conda-content-trust":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"conda/schemas":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3],"conda/infra":[13,13,11,11,11,11,10,9,8,7,7,7,6,6,6,6,6,6,6,6,6,6,5,5,6,6,6,6,6,6,6,6,6,8,7,7,6,7,7,7,7,7,6,6,6,6,6,6,6,7,8,6,6,5,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,4,4,3,3,3,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"conda/issue-tracker":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"conda/actions":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"conda/conda-plugin-template":[4,4,4,4,4,4,4,4,4,1,1,1,2],"timestamp":[1664859600000,1664600400000,1664341200000,1664082000000,1663822800000,1663563600000,1663304400000,1663045200000,1662786000000,1662526800000,1662267600000,1662008400000,1661749200000,1661490000000,1661230800000,1660971600000,1660712400000,1660453200000,1660194000000,1659934800000,1659675600000,1659416400000,1659157200000,1658898000000,1658638800000,1658379600000,1658120400000,1657861200000,1657602000000,1657342800000,1657083600000,1656824400000,1656565200000,1656306000000,1656046800000,1655787600000,1655528400000,1655269200000,1655010000000,1654750800000,1654491600000,1654232400000,1653973200000,1653714000000,1653454800000,1653195600000,1652936400000,1652677200000,1652418000000,1652158800000,1651899600000,1651640400000,1651381200000,1651122000000,1650862800000,1650603600000,1650344400000,1650085200000,1649826000000,1649566800000,1649307600000,1649048400000,1648789200000,1648530000000,1648270800000,1648011600000,1647752400000,1647493200000,1647234000000,1646978400000,1646719200000,1646460000000,1646200800000,1645941600000,1645682400000,1645423200000,1645164000000,1644904800000,1644645600000,1644386400000,1644127200000,1643868000000,1643608800000,1643349600000,1643090400000,1642831200000,1642572000000,1642312800000,1642053600000,1641794400000,1641535200000,1641276000000,1641016800000,1640757600000,1640498400000,1640239200000,1639980000000,1639720800000,1639461600000,1639202400000,1638943200000,1638684000000,1638424800000,1638165600000,1637906400000,1637647200000,1637388000000,1637128800000,1636869600000,1636610400000,1636351200000,1636088400000,1635829200000,1635570000000,1635310800000,1635051600000,1634792400000,1634533200000,1634274000000,1634014800000,1633755600000,1633496400000,1633237200000,1632978000000,1632718800000,1632459600000,1632200400000,1631941200000,1631682000000,1631422800000,1631163600000,1630904400000,1630645200000,1630386000000,1630126800000,1629867600000,1629608400000,1629349200000,1629090000000,1628830800000,1628571600000,1628312400000,1628053200000,1627794000000,1627534800000,1627275600000,1627016400000,1626757200000,1626498000000,1626238800000,1625979600000,1625720400000,1625461200000,1625202000000,1624942800000,1624683600000,1624424400000,1624165200000,1623906000000,1623646800000,1623387600000,1623128400000,1622869200000,1622610000000,1622350800000,1622091600000,1621832400000,1621573200000,1621314000000,1621054800000,1620795600000,1620536400000,1620277200000,1620018000000,1619758800000,1619499600000,1619240400000,1618981200000,1618722000000,1618462800000,1618203600000,1617944400000,1617685200000,1617426000000,1617166800000,1616907600000,1616648400000,1616389200000,1616130000000,1615870800000,1615615200000,1615356000000,1615096800000,1614837600000,1614578400000,1614319200000,1614060000000,1613800800000,1613541600000,1613282400000,1613023200000,1612764000000,1612504800000,1612245600000,1611986400000,1611727200000,1611468000000,1611208800000,1610949600000,1610690400000,1610431200000,1610172000000,1609912800000,1609653600000,1609394400000,1609135200000,1608876000000,1608616800000,1608357600000,1608098400000,1607839200000,1607580000000,1607320800000,1607061600000,1606802400000,1606543200000,1606284000000,1606024800000,1605765600000,1605506400000,1605247200000,1604988000000,1604728800000,1604469600000,1604206800000,1603947600000,1603688400000,1603429200000,1603170000000,1602910800000,1602651600000,1602392400000,1602133200000,1601874000000,1601614800000,1601355600000,1601096400000,1600837200000,1600578000000,1600318800000,1600059600000,1599800400000,1599541200000,1599282000000,1599022800000,1598763600000,1598504400000,1598245200000,1597986000000,1597726800000,1597467600000,1597208400000,1596949200000,1596690000000,1596430800000,1596171600000,1595912400000,1595653200000,1595394000000,1595134800000,1594875600000,1594616400000,1594357200000,1594098000000,1593838800000,1593579600000,1593320400000,1593061200000,1592802000000,1592542800000,1592283600000,1592024400000,1591765200000,1591506000000,1591246800000,1590987600000,1590728400000,1590469200000,1590210000000,1589950800000,1589691600000,1589432400000,1589173200000,1588914000000,1588654800000,1588395600000,1588136400000,1587877200000,1587618000000,1587358800000,1587099600000,1586840400000,1586581200000,1586322000000,1586062800000,1585803600000,1585544400000,1585285200000,1585026000000,1584766800000,1584507600000,1584248400000,1583989200000,1583730000000,1583474400000,1583215200000,1582956000000,1582696800000,1582437600000,1582178400000,1581919200000,1581660000000,1581400800000,1581141600000,1580882400000,1580623200000,1580364000000,1580104800000,1579845600000,1579586400000,1579327200000,1579068000000,1578808800000,1578549600000,1578290400000,1578031200000,1577772000000,1577512800000,1577253600000,1576994400000,1576735200000,1576476000000,1576216800000,1575957600000,1575698400000,1575439200000,1575180000000,1574920800000,1574661600000,1574402400000,1574143200000,1573884000000,1573624800000,1573365600000,1573106400000,1572847200000,1572584400000,1572325200000,1572066000000,1571806800000,1571547600000,1571288400000,1571029200000,1570770000000,1570510800000,1570251600000,1569992400000,1569733200000,1569474000000,1569214800000,1568955600000,1568696400000,1568437200000,1568178000000,1567918800000,1567659600000,1567400400000,1567141200000,1566882000000,1566622800000,1566363600000,1566104400000,1565845200000,1565586000000,1565326800000,1565067600000,1564808400000,1564549200000,1564290000000,1564030800000,1563771600000,1563512400000,1563253200000,1562994000000,1562734800000,1562475600000,1562216400000,1561957200000,1561698000000,1561438800000,1561179600000,1560920400000,1560661200000,1560402000000,1560142800000,1559883600000,1559624400000,1559365200000,1559106000000,1558846800000,1558587600000,1558328400000,1558069200000,1557810000000,1557550800000,1557291600000,1557032400000,1556773200000,1556514000000,1556254800000,1555995600000,1555736400000,1555477200000,1555218000000,1554958800000,1554699600000,1554440400000,1554181200000,1553922000000,1553662800000,1553403600000,1553144400000,1552885200000,1552626000000,1552366800000,1552111200000,1551852000000,1551592800000,1551333600000,1551074400000,1550815200000,1550556000000,1550296800000,1550037600000,1549778400000,1549519200000,1549260000000,1549000800000,1548741600000,1548482400000,1548223200000,1547964000000,1547704800000,1547445600000,1547186400000,1546927200000,1546668000000,1546408800000,1546149600000,1545890400000,1545631200000,1545372000000,1545112800000,1544853600000,1544594400000,1544335200000,1544076000000,1543816800000,1543557600000,1543298400000,1543039200000,1542780000000,1542520800000,1542261600000,1542002400000,1541743200000,1541484000000,1541221200000,1540962000000,1540702800000,1540443600000,1540184400000,1539925200000,1539666000000,1539406800000,1539147600000,1538888400000,1538629200000,1538370000000,1538110800000,1537851600000,1537592400000,1537333200000,1537074000000,1536814800000,1536555600000,1536296400000,1536037200000,1535778000000,1535518800000,1535259600000,1535000400000,1534741200000,1534482000000,1534222800000,1533963600000,1533704400000,1533445200000,1533186000000,1532926800000,1532667600000,1532408400000,1532149200000,1531890000000,1531630800000,1531371600000,1531112400000,1530853200000,1530594000000,1530334800000,1530075600000,1529816400000,1529557200000,1529298000000,1529038800000,1528779600000,1528520400000,1528261200000,1528002000000,1527742800000,1527483600000,1527224400000,1526965200000,1526706000000,1526446800000,1526187600000,1525928400000,1525669200000,1525410000000,1525150800000,1524891600000,1524632400000,1524373200000,1524114000000,1523854800000,1523595600000,1523336400000,1523077200000,1522818000000,1522558800000,1522299600000,1522040400000,1521781200000,1521522000000,1521262800000,1521003600000,1520748000000,1520488800000,1520229600000,1519970400000,1519711200000,1519452000000,1519192800000,1518933600000,1518674400000,1518415200000,1518156000000,1517896800000,1517637600000,1517378400000,1517119200000,1516860000000,1516600800000,1516341600000,1516082400000,1515823200000,1515564000000,1515304800000,1515045600000,1514786400000,1514527200000,1514268000000,1514008800000,1513749600000,1513490400000,1513231200000,1512972000000,1512712800000,1512453600000,1512194400000,1511935200000,1511676000000,1511416800000,1511157600000,1510898400000,1510639200000,1510380000000,1510120800000,1509858000000,1509598800000,1509339600000,1509080400000,1508821200000,1508562000000,1508302800000,1508043600000,1507784400000,1507525200000,1507266000000,1507006800000,1506747600000,1506488400000,1506229200000,1505970000000,1505710800000,1505451600000,1505192400000,1504933200000,1504674000000,1504414800000,1504155600000,1503896400000,1503637200000,1503378000000,1503118800000,1502859600000,1502600400000,1502341200000,1502082000000,1501822800000,1501563600000,1501304400000,1501045200000,1500786000000,1500526800000,1500267600000,1500008400000,1499749200000,1499490000000,1499230800000,1498971600000,1498712400000,1498453200000,1498194000000,1497934800000,1497675600000,1497416400000,1497157200000,1496898000000,1496638800000,1496379600000,1496120400000,1495861200000,1495602000000,1495342800000,1495083600000,1494824400000,1494565200000,1494306000000,1494046800000,1493787600000,1493528400000,1493269200000,1493010000000,1492750800000,1492491600000,1492232400000,1491973200000,1491714000000,1491454800000,1491195600000,1490936400000,1490677200000,1490418000000,1490158800000,1489899600000,1489640400000,1489381200000,1489125600000,1488866400000,1488607200000,1488348000000,1488088800000,1487829600000,1487570400000,1487311200000,1487052000000,1486792800000,1486533600000,1486274400000,1486015200000,1485756000000,1485496800000,1485237600000,1484978400000,1484719200000,1484460000000,1484200800000,1483941600000,1483682400000,1483423200000,1483164000000,1482904800000,1482645600000,1482386400000,1482127200000,1481868000000,1481608800000,1481349600000,1481090400000,1480831200000,1480572000000,1480312800000,1480053600000,1479794400000,1479535200000,1479276000000,1479016800000,1478757600000,1478498400000,1478235600000,1477976400000,1477717200000,1477458000000,1477198800000,1476939600000,1476680400000,1476421200000,1476162000000,1475902800000,1475643600000,1475384400000,1475125200000,1474866000000,1474606800000,1474347600000,1474088400000,1473829200000,1473570000000,1473310800000,1473051600000,1472792400000,1472533200000,1472274000000,1472014800000,1471755600000,1471496400000,1471237200000,1470978000000,1470718800000,1470459600000,1470200400000,1469941200000,1469682000000,1469422800000,1469163600000,1468904400000,1468645200000,1468386000000,1468126800000,1467867600000,1467608400000,1467349200000,1467090000000,1466830800000,1466571600000,1466312400000,1466053200000,1465794000000,1465534800000,1465275600000,1465016400000,1464757200000,1464498000000,1464238800000,1463979600000,1463720400000,1463461200000,1463202000000,1462942800000,1462683600000,1462424400000,1462165200000,1461906000000,1461646800000,1461387600000,1461128400000,1460869200000,1460610000000,1460350800000,1460091600000,1459832400000,1459573200000,1459314000000,1459054800000,1458795600000,1458536400000,1458277200000,1458018000000,1457762400000,1457503200000,1457244000000,1456984800000,1456725600000,1456466400000,1456207200000,1455948000000,1455688800000,1455429600000,1455170400000,1454911200000,1454652000000,1454392800000,1454133600000,1453874400000,1453615200000,1453356000000,1453096800000,1452837600000,1452578400000,1452319200000,1452060000000,1451800800000,1451541600000,1451282400000,1451023200000,1450764000000,1450504800000,1450245600000,1449986400000,1449727200000,1449468000000,1449208800000,1448949600000,1448690400000,1448431200000,1448172000000,1447912800000,1447653600000,1447394400000,1447135200000,1446876000000,1446616800000,1446354000000,1446094800000,1445835600000,1445576400000,1445317200000,1445058000000,1444798800000,1444539600000,1444280400000,1444021200000,1443762000000,1443502800000,1443243600000,1442984400000,1442725200000,1442466000000,1442206800000,1441947600000,1441688400000,1441429200000,1441170000000,1440910800000,1440651600000,1440392400000,1440133200000,1439874000000,1439614800000,1439355600000,1439096400000,1438837200000,1438578000000,1438318800000,1438059600000,1437800400000,1437541200000,1437282000000,1437022800000,1436763600000,1436504400000,1436245200000,1435986000000,1435726800000,1435467600000,1435208400000,1434949200000,1434690000000,1434430800000,1434171600000,1433912400000,1433653200000,1433394000000,1433134800000,1432875600000,1432616400000,1432357200000,1432098000000,1431838800000,1431579600000,1431320400000,1431061200000,1430802000000,1430542800000,1430283600000,1430024400000,1429765200000,1429506000000,1429246800000,1428987600000,1428728400000,1428469200000,1428210000000,1427950800000,1427691600000,1427432400000,1427173200000,1426914000000,1426654800000,1426395600000,1426136400000,1425877200000,1425621600000,1425362400000,1425103200000,1424844000000,1424584800000,1424325600000,1424066400000,1423807200000,1423548000000,1423288800000,1423029600000,1422770400000,1422511200000,1422252000000,1421992800000,1421733600000,1421474400000,1421215200000,1420956000000,1420696800000,1420437600000,1420178400000,1419919200000,1419660000000,1419400800000,1419141600000,1418882400000,1418623200000,1418364000000,1418104800000,1417845600000,1417586400000,1417327200000,1417068000000,1416808800000,1416549600000,1416290400000,1416031200000,1415772000000,1415512800000,1415253600000,1414994400000,1414731600000,1414472400000,1414213200000,1413954000000,1413694800000,1413435600000,1413176400000,1412917200000,1412658000000,1412398800000,1412139600000,1411880400000,1411621200000,1411362000000,1411102800000,1410843600000,1410584400000,1410325200000,1410066000000,1409806800000,1409547600000,1409288400000,1409029200000,1408770000000,1408510800000,1408251600000,1407992400000,1407733200000,1407474000000,1407214800000,1406955600000,1406696400000,1406437200000,1406178000000,1405918800000,1405659600000,1405400400000,1405141200000,1404882000000,1404622800000,1404363600000,1404104400000,1403845200000,1403586000000,1403326800000,1403067600000,1402808400000,1402549200000,1402290000000,1402030800000,1401771600000,1401512400000,1401253200000,1400994000000,1400734800000,1400475600000,1400216400000,1399957200000,1399698000000,1399438800000,1399179600000,1398920400000,1398661200000,1398402000000,1398142800000,1397883600000,1397624400000,1397365200000,1397106000000,1396846800000,1396587600000,1396328400000,1396069200000,1395810000000,1395550800000,1395291600000,1395032400000,1394773200000,1394514000000,1394258400000,1393999200000,1393740000000,1393480800000,1393221600000,1392962400000,1392703200000,1392444000000,1392184800000,1391925600000,1391666400000,1391407200000,1391148000000,1390888800000,1390629600000,1390370400000,1390111200000,1389852000000,1389592800000,1389333600000,1389074400000,1388815200000,1388556000000,1388296800000,1388037600000,1387778400000,1387519200000,1387260000000,1387000800000,1386741600000,1386482400000,1386223200000,1385964000000,1385704800000,1385445600000,1385186400000,1384927200000,1384668000000,1384408800000,1384149600000,1383890400000,1383631200000,1383368400000,1383109200000,1382850000000,1382590800000,1382331600000,1382072400000,1381813200000,1381554000000,1381294800000,1381035600000,1380776400000,1380517200000,1380258000000,1379998800000,1379739600000,1379480400000,1379221200000,1378962000000,1378702800000,1378443600000,1378184400000,1377925200000,1377666000000,1377406800000,1377147600000,1376888400000,1376629200000,1376370000000,1376110800000,1375851600000,1375592400000,1375333200000,1375074000000,1374814800000,1374555600000,1374296400000,1374037200000,1373778000000,1373518800000,1373259600000,1373000400000,1372741200000,1372482000000,1372222800000,1371963600000,1371704400000,1371445200000,1371186000000,1370926800000,1370667600000,1370408400000,1370149200000,1369890000000,1369630800000,1369371600000,1369112400000,1368853200000,1368594000000,1368334800000,1368075600000,1367816400000,1367557200000,1367298000000,1367038800000,1366779600000,1366520400000,1366261200000,1366002000000,1365742800000,1365483600000,1365224400000,1364965200000,1364706000000,1364446800000,1364187600000,1363928400000,1363669200000,1363410000000,1363150800000,1362895200000,1362636000000,1362376800000,1362117600000,1361858400000,1361599200000,1361340000000,1361080800000,1360821600000,1360562400000,1360303200000,1360044000000,1359784800000,1359525600000,1359266400000,1359007200000,1358748000000,1358488800000,1358229600000,1357970400000,1357711200000,1357452000000,1357192800000,1356933600000,1356674400000,1356415200000,1356156000000,1355896800000,1355637600000,1355378400000,1355119200000,1354860000000,1354600800000,1354341600000,1354082400000,1353823200000,1353564000000]}; export default alltime; diff --git a/snapshots/month.js b/snapshots/month.js deleted file mode 100644 index b2afd5a0..00000000 --- a/snapshots/month.js +++ /dev/null @@ -1,2 +0,0 @@ -const month = {"conda/conda":[1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1611,1611,1611,1611,1611,1611,1611,1611,1621,1621,1621,1621,1621,1621,1621,1625,1627,1632,1632,1632,1632,1632,1632,1632,1633,1632,1632,1631,1631,1631,1631,1632,1633,1634,1634,1633,1633,1633,1633,1633,1633,1633,1633,1633,1633,1634,1634,1634,1634,1634,1634,1634,1634,1634,1634,1635,1635,1636,1636,1633,1633,1633,1633,1633,1633,1634,1633,1633,1632,1633,1633,1632,1633,1630,1630,1631,1630,1630,1629,1629,1628,1628,1628,1628,1629,1629,1629,1631,1632,1632,1632,1632,1632,1633,1633,1633,1632,1632,1632,1632,1632,1632,1632,1632,1632,1632,1632,1632,1632,1635,1636,1638,1638,1638,1638,1638,1637,1643,1643,1643,1642,1641,1641,1642,1642,1649,1649,1650,1650,1650,1650,1649,1650,1660,1659,1660,1660,1660,1661,1661,1661,1680,1680,1681,1682,1683,1683,1680,1680,1707,1707,1707,1706,1706,1706,1706,1706,1750,1750,1750,1750,1750,1750,1750,1750,1807,1807,1810,1811,1811,1811,1810,1810,1810,1810,1810,1809,1810,1810,1810,1810,1810,1810,1809,1808,1807,1806,1806,1806,1806,1806,1805,1805,1801,1803,1803,1803,1803,1803,1803,1803,1803,1803,1803,1803,1803,1803,1804,1803,1802,1802,1802,1802,1802,1802,1802,1801,1801,1801,1800,1800,1799,1799,1799,1798],"conda/menuinst":[23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23],"conda/pycosat":[18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,17,17,17,17,17,17,17,17,17,17],"conda/conda-build":[789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,788,788,788,788,788,788,788,788,788,788,788,788,788,788,790,790,790,790,790,790,790,790,790,790,789,789,789,789,789,789,789,789,789,789,789,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,791,791,791,791,791,791,791,791,792,792,792,792,789,789,789,789,791,790,790,791,791,791,791,791,792,792,792,792,792,792,792,792,792,792,792,792,792,792,792,792,799,799,799,799,799,799,799,799,815,815,815,815,815,815,815,815,835,835,835,835,835,835,835,835,835,835,835,835,835,835,835,835,835,835,835,835,834,834,834,834,834,834,834,834,834,834,834,834,834,834,834,835,835,835,835,835,835,835,834,834],"conda/conda-docs":[7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8],"conda/constructor":[49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,50,50,50,50,50,50,50,50,50,51,51,51,51,50,50,50,50,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48],"conda/conda-verify":[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12],"conda/cookiecutter-conda-python":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],"conda/conda-pack":[33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33],"conda/conda-package-handling":[11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,12,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16],"conda/clabot-config":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"conda/conda-content-trust":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"conda/schemas":[3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3],"conda/ceps":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],"conda/infra":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"timestamp":[1647270000000,1647259200000,1647248400000,1647237600000,1647226800000,1647216000000,1647205200000,1647194400000,1647183600000,1647172800000,1647162000000,1647151200000,1647140400000,1647129600000,1647118800000,1647108000000,1647097200000,1647086400000,1647075600000,1647064800000,1647054000000,1647043200000,1647032400000,1647021600000,1647010800000,1647000000000,1646989200000,1646978400000,1646967600000,1646956800000,1646946000000,1646935200000,1646924400000,1646913600000,1646902800000,1646892000000,1646881200000,1646870400000,1646859600000,1646848800000,1646838000000,1646827200000,1646816400000,1646805600000,1646794800000,1646784000000,1646773200000,1646762400000,1646751600000,1646740800000,1646730000000,1646719200000,1646708400000,1646697600000,1646686800000,1646676000000,1646665200000,1646654400000,1646643600000,1646632800000,1646622000000,1646611200000,1646600400000,1646589600000,1646578800000,1646568000000,1646557200000,1646546400000,1646535600000,1646524800000,1646514000000,1646503200000,1646492400000,1646481600000,1646470800000,1646460000000,1646449200000,1646438400000,1646427600000,1646416800000,1646406000000,1646395200000,1646384400000,1646373600000,1646362800000,1646352000000,1646341200000,1646330400000,1646319600000,1646308800000,1646298000000,1646287200000,1646276400000,1646265600000,1646254800000,1646244000000,1646233200000,1646222400000,1646211600000,1646200800000,1646190000000,1646179200000,1646168400000,1646157600000,1646146800000,1646136000000,1646125200000,1646114400000,1646103600000,1646092800000,1646082000000,1646071200000,1646060400000,1646049600000,1646038800000,1646028000000,1646017200000,1646006400000,1645995600000,1645984800000,1645974000000,1645963200000,1645952400000,1645941600000,1645930800000,1645920000000,1645909200000,1645898400000,1645887600000,1645876800000,1645866000000,1645855200000,1645844400000,1645833600000,1645822800000,1645812000000,1645801200000,1645790400000,1645779600000,1645768800000,1645758000000,1645747200000,1645736400000,1645725600000,1645714800000,1645704000000,1645693200000,1645682400000,1645671600000,1645660800000,1645650000000,1645639200000,1645628400000,1645617600000,1645606800000,1645596000000,1645585200000,1645574400000,1645563600000,1645552800000,1645542000000,1645531200000,1645520400000,1645509600000,1645498800000,1645488000000,1645477200000,1645466400000,1645455600000,1645444800000,1645434000000,1645423200000,1645412400000,1645401600000,1645390800000,1645380000000,1645369200000,1645358400000,1645347600000,1645336800000,1645326000000,1645315200000,1645304400000,1645293600000,1645282800000,1645272000000,1645261200000,1645250400000,1645239600000,1645228800000,1645218000000,1645207200000,1645196400000,1645185600000,1645174800000,1645164000000,1645153200000,1645142400000,1645131600000,1645120800000,1645110000000,1645099200000,1645088400000,1645077600000,1645066800000,1645056000000,1645045200000,1645034400000,1645023600000,1645012800000,1645002000000,1644991200000,1644980400000,1644969600000,1644958800000,1644948000000,1644937200000,1644926400000,1644915600000,1644904800000,1644894000000,1644883200000,1644872400000,1644861600000,1644850800000,1644829200000,1644818400000,1644807600000,1644796800000,1644786000000,1644775200000,1644764400000,1644753600000,1644742800000,1644732000000,1644721200000,1644710400000,1644699600000,1644688800000,1644678000000,1644667200000,1644656400000,1644645600000,1644634800000,1644624000000,1644613200000,1644602400000,1644591600000],"conda/issue-tracker":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]}; -export default month; diff --git a/snapshots/recent.js b/snapshots/recent.js index 5f2107ff..4264013f 100644 --- a/snapshots/recent.js +++ b/snapshots/recent.js @@ -1,2 +1,2 @@ -const recent = {"conda/conda":[1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1617,1616,1615,1615,1611,1611,1611],"conda/menuinst":[23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23],"conda/pycosat":[18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18],"conda/conda-build":[789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789,789],"conda/conda-docs":[7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7],"conda/constructor":[49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,50,50,50,50,50,50,50,50,50],"conda/conda-verify":[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12],"conda/cookiecutter-conda-python":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],"conda/conda-pack":[33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33],"conda/conda-package-handling":[11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11],"conda/clabot-config":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"conda/conda-content-trust":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"conda/schemas":[3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3],"conda/ceps":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],"conda/infra":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3],"timestamp":[1647270000000,1647266400000,1647262800000,1647259200000,1647255600000,1647252000000,1647248400000,1647244800000,1647241200000,1647237600000,1647234000000,1647230400000,1647226800000,1647223200000,1647219600000,1647216000000,1647212400000,1647208800000,1647205200000,1647201600000,1647198000000,1647194400000,1647190800000,1647187200000,1647183600000,1647180000000,1647176400000,1647172800000,1647169200000,1647165600000,1647162000000,1647158400000,1647154800000,1647151200000,1647147600000,1647144000000,1647140400000,1647136800000,1647133200000,1647129600000,1647126000000,1647122400000,1647118800000,1647115200000,1647111600000,1647108000000,1647104400000,1647100800000,1647097200000,1647093600000,1647090000000,1647086400000,1647082800000,1647079200000,1647075600000,1647072000000,1647068400000,1647064800000,1647061200000,1647057600000,1647054000000,1647050400000,1647046800000,1647043200000,1647039600000,1647036000000,1647032400000,1647028800000,1647025200000,1647021600000,1647018000000,1647014400000],"conda/issue-tracker":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]}; +const recent = {"conda/conda":[929,929,929,929,928,929,929,929,929,929,929,929,929,929,929,929,928,928,928,928,928,928,928,928,927,927,926,926,925,925,924,924,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923,923],"conda/menuinst":[13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13],"conda/pycosat":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"conda/conda-build":[585,585,585,585,585,585,585,585,585,585,584,584,584,584,584,584,584,584,584,584,584,584,584,584,584,584,584,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585],"conda/conda-docs":[19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19],"conda/constructor":[13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13],"conda/conda-verify":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"conda/cookiecutter-conda-python":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"conda/conda-pack":[17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17],"conda/conda-package-handling":[6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6],"conda/conda-content-trust":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"conda/schemas":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"conda/infra":[13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13],"conda/issue-tracker":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"conda/actions":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"conda/conda-plugin-template":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],"timestamp":[1664928000000,1664924400000,1664920800000,1664917200000,1664913600000,1664910000000,1664906400000,1664902800000,1664899200000,1664895600000,1664892000000,1664888400000,1664884800000,1664881200000,1664877600000,1664874000000,1664870400000,1664866800000,1664863200000,1664859600000,1664856000000,1664852400000,1664848800000,1664845200000,1664841600000,1664838000000,1664834400000,1664830800000,1664827200000,1664823600000,1664820000000,1664816400000,1664812800000,1664809200000,1664805600000,1664802000000,1664798400000,1664794800000,1664791200000,1664787600000,1664784000000,1664780400000,1664776800000,1664773200000,1664769600000,1664766000000,1664762400000,1664758800000,1664755200000,1664751600000,1664748000000,1664744400000,1664740800000,1664737200000,1664733600000,1664730000000,1664726400000,1664722800000,1664719200000,1664715600000,1664712000000,1664708400000,1664704800000,1664701200000,1664697600000,1664694000000,1664690400000,1664686800000,1664683200000,1664679600000,1664676000000,1664672400000]}; export default recent; diff --git a/snapshots/repos.js b/snapshots/repos.js index cfc95445..1314a15b 100644 --- a/snapshots/repos.js +++ b/snapshots/repos.js @@ -1 +1 @@ -export const repos = ["conda/conda","conda/menuinst","conda/pycosat","conda/conda-build","conda/conda-docs","conda/constructor","conda/conda_build_test_recipe","conda/conda-verify","conda/cookiecutter-conda-python","conda/conda-pack","conda/conda-benchmarks","conda/conda-prefix-replacement","conda/conda-package-handling","conda/clabot-config","conda/conda-content-trust","conda/schemas","conda/conda-bots","conda/ceps","conda/infra","conda/issue-tracker"]; +export const repos = ["conda/conda","conda/menuinst","conda/pycosat","conda/conda-build","conda/conda-docs","conda/constructor","conda/conda-verify","conda/cookiecutter-conda-python","conda/conda-pack","conda/conda-benchmarks","conda/conda-prefix-replacement","conda/conda-package-handling","conda/conda-content-trust","conda/schemas","conda/infra","conda/issue-tracker","conda/actions","conda/conda-standalone","conda/conda-plugin-template","conda/.github"]; diff --git a/snapshots/year.js b/snapshots/year.js index 0e8961fa..b6e11b39 100644 --- a/snapshots/year.js +++ b/snapshots/year.js @@ -1,2 +1,2 @@ -const year = {"conda/conda":[1537,1537,1537,1535,1538,1538,1536,1535,1535,1535,1536,1539,1538,1544,1542,1541,1539,1540,1544,1553,1627,1627,1626,1626,1626,1623,1622,1616,1617,1617,1617,1611,1621,1632,1631,1633,1633,1634,1633,1632,1630,1629,1632,1632,1632,1637,1642,1650,1661,1680,1706,1750,1810,1810,1803,1803,1802,1800,1796,1793,1791,1790,1790,1790,1790,1790,1796,1797,1792,1793,1791,1789,1788,1785,1784,1785,1783,1783,1783,1785,1784,1785,1781,1781,1781,1780,1779,1774,1779,1776,1775,1774,1773,1774,1774,1773,1773,1772,1772,1772,1772,1771,1772,1772,1771,1770,1770,1770,1769,1768,1767,1765,1764,1763,1762,1761,1760,1758,1755,1752,1753,1754,1751,1749,1751,1747,1748,1748,1749,1747,1746,1745,1745,1746,1747,1745,1742,1742,1743,1743,1744,1748,1804,1962,1964,1966,1966,1966,1966,1967,1968,1967,1966,1966,1966,1966,1968,1965,1963,1962,1962,1962,1961,1961,1960,1959,1960,1960,1958,1958,1956,1955,1955,1954,1955,1954,1954,1953,1951,1950,1946,1957,1956,1953,1949,1947,1944,1941,1941,1941,1940,1940,1937,1935,1935,1934,1933,1933,1932,1932,1932,1931,1931,1929,1928,1937,1936,1935,1935,1933,1932,1931,1929,1928,1928,1927,1928,1928,1928,1928,1928,1926,1928,1927,1925,1925,1925,1925,1926,1926,1927,1927,1926,1927,1927,1927,1926,1926,1926,1926,1924,1924,1922,1922,1921,1920,1919,1919,1919,1919,1928,1924,1922,1921,1918,1918,1916,1914,1912,1911,1910,1909,1907,1907,1905,1905,1905,1903,1902,1899,1897,1896,1892,1892,1891,1890,1885,1885,1885,1886,1884,1883,1882,1884,1882,1878,1878,1878,1877,1877,1875,1873,1874,1871,1868,1868,1869,1872,1873,1875,1875,1873,1871,1873,1869,1869,1868,1868,1867,1867,1868,1866,1873,1882,1885,1885,1884,1883,1880,1878,1878,1876,1873,1871,1871,1871,1870,1869,1868,1867,1865,1864,1860,1859,1859,1860,1859,1859,1856,1853,1853,1853,1852,1850,1849,1848,1846,1845,1843,1842,1842,1841,1839,1839,1835,1834,1834,1833,1833,1833,1832,1827,1823,1821,1822,1820],"conda/menuinst":[22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22],"conda/pycosat":[16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17],"conda/conda-build":[799,799,799,798,798,797,797,796,796,796,796,796,795,795,795,795,794,794,790,793,793,793,793,792,792,791,792,789,789,789,789,789,789,788,788,790,789,789,790,790,790,790,790,790,790,790,790,791,789,791,792,792,799,815,835,834,834,835,834,833,833,834,834,834,834,834,835,835,835,835,835,835,835,833,830,830,830,830,830,830,830,828,827,827,827,827,827,827,826,826,827,827,826,826,825,825,825,825,825,825,825,824,824,824,824,824,824,824,823,823,824,823,823,823,824,824,824,824,824,824,824,824,824,824,824,824,824,824,825,825,825,825,826,826,826,826,826,826,825,824,824,826,827,826,826,826,826,826,826,826,826,826,825,825,825,825,825,825,825,825,825,825,825,824,823,823,824,824,824,824,823,822,822,822,822,822,822,822,820,820,820,820,820,820,819,819,819,819,819,819,819,818,817,816,815,815,815,815,815,815,814,814,814,813,813,813,812,811,810,810,810,810,810,810,810,810,810,810,810,810,810,810,810,810,810,810,810,810,809,809,809,809,809,809,808,808,808,809,807,807,806,805,805,804,803,803,803,801,801,801,801,801,801,801,799,797,797,797,798,798,798,798,797,797,796,796,796,796,795,794,793,793,793,793,793,793,793,793,793,793,793,793,794,793,793,791,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,790,789,789,789,789,790,790,790,794,794,794,794,794,794,794,794,793,793,793,793,793,792,792,792,792,792,792,791,791,790,790,790,790,790,789,789,789,789,788,788,788,788,787,787,787,787,787,787,787,787,788,788,788,788,788,788,788,788,788,788,788,788],"conda/conda-docs":[7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,9,9,9,9,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,7,6,6,6,6,6,6,6,6,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,4,4,4,4,4,4,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"conda/constructor":[50,50,50,50,50,50,50,50,50,50,49,49,49,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,49,49,49,50,50,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,48,48,48,48,48,48,48,48,48,48,48,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,48,48,48,48,48,48,48,48,48,48,48,48,48,49,49,48,47,47,47,46,46,46,47,47,49,49,50,50,50,50,50,50,49,49,49,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,49,49,49,49,49,49,49,48,48,48,48,48,47,47,47,47,47,47,47,47,47,47,47,46,45,45,45,45,45,44,44,44,43,43,43,43,43,42,42,42,42,42,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,38,38,38,38,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36],"conda/conda-verify":[11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11],"conda/cookiecutter-conda-python":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],"conda/conda-pack":[33,33,33,33,33,33,33,33,33,33,33,33,33,34,34,34,34,34,34,34,34,34,34,34,34,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,35,35,35,35,37,36,36,36,36,36,36,36,36,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,33,33,33,33,33,33,33,33,33,33,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,30,30,30,30,30,30,30,28,28,28,28,28,28,28,28,28,28,28,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,26,26,25,25,25,25,25,25,25,25,25,25,25,25,25,25,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,25,25,25,25,27,26,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,24,24,24,24,24,23,23,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,23,22,22,22,22,20,20,20,20,20,20,20,20,20,20,20,20,20,20,22,22,22,22,22,22,22,23,23,22,22,22,22,21,21,21,21,20,20,20],"conda/conda-package-handling":[11,11,11,11,11,11,11,11,11,11,12,11,11,11,11,11,11,11,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,10,10,10,10,16,16,16,16,16,16,17,17,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15],"conda/clabot-config":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"conda/conda-content-trust":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1],"conda/schemas":[3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1],"conda/ceps":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"conda/infra":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,4,2,2,2,2,2,2,2,2,2,2,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1],"timestamp":[1649656800000,1649570400000,1649484000000,1649397600000,1649311200000,1649224800000,1649138400000,1649052000000,1648965600000,1648879200000,1648792800000,1648706400000,1648620000000,1648533600000,1648447200000,1648360800000,1648274400000,1648188000000,1648101600000,1648015200000,1647928800000,1647842400000,1647756000000,1647669600000,1647583200000,1647496800000,1647410400000,1647324000000,1647237600000,1647151200000,1647064800000,1646978400000,1646892000000,1646805600000,1646719200000,1646632800000,1646546400000,1646460000000,1646373600000,1646287200000,1646200800000,1646114400000,1646028000000,1645941600000,1645855200000,1645768800000,1645682400000,1645596000000,1645509600000,1645423200000,1645336800000,1645250400000,1645164000000,1645077600000,1644904800000,1644818400000,1644732000000,1644645600000,1644559200000,1644472800000,1644386400000,1644300000000,1644213600000,1644127200000,1644040800000,1643954400000,1643868000000,1643781600000,1643695200000,1643608800000,1643522400000,1643436000000,1643349600000,1643263200000,1643176800000,1643090400000,1643004000000,1642917600000,1642831200000,1642744800000,1642658400000,1642572000000,1642485600000,1642399200000,1642312800000,1642226400000,1642140000000,1642053600000,1641967200000,1641880800000,1641794400000,1641708000000,1641621600000,1641535200000,1641448800000,1641362400000,1641276000000,1641189600000,1641103200000,1641016800000,1640930400000,1640844000000,1640757600000,1640671200000,1640584800000,1640498400000,1640412000000,1640325600000,1640239200000,1640152800000,1640066400000,1639980000000,1639893600000,1639807200000,1639720800000,1639634400000,1639548000000,1639461600000,1639375200000,1639288800000,1639202400000,1639116000000,1639029600000,1638943200000,1638856800000,1638770400000,1638684000000,1638597600000,1638511200000,1638424800000,1638338400000,1638252000000,1638165600000,1638079200000,1637992800000,1637906400000,1637820000000,1637733600000,1637647200000,1637560800000,1637474400000,1637388000000,1637301600000,1637215200000,1637128800000,1637042400000,1636956000000,1636869600000,1636783200000,1636696800000,1636610400000,1636524000000,1636437600000,1636351200000,1636261200000,1636174800000,1636088400000,1636002000000,1635915600000,1635829200000,1635742800000,1635656400000,1635570000000,1635483600000,1635397200000,1635310800000,1635224400000,1635138000000,1635051600000,1634965200000,1634878800000,1634792400000,1634706000000,1634619600000,1634533200000,1634446800000,1634360400000,1634274000000,1634187600000,1634101200000,1634014800000,1633928400000,1633842000000,1633755600000,1633669200000,1633582800000,1633496400000,1633410000000,1633323600000,1633237200000,1633150800000,1633064400000,1632978000000,1632891600000,1632805200000,1632718800000,1632632400000,1632546000000,1632459600000,1632373200000,1632286800000,1632200400000,1632114000000,1632027600000,1631941200000,1631854800000,1631768400000,1631682000000,1631595600000,1631509200000,1631422800000,1631336400000,1631250000000,1631163600000,1631077200000,1630990800000,1630904400000,1630818000000,1630731600000,1630645200000,1630558800000,1630472400000,1630386000000,1630299600000,1630213200000,1630126800000,1630040400000,1629954000000,1629867600000,1629781200000,1629694800000,1629608400000,1629522000000,1629435600000,1629349200000,1629262800000,1629176400000,1629090000000,1629003600000,1628917200000,1628830800000,1628744400000,1628658000000,1628571600000,1628485200000,1628398800000,1628312400000,1628226000000,1628139600000,1628053200000,1627966800000,1627880400000,1627794000000,1627707600000,1627621200000,1627534800000,1627448400000,1627362000000,1627275600000,1627189200000,1627102800000,1627016400000,1626930000000,1626843600000,1626757200000,1626670800000,1626584400000,1626498000000,1626411600000,1626325200000,1626238800000,1626152400000,1626066000000,1625979600000,1625893200000,1625806800000,1625720400000,1625634000000,1625547600000,1625461200000,1625374800000,1625288400000,1625202000000,1625115600000,1625029200000,1624942800000,1624856400000,1624770000000,1624683600000,1624597200000,1624510800000,1624424400000,1624338000000,1624251600000,1624165200000,1624078800000,1623992400000,1623906000000,1623819600000,1623733200000,1623646800000,1623560400000,1623474000000,1623387600000,1623301200000,1623214800000,1623128400000,1623042000000,1622955600000,1622869200000,1622782800000,1622696400000,1622610000000,1622523600000,1622437200000,1622350800000,1622264400000,1622178000000,1622091600000,1622005200000,1621918800000,1621832400000,1621746000000,1621659600000,1621573200000,1621486800000,1621400400000,1621314000000,1621227600000,1621141200000,1621054800000,1620968400000,1620882000000,1620795600000,1620709200000,1620622800000,1620536400000,1620450000000,1620363600000,1620277200000,1620190800000,1620104400000,1620018000000,1619931600000,1619845200000,1619758800000,1619672400000,1619586000000,1619499600000,1619413200000,1619326800000,1619240400000,1619154000000,1619067600000,1618981200000,1618894800000,1618808400000,1618722000000,1618635600000,1618549200000,1618462800000,1618376400000,1618290000000,1618203600000,1618117200000,1618030800000],"conda/issue-tracker":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]}; +const year = {"conda/conda":[928,923,923,924,923,920,920,913,914,915,914,914,913,912,912,914,914,913,913,913,912,916,914,912,912,902,901,907,905,904,903,908,905,901,898,908,909,910,918,918,917,918,919,918,921,920,958,959,971,971,971,972,974,971,971,967,966,963,963,964,962,960,959,960,964,964,967,975,978,975,979,986,990,989,999,1018,1047,1076,1103,1145,1146,1149,1149,1147,1145,1144,1146,1145,1143,1143,1142,1142,1143,1145,1147,1146,1146,1146,1147,1146,1148,1148,1149,1157,1155,1162,1162,1187,1193,1253,1253,1320,1330,1334,1332,1332,1331,1329,1328,1329,1326,1327,1326,1325,1321,1322,1323,1324,1324,1324,1322,1321,1320,1323,1320,1322,1328,1327,1327,1333,1331,1341,1423,1511,1511,1517,1522,1518,1515,1516,1516,1517,1517,1522,1520,1518,1519,1521,1523,1525,1522,1517,1516,1528,1528,1529,1529,1533,1541,1541,1541,1541,1540,1540,1540,1537,1535,1535,1533,1536,1536,1536,1534,1533,1533,1534,1537,1538,1543,1542,1541,1540,1539,1541,1551,1620,1626,1626,1625,1625,1625,1623,1621,1615,1615,1615,1615,1609,1619,1630,1630,1632,1633,1634,1633,1631,1627,1627,1632,1631,1636,1641,1648,1658,1679,1707,1750,1807,1810,1810,1806,1803,1803,1802,1799,1794,1792,1789,1789,1789,1789,1789,1788,1795,1796,1791,1792,1788,1788,1787,1784,1783,1783,1782,1782,1782,1784,1783,1784,1780,1780,1780,1778,1778,1779,1778,1775,1774,1772,1772,1773,1773,1772,1772,1771,1771,1771,1770,1770,1771,1771,1770,1769,1769,1769,1769,1768,1767,1765,1764,1763,1762,1762,1760,1757,1754,1752,1754,1754,1751,1749,1751,1748,1748,1748,1750,1746,1746,1747,1746,1746,1747,1745,1742,1742,1743,1744,1750,1805,1883,1962,1964,1966,1966,1966,1966,1967,1968,1967,1966,1966,1966,1966,1968,1965,1963,1962,1962,1962,1961,1961,1960,1959,1960,1960,1958,1958,1956,1955,1955,1954,1955,1954,1954,1953,1951,1950,1946,1957,1956,1953,1949,1947,1944,1941,1941],"conda/menuinst":[13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23],"conda/pycosat":[2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17],"conda/conda-build":[584,585,585,587,589,588,590,595,606,615,615,614,621,624,624,633,633,633,632,632,632,632,632,632,632,632,632,632,632,632,632,633,633,633,634,634,635,637,638,641,644,649,650,661,669,669,685,685,685,685,685,685,685,685,684,683,682,682,682,681,679,679,678,677,677,677,676,676,676,677,677,676,678,678,678,681,689,694,709,720,720,719,719,717,717,717,717,717,716,717,717,718,717,718,718,716,716,715,715,714,714,714,714,714,713,714,714,719,719,736,739,763,764,765,765,765,764,764,763,763,761,761,762,762,761,763,763,763,763,763,763,763,765,765,764,765,766,766,763,764,763,762,785,809,809,810,810,810,809,809,809,807,806,807,806,806,806,807,806,806,805,804,802,802,803,802,802,803,803,804,804,804,804,803,800,800,800,800,800,799,799,798,798,797,797,797,796,796,795,795,795,794,794,794,792,793,793,793,793,792,792,791,791,790,790,790,790,790,790,789,789,791,790,790,791,791,791,791,791,791,791,791,792,793,791,792,792,799,815,835,835,835,834,834,835,834,833,834,835,835,835,835,835,836,836,835,836,836,836,836,834,831,831,831,831,831,831,830,829,828,828,828,828,828,828,827,827,828,828,827,827,826,826,826,826,826,826,826,825,825,825,825,825,825,825,824,824,825,824,824,824,825,825,825,825,825,825,825,825,825,825,825,825,825,826,826,826,826,826,827,827,827,827,827,827,825,825,825,827,828,827,827,827,827,827,827,827,827,827,826,826,826,826,826,826,826,826,826,826,826,825,824,824,825,825,825,825,824,823,823,823,823,823,823,823,821,821,821,821,821,821,820,820,820,820,820],"conda/conda-docs":[19,19,19,19,19,19,19,19,19,19,19,19,19,19,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,19,21,22,22,22,20,20,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,17,17,17,17,17,17,17,17,17,17,17,17,14,14,14,14,14,14,14,14,14,14,14,14,13,13,13,13,13,13,13,13,13,13,13,13,13,11,12,12,12,12,12,12,12,12,12,12,11,11,11,11,11,11,8,8,8,8,8,8,8,8,7,7,7,7,7,8,8,8,8,8,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,7,6,6,6,6,6,6,6,6,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,4,4,4,4,4,4,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"conda/constructor":[13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,12,12,12,12,12,12,13,14,13,13,13,17,18,18,18,18,18,18,18,17,17,17,17,17,17,17,17,17,18,18,18,17,18,18,19,21,21,21,20,20,20,20,20,20,20,20,20,20,20,19,19,19,19,20,22,23,23,23,23,23,24,24,23,23,23,23,23,23,23,23,23,23,23,23,23,24,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,26,26,26,26,26,26,26,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,31,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,50,50,50,49,49,49,48,48,48,48,48,48,48,48,48,48,48,48,49,49,50,50,50,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,48,48,48,48,48,48,48,48,48,48,48,48,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,48,48,48,48,48,48,48,48,48,48,48,48,48,48,49,48,48,47,47,46,46,46,46,47,47,49,49,50,50,50,50,50,50,49,49,49,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,49,49,49,49,49,49,49,48,48,48,48,48,47,47,47,47,47,47,47],"conda/conda-verify":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12],"conda/cookiecutter-conda-python":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],"conda/conda-pack":[17,17,17,18,18,18,18,18,18,18,18,18,16,16,17,17,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,19,19,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,21,21,21,22,22,22,21,21,21,21,21,21,21,21,21,21,21,21,21,22,22,22,22,22,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,22,22,23,23,23,23,23,23,23,23,23,37,37,37,37,37,37,37,37,37,37,36,36,37,37,37,37,36,36,36,36,36,36,36,36,36,36,36,36,36,36,35,33,33,33,33,33,33,33,33,33,33,33,33,33,33,34,34,34,34,34,34,34,34,34,34,34,34,34,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,35,35,35,35,37,36,36,36,36,36,36,36,36,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,33,33,33,33,33,33,33,33,33,33,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31],"conda/conda-package-handling":[6,6,6,6,6,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,13,13,12,12,12,12,12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,11,11,11,17,17,17,17,17,17,17,17,17,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],"conda/conda-content-trust":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],"conda/schemas":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3],"conda/infra":[13,13,13,13,12,11,11,11,11,11,11,11,11,11,11,11,11,11,10,10,9,9,8,8,8,7,7,7,7,7,7,7,7,7,7,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,8,8,8,8,7,7,7,7,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,8,8,8,8,7,6,6,6,6,6,6,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,3,3,3,3,3,3,3,3,3,3,4,5,5,4,3,3,3,2,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"conda/issue-tracker":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"conda/actions":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],"conda/conda-plugin-template":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,2,2,2,2],"timestamp":[1664859600000,1664773200000,1664686800000,1664600400000,1664514000000,1664427600000,1664341200000,1664254800000,1664168400000,1664082000000,1663995600000,1663909200000,1663822800000,1663736400000,1663650000000,1663563600000,1663477200000,1663390800000,1663304400000,1663218000000,1663131600000,1663045200000,1662958800000,1662872400000,1662786000000,1662699600000,1662613200000,1662526800000,1662440400000,1662354000000,1662267600000,1662181200000,1662094800000,1662008400000,1661922000000,1661835600000,1661749200000,1661662800000,1661576400000,1661490000000,1661403600000,1661317200000,1661230800000,1661144400000,1661058000000,1660971600000,1660885200000,1660798800000,1660712400000,1660626000000,1660539600000,1660453200000,1660366800000,1660280400000,1660194000000,1660107600000,1660021200000,1659934800000,1659848400000,1659762000000,1659675600000,1659589200000,1659502800000,1659416400000,1659330000000,1659243600000,1659157200000,1659070800000,1658984400000,1658898000000,1658811600000,1658725200000,1658638800000,1658552400000,1658466000000,1658379600000,1658293200000,1658206800000,1658120400000,1658034000000,1657947600000,1657861200000,1657774800000,1657688400000,1657602000000,1657515600000,1657429200000,1657342800000,1657256400000,1657170000000,1657083600000,1656997200000,1656910800000,1656824400000,1656738000000,1656651600000,1656565200000,1656478800000,1656392400000,1656306000000,1656219600000,1656133200000,1656046800000,1655960400000,1655874000000,1655787600000,1655701200000,1655614800000,1655528400000,1655442000000,1655355600000,1655269200000,1655182800000,1655096400000,1655010000000,1654923600000,1654837200000,1654750800000,1654664400000,1654578000000,1654491600000,1654405200000,1654318800000,1654232400000,1654146000000,1654059600000,1653973200000,1653886800000,1653800400000,1653714000000,1653627600000,1653541200000,1653454800000,1653368400000,1653282000000,1653195600000,1653109200000,1653022800000,1652936400000,1652850000000,1652763600000,1652677200000,1652590800000,1652504400000,1652418000000,1652331600000,1652245200000,1652158800000,1652072400000,1651986000000,1651899600000,1651813200000,1651726800000,1651640400000,1651554000000,1651467600000,1651381200000,1651294800000,1651208400000,1651122000000,1651035600000,1650949200000,1650862800000,1650776400000,1650690000000,1650603600000,1650517200000,1650430800000,1650344400000,1650258000000,1650171600000,1650085200000,1649998800000,1649912400000,1649826000000,1649739600000,1649653200000,1649566800000,1649480400000,1649394000000,1649307600000,1649221200000,1649134800000,1649048400000,1648962000000,1648875600000,1648789200000,1648702800000,1648616400000,1648530000000,1648443600000,1648357200000,1648270800000,1648184400000,1648098000000,1648011600000,1647925200000,1647838800000,1647752400000,1647666000000,1647579600000,1647493200000,1647406800000,1647320400000,1647234000000,1647151200000,1647064800000,1646978400000,1646892000000,1646805600000,1646719200000,1646632800000,1646546400000,1646460000000,1646373600000,1646287200000,1646200800000,1646114400000,1646028000000,1645941600000,1645855200000,1645768800000,1645682400000,1645596000000,1645509600000,1645423200000,1645336800000,1645250400000,1645164000000,1645077600000,1644991200000,1644904800000,1644818400000,1644732000000,1644645600000,1644559200000,1644472800000,1644386400000,1644300000000,1644213600000,1644127200000,1644040800000,1643954400000,1643868000000,1643781600000,1643695200000,1643608800000,1643522400000,1643436000000,1643349600000,1643263200000,1643176800000,1643090400000,1643004000000,1642917600000,1642831200000,1642744800000,1642658400000,1642572000000,1642485600000,1642399200000,1642312800000,1642226400000,1642140000000,1642053600000,1641967200000,1641880800000,1641794400000,1641708000000,1641621600000,1641535200000,1641448800000,1641362400000,1641276000000,1641189600000,1641103200000,1641016800000,1640930400000,1640844000000,1640757600000,1640671200000,1640584800000,1640498400000,1640412000000,1640325600000,1640239200000,1640152800000,1640066400000,1639980000000,1639893600000,1639807200000,1639720800000,1639634400000,1639548000000,1639461600000,1639375200000,1639288800000,1639202400000,1639116000000,1639029600000,1638943200000,1638856800000,1638770400000,1638684000000,1638597600000,1638511200000,1638424800000,1638338400000,1638252000000,1638165600000,1638079200000,1637992800000,1637906400000,1637820000000,1637733600000,1637647200000,1637560800000,1637474400000,1637388000000,1637301600000,1637215200000,1637128800000,1637042400000,1636956000000,1636869600000,1636783200000,1636696800000,1636610400000,1636524000000,1636437600000,1636351200000,1636261200000,1636174800000,1636088400000,1636002000000,1635915600000,1635829200000,1635742800000,1635656400000,1635570000000,1635483600000,1635397200000,1635310800000,1635224400000,1635138000000,1635051600000,1634965200000,1634878800000,1634792400000,1634706000000,1634619600000,1634533200000,1634446800000,1634360400000,1634274000000,1634187600000,1634101200000,1634014800000,1633928400000,1633842000000,1633755600000,1633669200000,1633582800000,1633496400000,1633410000000,1633323600000]}; export default year;