mypy-boto3-connect

Type annotations for boto3 Connect 1.43.34 service generated with mypy-boto3-builder 8.12.0

760 个版本 Python >=3.9
安装
pip install mypy-boto3-connect
poetry add mypy-boto3-connect
pipenv install mypy-boto3-connect
conda install mypy-boto3-connect
描述

mypy-boto3-connect

PyPI - mypy-boto3-connect PyPI - Python Version Docs PyPI - Downloads

boto3.typed

Type annotations for boto3 Connect 1.43.34 compatible with VSCode, PyCharm, Emacs, Sublime Text, mypy, pyright and other tools.

Generated with mypy-boto3-builder 8.12.0.

More information can be found on boto3-stubs page and in mypy-boto3-connect docs.

See how it helps you find and fix potential bugs:

types-boto3 demo

How to install

You can generate type annotations for boto3 package locally with mypy-boto3-builder. Use uv for build isolation.

  1. Run mypy-boto3-builder in your package root directory: uvx --with 'boto3==1.43.34' mypy-boto3-builder
  2. Select boto3-stubs AWS SDK.
  3. Add Connect service.
  4. Use provided commands to install generated packages.

VSCode extension

Add AWS Boto3 extension to your VSCode and run AWS boto3: Quick Start command.

Click Modify and select boto3 common and Connect.

From PyPI with pip

Install boto3-stubs for Connect service.

# install with boto3 type annotations
python -m pip install 'boto3-stubs[connect]'

# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'boto3-stubs-lite[connect]'

# standalone installation
python -m pip install mypy-boto3-connect

How to uninstall

python -m pip uninstall -y mypy-boto3-connect

Usage

VSCode

python -m pip install 'boto3-stubs[connect]'

Both type checking and code completion should now work. No explicit type annotations required, write your boto3 code as usual.

PyCharm

⚠️ Due to slow PyCharm performance on Literal overloads (issue PY-40997), it is recommended to use boto3-stubs-lite until the issue is resolved.

⚠️ If you experience slow performance and high CPU usage, try to disable PyCharm type checker and use mypy or pyright instead.

⚠️ To continue using PyCharm type checker, you can try to replace boto3-stubs with boto3-stubs-lite:

pip uninstall boto3-stubs
pip install boto3-stubs-lite

Install boto3-stubs[connect] in your environment:

python -m pip install 'boto3-stubs[connect]'

Both type checking and code completion should now work.

Emacs

  • Install boto3-stubs with services you use in your environment:
python -m pip install 'boto3-stubs[connect]'
(use-package lsp-pyright
  :ensure t
  :hook (python-mode . (lambda ()
                          (require 'lsp-pyright)
                          (lsp)))  ; or lsp-deferred
  :init (when (executable-find "python3")
          (setq lsp-pyright-python-executable-cmd "python3"))
  )
  • Make sure emacs uses the environment where you have installed boto3-stubs

Type checking should now work. No explicit type annotations required, write your boto3 code as usual.

Sublime Text

  • Install boto3-stubs[connect] with services you use in your environment:
python -m pip install 'boto3-stubs[connect]'

Type checking should now work. No explicit type annotations required, write your boto3 code as usual.

Other IDEs

Not tested, but as long as your IDE supports mypy or pyright, everything should work.

mypy

  • Install mypy: python -m pip install mypy
  • Install boto3-stubs[connect] in your environment:
python -m pip install 'boto3-stubs[connect]'

Type checking should now work. No explicit type annotations required, write your boto3 code as usual.

pyright

  • Install pyright: npm i -g pyright
  • Install boto3-stubs[connect] in your environment:
python -m pip install 'boto3-stubs[connect]'

Optionally, you can install boto3-stubs to typings directory.

Type checking should now work. No explicit type annotations required, write your boto3 code as usual.

Pylint compatibility

It is totally safe to use TYPE_CHECKING flag in order to avoid mypy-boto3-connect dependency in production. However, there is an issue in pylint that it complains about undefined variables. To fix it, set all types to object in non-TYPE_CHECKING mode.

from typing import TYPE_CHECKING

if TYPE_CHECKING:
    from mypy_boto3_ec2 import EC2Client, EC2ServiceResource
    from mypy_boto3_ec2.waiters import BundleTaskCompleteWaiter
    from mypy_boto3_ec2.paginators import DescribeVolumesPaginator
else:
    EC2Client = object
    EC2ServiceResource = object
    BundleTaskCompleteWaiter = object
    DescribeVolumesPaginator = object

...

Explicit type annotations

Client annotations

ConnectClient provides annotations for boto3.client("connect").

from boto3.session import Session

from mypy_boto3_connect import ConnectClient

client: ConnectClient = Session().client("connect")

# now client usage is checked by mypy and IDE should provide code completion

Paginators annotations

mypy_boto3_connect.paginator module contains type annotations for all paginators.

from boto3.session import Session

from mypy_boto3_connect import ConnectClient
from mypy_boto3_connect.paginator import (
    GetMetricDataPaginator,
    ListAgentStatusesPaginator,
    ListApprovedOriginsPaginator,
    ListAttachedFilesConfigurationsPaginator,
    ListAuthenticationProfilesPaginator,
    ListBotsPaginator,
    ListChildHoursOfOperationsPaginator,
    ListContactEvaluationsPaginator,
    ListContactFlowModuleAliasesPaginator,
    ListContactFlowModuleVersionsPaginator,
    ListContactFlowModulesPaginator,
    ListContactFlowVersionsPaginator,
    ListContactFlowsPaginator,
    ListContactReferencesPaginator,
    ListDataTableAttributesPaginator,
    ListDataTablePrimaryValuesPaginator,
    ListDataTableValuesPaginator,
    ListDataTablesPaginator,
    ListDefaultVocabulariesPaginator,
    ListEntitySecurityProfilesPaginator,
    ListEvaluationFormVersionsPaginator,
    ListEvaluationFormsPaginator,
    ListFlowAssociationsPaginator,
    ListHoursOfOperationOverridesPaginator,
    ListHoursOfOperationsPaginator,
    ListInstanceAttributesPaginator,
    ListInstanceStorageConfigsPaginator,
    ListInstancesPaginator,
    ListIntegrationAssociationsPaginator,
    ListLambdaFunctionsPaginator,
    ListLexBotsPaginator,
    ListPhoneNumbersPaginator,
    ListPhoneNumbersV2Paginator,
    ListPredefinedAttributesPaginator,
    ListPromptsPaginator,
    ListQueueQuickConnectsPaginator,
    ListQueuesPaginator,
    ListQuickConnectsPaginator,
    ListRoutingProfileManualAssignmentQueuesPaginator,
    ListRoutingProfileQueuesPaginator,
    ListRoutingProfilesPaginator,
    ListRulesPaginator,
    ListSecurityKeysPaginator,
    ListSecurityProfileApplicationsPaginator,
    ListSecurityProfileFlowModulesPaginator,
    ListSecurityProfilePermissionsPaginator,
    ListSecurityProfilesPaginator,
    ListTaskTemplatesPaginator,
    ListTestCasesPaginator,
    ListTrafficDistributionGroupUsersPaginator,
    ListTrafficDistributionGroupsPaginator,
    ListUseCasesPaginator,
    ListUserHierarchyGroupsPaginator,
    ListUserProficienciesPaginator,
    ListUsersPaginator,
    ListViewVersionsPaginator,
    ListViewsPaginator,
    ListWorkspacePagesPaginator,
    ListWorkspacesPaginator,
    SearchAgentStatusesPaginator,
    SearchAvailablePhoneNumbersPaginator,
    SearchContactFlowModulesPaginator,
    SearchContactFlowsPaginator,
    SearchContactsPaginator,
    SearchDataTablesPaginator,
    SearchHoursOfOperationOverridesPaginator,
    SearchHoursOfOperationsPaginator,
    SearchPredefinedAttributesPaginator,
    SearchPromptsPaginator,
    SearchQueuesPaginator,
    SearchQuickConnectsPaginator,
    SearchResourceTagsPaginator,
    SearchRoutingProfilesPaginator,
    SearchSecurityProfilesPaginator,
    SearchTestCasesPaginator,
    SearchUserHierarchyGroupsPaginator,
    SearchUsersPaginator,
    SearchViewsPaginator,
    SearchVocabulariesPaginator,
    SearchWorkspaceAssociationsPaginator,
    SearchWorkspacesPaginator,
)

client: ConnectClient = Session().client("connect")

# Explicit type annotations are optional here
# Types should be correctly discovered by mypy and IDEs
get_metric_data_paginator: GetMetricDataPaginator = client.get_paginator("get_metric_data")
list_agent_statuses_paginator: ListAgentStatusesPaginator = client.get_paginator(
    "list_agent_statuses"
)
list_approved_origins_paginator: ListApprovedOriginsPaginator = client.get_paginator(
    "list_approved_origins"
)
list_attached_files_configurations_paginator: ListAttachedFilesConfigurationsPaginator = (
    client.get_paginator("list_attached_files_configurations")
)
list_authentication_profiles_paginator: ListAuthenticationProfilesPaginator = client.get_paginator(
    "list_authentication_profiles"
)
list_bots_paginator: ListBotsPaginator = client.get_paginator("list_bots")
list_child_hours_of_operations_paginator: ListChildHoursOfOperationsPaginator = (
    client.get_paginator("list_child_hours_of_operations")
)
list_contact_evaluations_paginator: ListContactEvaluationsPaginator = client.get_paginator(
    "list_contact_evaluations"
)
list_contact_flow_module_aliases_paginator: ListContactFlowModuleAliasesPaginator = (
    client.get_paginator("list_contact_flow_module_aliases")
)
list_contact_flow_module_versions_paginator: ListContactFlowModuleVersionsPaginator = (
    client.get_paginator("list_contact_flow_module_versions")
)
list_contact_flow_modules_paginator: ListContactFlowModulesPaginator = client.get_paginator(
    "list_contact_flow_modules"
)
list_contact_flow_versions_paginator: ListContactFlowVersionsPaginator = client.get_paginator(
    "list_contact_flow_versions"
)
list_contact_flows_paginator: ListContactFlowsPaginator = client.get_paginator("list_contact_flows")
list_contact_references_paginator: ListContactReferencesPaginator = client.get_paginator(
    "list_contact_references"
)
list_data_table_attributes_paginator: ListDataTableAttributesPaginator = client.get_paginator(
    "list_data_table_attributes"
)
list_data_table_primary_values_paginator: ListDataTablePrimaryValuesPaginator = (
    client.get_paginator("list_data_table_primary_values")
)
list_data_table_values_paginator: ListDataTableValuesPaginator = client.get_paginator(
    "list_data_table_values"
)
list_data_tables_paginator: ListDataTablesPaginator = client.get_paginator("list_data_tables")
list_default_vocabularies_paginator: ListDefaultVocabulariesPaginator = client.get_paginator(
    "list_default_vocabularies"
)
list_entity_security_profiles_paginator: ListEntitySecurityProfilesPaginator = client.get_paginator(
    "list_entity_security_profiles"
)
list_evaluation_form_versions_paginator: ListEvaluationFormVersionsPaginator = client.get_paginator(
    "list_evaluation_form_versions"
)
list_evaluation_forms_paginator: ListEvaluationFormsPaginator = client.get_paginator(
    "list_evaluation_forms"
)
list_flow_associations_paginator: ListFlowAssociationsPaginator = client.get_paginator(
    "list_flow_associations"
)
list_hours_of_operation_overrides_paginator: ListHoursOfOperationOverridesPaginator = (
    client.get_paginator("list_hours_of_operation_overrides")
)
list_hours_of_operations_paginator: ListHoursOfOperationsPaginator = client.get_paginator(
    "list_hours_of_operations"
)
list_instance_attributes_paginator: ListInstanceAttributesPaginator = client.get_paginator(
    "list_instance_attributes"
)
list_instance_storage_configs_paginator: ListInstanceStorageConfigsPaginator = client.get_paginator(
    "list_instance_storage_configs"
)
list_instances_paginator: ListInstancesPaginator = client.get_paginator("list_instances")
list_integration_associations_paginator: ListIntegrationAssociationsPaginator = (
    client.get_paginator("list_integration_associations")
)
list_lambda_functions_paginator: ListLambdaFunctionsPaginator = client.get_paginator(
    "list_lambda_functions"
)
list_lex_bots_paginator: ListLexBotsPaginator = client.get_paginator("list_lex_bots")
list_phone_numbers_paginator: ListPhoneNumbersPaginator = client.get_paginator("list_phone_numbers")
list_phone_numbers_v2_paginator: ListPhoneNumbersV2Paginator = client.get_paginator(
    "list_phone_numbers_v2"
)
list_predefined_attributes_paginator: ListPredefinedAttributesPaginator = client.get_paginator(
    "list_predefined_attributes"
)
list_prompts_paginator: ListPromptsPaginator = client.get_paginator("list_prompts")
list_queue_quick_connects_paginator: ListQueueQuickConnectsPaginator = client.get_paginator(
    "list_queue_quick_connects"
)
list_queues_paginator: ListQueuesPaginator = client.get_paginator("list_queues")
list_quick_connects_paginator: ListQuickConnectsPaginator = client.get_paginator(
    "list_quick_connects"
)
list_routing_profile_manual_assignment_queues_paginator: ListRoutingProfileManualAssignmentQueuesPaginator = client.get_paginator(
    "list_routing_profile_manual_assignment_queues"
)
list_routing_profile_queues_paginator: ListRoutingProfileQueuesPaginator = client.get_paginator(
    "list_routing_profile_queues"
)
list_routing_profiles_paginator: ListRoutingProfilesPaginator = client.get_paginator(
    "list_routing_profiles"
)
list_rules_paginator: ListRulesPaginator = client.get_paginator("list_rules")
list_security_keys_paginator: ListSecurityKeysPaginator = client.get_paginator("list_security_keys")
list_security_profile_applications_paginator: ListSecurityProfileApplicationsPaginator = (
    client.get_paginator("list_security_profile_applications")
)
list_security_profile_flow_modules_paginator: ListSecurityProfileFlowModulesPaginator = (
    client.get_paginator("list_security_profile_flow_modules")
)
list_security_profile_permissions_paginator: ListSecurityProfilePermissionsPaginator = (
    client.get_paginator("list_security_profile_permissions")
)
list_security_profiles_paginator: ListSecurityProfilesPaginator = client.get_paginator(
    "list_security_profiles"
)
list_task_templates_paginator: ListTaskTemplatesPaginator = client.get_paginator(
    "list_task_templates"
)
list_test_cases_paginator: ListTestCasesPaginator = client.get_paginator("list_test_cases")
list_traffic_distribution_group_users_paginator: ListTrafficDistributionGroupUsersPaginator = (
    client.get_paginator("list_traffic_distribution_group_users")
)
list_traffic_distribution_groups_paginator: ListTrafficDistributionGroupsPaginator = (
    client.get_paginator("list_traffic_distribution_groups")
)
list_use_cases_paginator: ListUseCasesPaginator = client.get_paginator("list_use_cases")
list_user_hierarchy_groups_paginator: ListUserHierarchyGroupsPaginator = client.get_paginator(
    "list_user_hierarchy_groups"
)
list_user_proficiencies_paginator: ListUserProficienciesPaginator = client.get_paginator(
    "list_user_proficiencies"
)
list_users_paginator: ListUsersPaginator = client.get_paginator("list_users")
list_view_versions_paginator: ListViewVersionsPaginator = client.get_paginator("list_view_versions")
list_views_paginator: ListViewsPaginator = client.get_paginator("list_views")
list_workspace_pages_paginator: ListWorkspacePagesPaginator = client.get_paginator(
    "list_workspace_pages"
)
list_workspaces_paginator: ListWorkspacesPaginator = client.get_paginator("list_workspaces")
search_agent_statuses_paginator: SearchAgentStatusesPaginator = client.get_paginator(
    "search_agent_statuses"
)
search_available_phone_numbers_paginator: SearchAvailablePhoneNumbersPaginator = (
    client.get_paginator("search_available_phone_numbers")
)
search_contact_flow_modules_paginator: SearchContactFlowModulesPaginator = client.get_paginator(
    "search_contact_flow_modules"
)
search_contact_flows_paginator: SearchContactFlowsPaginator = client.get_paginator(
    "search_contact_flows"
)
search_contacts_paginator: SearchContactsPaginator = client.get_paginator("search_contacts")
search_data_tables_paginator: SearchDataTablesPaginator = client.get_paginator("search_data_tables")
search_hours_of_operation_overrides_paginator: SearchHoursOfOperationOverridesPaginator = (
    client.get_paginator("search_hours_of_operation_overrides")
)
search_hours_of_operations_paginator: SearchHoursOfOperationsPaginator = client.get_paginator(
    "search_hours_of_operations"
)
search_predefined_attributes_paginator: SearchPredefinedAttributesPaginator = client.get_paginator(
    "search_predefined_attributes"
)
search_prompts_paginator: SearchPromptsPaginator = client.get_paginator("search_prompts")
search_queues_paginator: SearchQueuesPaginator = client.get_paginator("search_queues")
search_quick_connects_paginator: SearchQuickConnectsPaginator = client.get_paginator(
    "search_quick_connects"
)
search_resource_tags_paginator: SearchResourceTagsPaginator = client.get_paginator(
    "search_resource_tags"
)
search_routing_profiles_paginator: SearchRoutingProfilesPaginator = client.get_paginator(
    "search_routing_profiles"
)
search_security_profiles_paginator: SearchSecurityProfilesPaginator = client.get_paginator(
    "search_security_profiles"
)
search_test_cases_paginator: SearchTestCasesPaginator = client.get_paginator("search_test_cases")
search_user_hierarchy_groups_paginator: SearchUserHierarchyGroupsPaginator = client.get_paginator(
    "search_user_hierarchy_groups"
)
search_users_paginator: SearchUsersPaginator = client.get_paginator("search_users")
search_views_paginator: SearchViewsPaginator = client.get_paginator("search_views")
search_vocabularies_paginator: SearchVocabulariesPaginator = client.get_paginator(
    "search_vocabularies"
)
search_workspace_associations_paginator: SearchWorkspaceAssociationsPaginator = (
    client.get_paginator("search_workspace_associations")
)
search_workspaces_paginator: SearchWorkspacesPaginator = client.get_paginator("search_workspaces")

Literals

mypy_boto3_connect.literals module contains literals extracted from shapes that can be used in user code for type checking.

Full list of Connect Literals can be found in docs.

from mypy_boto3_connect.literals import AccessTypeType


def check_value(value: AccessTypeType) -> bool: ...

Type definitions

mypy_boto3_connect.type_defs module contains structures and shapes assembled to typed dictionaries and unions for additional type checking.

Full list of Connect TypeDefs can be found in docs.

# TypedDict usage example
from mypy_boto3_connect.type_defs import ActionSummaryTypeDef


def get_value() -> ActionSummaryTypeDef:
    return {
        "ActionType": ...,
    }

How it works

Fully automated mypy-boto3-builder carefully generates type annotations for each service, patiently waiting for boto3 updates. It delivers drop-in type annotations for you and makes sure that:

  • All available boto3 services are covered.
  • Each public class and method of every boto3 service gets valid type annotations extracted from botocore schemas.
  • Type annotations include up-to-date documentation.
  • Link to documentation is provided for every method.
  • Code is processed by ruff for readability.

What's new

Implemented features

  • Fully type annotated boto3, botocore, aiobotocore and aioboto3 libraries
  • mypy, pyright, VSCode, PyCharm, Sublime Text and Emacs compatibility
  • Client, ServiceResource, Resource, Waiter Paginator type annotations for each service
  • Generated TypeDefs for each service
  • Generated Literals for each service
  • Auto discovery of types for boto3.client and boto3.resource calls
  • Auto discovery of types for session.client and session.resource calls
  • Auto discovery of types for client.get_waiter and client.get_paginator calls
  • Auto discovery of types for ServiceResource and Resource collections
  • Auto discovery of types for aiobotocore.Session.create_client calls

Latest changes

Builder changelog can be found in Releases.

Versioning

mypy-boto3-connect version is the same as related boto3 version and follows Python Packaging version specifiers.

Thank you

Documentation

All services type annotations can be found in boto3 docs

Support and contributing

This package is auto-generated. Please reports any bugs or request new features in mypy-boto3-builder repository.

版本列表
1.43.34 2026-06-19
1.43.22 2026-06-03
1.43.10 2026-05-18
1.43.7 2026-05-13
1.43.0 2026-04-29
1.42.96 2026-04-24
1.42.91 2026-04-17
1.42.90 2026-04-16
1.42.88 2026-04-10
1.42.85 2026-04-07
1.42.82 2026-04-02
1.42.68 2026-03-13
1.42.63 2026-03-06
1.42.61 2026-03-04
1.42.59 2026-02-27
1.42.52 2026-02-18
1.42.49 2026-02-13
1.42.46 2026-02-10
1.42.39 2026-01-30
1.42.37 2026-01-28
1.42.36 2026-01-27
1.42.34 2026-01-23
1.42.30 2026-01-16
1.42.28 2026-01-14
1.42.19 2025-12-30
1.42.18 2025-12-29
1.42.14 2025-12-19
1.42.10 2025-12-15
1.42.9 2025-12-12
1.42.3 2025-12-04
1.41.2 2025-11-21
1.41.1 2025-11-20
1.41.0 2025-11-19
1.40.76 2025-11-18
1.40.72 2025-11-12
1.40.57 2025-10-22
1.40.52 2025-10-14
1.40.40 2025-09-26
1.40.35 2025-09-19
1.40.27 2025-09-09
1.40.20 2025-08-28
1.40.12 2025-08-18
1.40.7 2025-08-11
1.40.6 2025-08-08
1.40.0 2025-07-31
1.39.0 2025-06-30
1.38.46 2025-06-27
1.38.26 2025-05-29
1.38.7 2025-05-01
1.38.0 2025-04-22
1.37.36 2025-04-17
1.37.10 2025-03-10
1.37.0 2025-02-24
1.36.21 2025-02-14
1.36.17 2025-02-10
1.36.3 2025-01-21
1.36.0 2025-01-15
1.35.93 2025-01-07
1.35.86 2024-12-20
1.35.84 2024-12-18
1.35.80 2024-12-12
1.35.78 2024-12-10
1.35.72 2024-12-02
1.35.70 2024-11-26
1.35.68 2024-11-22
1.35.64 2024-11-18
1.35.52 2024-10-30
1.35.33 2024-10-03
1.35.30 2024-10-01
1.35.13 2024-09-05
1.35.11 2024-09-03
1.35.0 2024-08-16
1.34.158 2024-08-09
1.34.157 2024-08-08
1.34.147 2024-07-23
1.34.145 2024-07-18
1.34.137 2024-07-01
1.34.136 2024-06-28
1.34.116 2024-05-30
1.34.115 2024-05-29
1.34.107 2024-05-16
1.34.105 2024-05-14
1.34.98 2024-05-03
1.34.82 2024-04-10
1.34.67 2024-03-20
1.34.64 2024-03-15
1.34.61 2024-03-12
1.34.29 2024-01-26
1.34.22 2024-01-18
1.34.18 2024-01-12
1.34.14 2024-01-05
1.34.12 2024-01-03
1.34.6 2023-12-21
1.34.2 2023-12-15
1.34.1 2023-12-14
1.34.0 2023-12-13
1.33.9 2023-12-06
1.33.2 2023-11-28
1.33.0 2023-11-28
1.29.3 2023-11-17
1.29.0 2023-11-14
1.28.83 2023-11-09
1.28.81 2023-11-08
1.28.79 2023-11-06
1.28.78 2023-11-03
1.28.77 2023-11-02
1.28.76 2023-11-01
1.28.74 2023-10-30
1.28.68 2023-10-20
1.28.59 2023-10-03
1.28.55 2023-09-26
1.28.49 2023-09-15
1.28.40 2023-09-01
1.28.36 2023-08-28
1.28.24 2023-08-10
1.28.20 2023-08-04
1.28.16 2023-08-01
1.28.15 2023-07-28
1.28.15.post1 2023-07-29
1.28.12 2023-07-27
1.28.5 2023-07-18
1.28.3 2023-07-13
1.28.3.post2 2023-07-15
1.28.3.post1 2023-07-14
1.28.0 2023-07-06
1.27.1 2023-07-05
1.27.0 2023-07-03
1.26.161 2023-06-26
1.26.155 2023-06-16
1.26.151 2023-06-09
1.26.148 2023-06-06
1.26.142 2023-05-26
1.26.140 2023-05-24
1.26.136 2023-05-18
1.26.133 2023-05-11
1.26.127 2023-05-04
1.26.125 2023-05-02
1.26.120 2023-04-25
1.26.118 2023-04-21
1.26.110 2023-04-10
1.26.100 2023-03-27
1.26.88 2023-03-09
1.26.79 2023-02-24
1.26.75 2023-02-20
1.26.69 2023-02-10
1.26.63 2023-02-02
1.26.53 2023-01-19
1.26.50 2023-01-13
1.26.44 2023-01-05
1.26.37 2022-12-23
1.26.36 2022-12-22
1.26.35 2022-12-21
1.26.31 2022-12-15
1.26.24 2022-12-06
1.26.13 2022-11-18
1.26.13.post9 2022-11-18
1.26.13.post8 2022-11-18
1.26.13.post7 2022-11-18
1.26.13.post6 2022-11-18
1.26.13.post5 2022-11-18
1.26.13.post4 2022-11-18
1.26.13.post3 2022-11-18
1.26.13.post2 2022-11-18
1.26.13.post16 2022-11-19
1.26.13.post15 2022-11-19
1.26.13.post14 2022-11-19
1.26.13.post13 2022-11-19
1.26.13.post12 2022-11-19
1.26.13.post11 2022-11-18
1.26.13.post10 2022-11-18
1.26.13.post1 2022-11-18
1.26.11 2022-11-16
1.26.11.post1 2022-11-16
1.26.10 2022-11-15
1.26.6 2022-11-09
1.26.0 2022-11-01
1.26.0.post1 2022-11-01
1.25.5 2022-10-31
1.25.0 2022-10-25
1.24.94 2022-10-19
1.24.90 2022-10-13
1.24.86 2022-10-04
1.24.66 2022-09-02
1.24.56 2022-08-19
1.24.36.post1 2022-07-23
1.24.12 2022-06-17
1.24.3 2022-06-06
1.24.2 2022-06-02
1.24.0 2022-05-31
1.23.0 2022-05-13
1.23.0.post1 2022-05-13
1.22.8 2022-05-06
1.22.3 2022-04-28
1.22.0 2022-04-25
1.22.0.post1 2022-04-25
1.21.44 2022-04-20
1.21.34 2022-04-05
1.21.32 2022-04-01
1.21.31 2022-04-01
1.21.30 2022-03-31
1.21.27 2022-03-27
1.21.23 2022-03-22
1.21.23.post1 2022-03-23
1.21.18 2022-03-11
1.21.13 2022-03-04
1.21.0 2022-02-14
1.20.49 2022-02-07
1.20.46.post1 2022-01-29
1.20.45 2022-01-27
1.20.43 2022-01-25
1.20.40 2022-01-20
1.20.35.post1 2022-01-13
1.20.11 2021-11-22
1.20.5 2021-11-12
1.20.1 2021-11-09
1.20.0 2021-11-08
1.19.12 2021-11-05
1.19.12.post1 2022-03-31
1.19.11 2021-11-05
1.19.10 2021-11-04
1.19.9 2021-11-02
1.19.8 2021-11-01
1.19.7 2021-10-29
1.19.6 2021-10-28
1.19.5 2021-10-27
1.19.4 2021-10-26
1.19.3 2021-10-25
1.19.2 2021-10-22
1.19.1 2021-10-21
1.19.1.post1 2021-10-22
1.19.0 2021-10-20
1.18.65 2021-10-19
1.18.64 2021-10-18
1.18.63 2021-10-15
1.18.62 2021-10-14
1.18.61 2021-10-13
1.18.60 2021-10-12
1.18.59 2021-10-11
1.18.58 2021-10-08
1.18.57 2021-10-07
1.18.56 2021-10-06
1.18.55 2021-10-05
1.18.54 2021-10-04
1.18.53 2021-10-01
1.18.52 2021-09-30
1.18.51 2021-09-29
1.18.50 2021-09-28
1.18.49 2021-09-27
1.18.48 2021-09-24
1.18.47 2021-09-23
1.18.46 2021-09-22
1.18.45 2021-09-21
1.18.44 2021-09-17
1.18.43 2021-09-16
1.18.42 2021-09-14
1.18.41 2021-09-13
1.18.40 2021-09-10
1.18.39 2021-09-09
1.18.38 2021-09-08
1.18.37 2021-09-07
1.18.36 2021-09-03
1.18.35 2021-09-02
1.18.34 2021-09-01
1.18.33 2021-08-31
1.18.32 2021-08-30
1.18.31 2021-08-27
1.18.30 2021-08-26
1.18.29 2021-08-25
1.18.28 2021-08-24
1.18.27 2021-08-23
1.18.26 2021-08-20
1.18.25 2021-08-19
1.18.24 2021-08-18
1.18.23 2021-08-17
1.18.22 2021-08-16
1.18.21 2021-08-13
1.18.20 2021-08-12
1.18.19 2021-08-11
1.18.18 2021-08-10
1.18.17 2021-08-09
1.18.16 2021-08-06
1.18.15 2021-08-05
1.18.14 2021-08-04
1.18.13 2021-08-03
1.18.12 2021-08-02
1.18.11 2021-07-30
1.18.10 2021-07-29
1.18.9 2021-07-28
1.18.8 2021-07-27
1.18.7 2021-07-26
1.18.6 2021-07-23
1.18.5 2021-07-22
1.18.4 2021-07-21
1.18.3 2021-07-20
1.18.2 2021-07-19
1.18.1 2021-07-16
1.18.0 2021-07-15
1.17.112 2021-07-14
1.17.111 2021-07-13
1.17.110 2021-07-12
1.17.109 2021-07-09
1.17.108 2021-07-08
1.17.107 2021-07-07
1.17.106 2021-07-06
1.17.105 2021-07-02
1.17.104 2021-07-01
1.17.103 2021-06-30
1.17.103.post1 2021-07-01
1.17.102 2021-06-28
1.17.102.post1 2021-06-29
1.17.101 2021-06-25
1.17.101.post2 2021-06-29
1.17.101.post1 2021-06-28
1.17.100 2021-06-24
1.17.99 2021-06-23
1.17.98 2021-06-21
1.17.97 2021-06-17
1.17.96 2021-06-16
1.17.95 2021-06-15
1.17.94 2021-06-14
1.17.93 2021-06-11
1.17.92 2021-06-10
1.17.92.post1 2021-06-11
1.17.91 2021-06-09
1.17.90 2021-06-08
1.17.90.post1 2021-06-09
1.17.89 2021-06-07
1.17.88 2021-06-04
1.17.88.post1 2021-06-07
1.17.87 2021-06-03
1.17.86 2021-06-02
1.17.85 2021-06-01
1.17.84 2021-05-28
1.17.83 2021-05-27
1.17.82 2021-05-27
1.17.81 2021-05-26
1.17.80 2021-05-25
1.17.79 2021-05-24
1.17.78 2021-05-21
1.17.77 2021-05-20
1.17.76 2021-05-19
1.17.75 2021-05-18
1.17.74 2021-05-17
1.17.73 2021-05-14
1.17.72 2021-05-12
1.17.72.post1 2021-05-14
1.17.71 2021-05-11
1.17.71.post1 2021-05-12
1.17.70 2021-05-10
1.17.70.post2 2021-05-10
1.17.70.post1 2021-05-10
1.17.69.0 2021-05-07
1.17.69.0.post1 2021-05-11
1.17.68.0 2021-05-06
1.17.67.0 2021-05-05
1.17.66.0 2021-05-05
1.17.65.0 2021-05-04
1.17.64.2 2021-05-04
1.17.64.1 2021-05-03
1.17.63.1 2021-05-04
1.17.63.0 2021-05-04
1.17.62.1 2021-05-03
1.17.62.0 2021-04-30
1.17.61.1 2021-05-04
1.17.61.0 2021-04-29
1.17.60.1 2021-04-29
1.17.60.0 2021-04-28
1.17.59.0 2021-04-27
1.17.58.0 2021-04-27
1.17.57.0 2021-04-23
1.17.56.0 2021-04-22
1.17.55.0 2021-04-21
1.17.54.0 2021-04-19
1.17.53.1 2021-04-16
1.17.53.0 2021-04-15
1.17.52.0 2021-04-15
1.17.51.0 2021-04-13
1.17.50.1 2021-04-13
1.17.50.0 2021-04-12
1.17.49.0 2021-04-09
1.17.48.0 2021-04-08
1.17.47.0 2021-04-07
1.17.46.0 2021-04-06
1.17.45.0 2021-04-05
1.17.44.0 2021-04-02
1.17.43.0 2021-04-01
1.17.42.0 2021-03-31
1.17.41.0 2021-03-30
1.17.40.0 2021-03-29
1.17.39.0 2021-03-26
1.17.38.0 2021-03-26
1.17.37.0 2021-03-25
1.17.36.0 2021-03-24
1.17.35.0 2021-03-23
1.17.34.0 2021-03-22
1.17.33.0 2021-03-19
1.17.32.0 2021-03-19
1.17.31.0 2021-03-18
1.17.30.0 2021-03-17
1.17.29.0 2021-03-16
1.17.28.0 2021-03-15
1.17.27.0 2021-03-12
1.17.26.0 2021-03-11
1.17.25.0 2021-03-11
1.17.24.0 2021-03-09
1.17.23.0 2021-03-08
1.17.22.0 2021-03-06
1.17.21.0 2021-03-04
1.17.20.0 2021-03-03
1.17.19.0 2021-03-02
1.17.18.0 2021-03-01
1.17.17.0 2021-02-26
1.17.16.0 2021-02-25
1.17.15.0 2021-02-24
1.17.14.0 2021-02-23
1.17.13.0 2021-02-22
1.17.12.0 2021-02-19
1.17.11.0 2021-02-18
1.17.10.0 2021-02-17
1.17.9.0 2021-02-16
1.17.8.0 2021-02-15
1.17.7.0 2021-02-12
1.17.6.0 2021-02-11
1.17.5.0 2021-02-09
1.17.4.0 2021-02-08
1.17.3.0 2021-02-05
1.17.2.1 2021-02-05
1.17.2.0 2021-02-05
1.17.1.0 2021-02-03
1.17.0.0 2021-02-02
1.16.63.0 2021-01-29
1.16.62.0 2021-01-28
1.16.61.0 2021-01-27
1.16.60.0 2021-01-26
1.16.59.0 2021-01-22
1.16.58.0 2021-01-21
1.16.57.0 2021-01-19
1.16.56.0 2021-01-15
1.16.55.0 2021-01-14
1.16.54.0 2021-01-13
1.16.53.0 2021-01-12
1.16.52.0 2021-01-11
1.16.51.0 2021-01-07
1.16.50.0 2021-01-06
1.16.49.0 2021-01-05
1.16.48.0 2021-01-04
1.16.47.0 2020-12-31
1.16.46.0 2020-12-30
1.16.45.0 2020-12-29
1.16.44.0 2020-12-28
1.16.43.0 2020-12-23
1.16.42.0 2020-12-22
1.16.41.0 2020-12-21
1.16.40.0 2020-12-18
1.16.39.1 2020-12-18
1.16.39.0 2020-12-17
1.16.38.0 2020-12-17
1.16.37.0 2020-12-15
1.16.36.0 2020-12-14
1.16.35.0 2020-12-11
1.16.34.0 2020-12-10
1.16.33.0 2020-12-09
1.16.32.0 2020-12-09
1.16.31.1 2020-12-09
1.16.31.0 2020-12-08
1.16.30.0 2020-12-04
1.16.29.0 2020-12-03
1.16.28.1 2020-12-03
1.16.28.0 2020-12-02
1.16.27.0 2020-12-01
1.16.26.1 2020-12-01
1.16.26.0 2020-12-01
1.16.25.0 2020-11-24
1.16.24.0 2020-11-23
1.16.23.1 2020-11-23
1.16.23.0 2020-11-20
1.16.22.0 2020-11-19
1.16.21.0 2020-11-18
1.16.20.0 2020-11-17
1.16.19.0 2020-11-16
1.16.18.0 2020-11-13
1.16.17.0 2020-11-12
1.16.16.0 2020-11-11
1.16.15.0 2020-11-10
1.16.14.0 2020-11-09
1.16.13.0 2020-11-06
1.16.12.0 2020-11-05
1.16.11.0 2020-11-04
1.16.10.0 2020-11-02
1.16.9.0 2020-10-30
1.16.8.0 2020-10-29
1.16.7.0 2020-10-28
1.16.6.0 2020-10-27
1.16.5.1 2020-10-27
1.16.5.0 2020-10-26
1.16.4.0 2020-10-23
1.16.3.0 2020-10-22
1.16.2.0 2020-10-21
1.16.1.0 2020-10-20
1.16.0.0 2020-10-19
1.15.18.0 2020-10-16
1.15.17.0 2020-10-15
1.15.16.0 2020-10-09
1.15.15.0 2020-10-08
1.15.14.0 2020-10-07
1.15.13.1 2020-10-07
1.15.13.0 2020-10-06
1.15.12.1 2020-10-06
1.15.12.0 2020-10-05
1.15.11.0 2020-10-02
1.15.10.0 2020-10-01
1.15.9.0 2020-09-30
1.15.8.0 2020-09-29
1.15.7.0 2020-09-29
1.15.6.0 2020-09-25
1.15.5.0 2020-09-24
1.15.4.0 2020-09-23
1.15.3.0 2020-09-22
1.15.2.0 2020-09-22
1.15.1.0 2020-09-18
1.15.0.0 2020-09-17
1.14.63.0 2020-09-16
1.14.62.0 2020-09-15
1.14.61.0 2020-09-15
1.14.60.0 2020-09-11
1.14.59.1 2020-09-11
1.14.59.0 2020-09-10
1.14.58.0 2020-09-09
1.14.57.0 2020-09-08
1.14.56.0 2020-09-04
1.14.55.2 2020-09-04
1.14.55.1 2020-09-04
1.14.55.0 2020-09-03
1.14.54.1 2020-09-03
1.14.54.0 2020-09-02
1.14.53.0 2020-09-01
1.14.52.1 2020-08-31
1.14.52.0 2020-08-31
1.14.51.1 2020-08-31
1.14.51.0 2020-08-28
1.14.50.0 2020-08-27
1.14.49.0 2020-08-26
1.14.48.0 2020-08-24
1.14.47.0 2020-08-20
1.14.46.0 2020-08-19
1.14.45.0 2020-08-18
1.14.44.0 2020-08-17
1.14.43.0 2020-08-14
1.14.42.0 2020-08-13
1.14.41.0 2020-08-12
1.14.40.0 2020-08-11
1.14.39.0 2020-08-10
1.14.38.0 2020-08-08
1.14.37.0 2020-08-06
1.14.36.0 2020-08-05
1.14.35.0 2020-08-04
1.14.34.0 2020-08-04
1.14.33.0 2020-07-31
1.14.32.0 2020-07-30
1.14.31.0 2020-07-29
1.14.30.0 2020-07-28
1.14.29.0 2020-07-27
1.14.28.0 2020-07-24
1.14.27.0 2020-07-23
1.14.26.0 2020-07-22
1.14.25.0 2020-07-21
1.14.24.0 2020-07-20
1.14.23.0 2020-07-17
1.14.22.0 2020-07-16
1.14.21.0 2020-07-15
1.14.20.0 2020-07-09
1.14.19.0 2020-07-08
1.14.18.0 2020-07-07
1.14.17.0 2020-07-06
1.14.16.0 2020-07-02
1.14.15.0 2020-07-01
1.14.14.0 2020-06-30
1.14.13.0 2020-06-29
1.14.12.0 2020-06-27
1.14.11.0 2020-06-25
1.14.10.0 2020-06-24
1.14.9.0 2020-06-23
1.14.8.0 2020-06-22
1.14.7.0 2020-06-19
1.14.6.0 2020-06-18
1.14.5.0 2020-06-17
1.14.4.0 2020-06-16
1.14.3.0 2020-06-15
1.14.2.0 2020-06-12
1.14.1.0 2020-06-11
1.14.0.2 2020-06-11
1.14.0.1 2020-06-11
1.14.0.0 2020-06-10
1.13.26.2 2020-06-09
1.13.26.1 2020-06-09
1.13.26.0 2020-06-09
1.13.25.0 2020-06-09
1.13.24.3 2020-06-09
1.13.24.2 2020-06-06
1.13.24.1 2020-06-06
1.13.24.0 2020-06-05
1.13.23.0 2020-06-04
1.13.22.0 2020-06-03
1.13.21.0 2020-06-02
1.13.20.0 2020-06-01
1.13.19.0 2020-05-28
1.13.18.0 2020-05-27
1.13.17.0 2020-05-26
1.13.16.0 2020-05-22
1.13.15.0 2020-05-21
1.13.14.0 2020-05-20
1.13.13.0 2020-05-19
1.13.12.0 2020-05-18
1.13.11.0 2020-05-15
1.13.10.0 2020-05-14
1.13.9.0 2020-05-13
1.13.8.0 2020-05-12
1.13.7.0 2020-05-11
1.13.6.0 2020-05-08
1.13.5.0 2020-05-07
1.13.4.0 2020-05-06
1.13.3.0 2020-05-05
1.13.2.0 2020-05-04
1.13.1.1 2020-05-03
1.13.1.0 2020-05-01
1.13.0.0 2020-04-30
1.12.49.0 2020-04-29
1.12.48.0 2020-04-28
1.12.47.0 2020-04-27
1.12.46.0 2020-04-24
1.12.45.0 2020-04-23
1.12.44.0 2020-04-22
1.12.43.0 2020-04-21
1.12.42.0 2020-04-20
1.12.41.0 2020-04-17
1.12.40.0 2020-04-16
1.12.39.1 2020-04-08
1.12.39.0 2020-04-08
1.12.38.0 2020-04-07
1.12.37.0 2020-04-06
1.12.36.0 2020-04-03
1.12.35.0 2020-04-02
1.12.34.0 2020-04-01
1.12.33.0 2020-03-31
1.12.32.0 2020-03-30
1.12.31.0 2020-03-27
1.12.30.0 2020-03-26
1.12.29.0 2020-03-25
1.12.28.1 2020-03-25
1.12.28.0 2020-03-24
1.12.27.0 2020-03-23
1.12.26.0 2020-03-20
1.12.25.0 2020-03-19
1.12.24.0 2020-03-18
1.12.23.0 2020-03-17
1.12.22.0 2020-03-16
1.12.21.0 2020-03-13
1.12.20.0 2020-03-12
1.12.19.0 2020-03-11
1.12.18.0 2020-03-10
1.12.17.1 2020-03-10
1.12.17.0 2020-03-09
1.12.16.0 2020-03-06
1.12.15.0 2020-03-05
1.12.14.1 2020-03-05
1.12.14.0 2020-03-04
1.12.13.0 2020-03-04
1.12.12.0 2020-03-02
1.12.11.0 2020-02-29
1.12.10.0 2020-02-28
1.12.9.0 2020-02-27
1.12.8.1 2020-02-27
1.12.8.0 2020-02-26
1.12.7.0 2020-02-26
1.12.6.0 2020-02-24
1.12.5.0 2020-02-21
1.12.4.0 2020-02-21
1.12.3.1 2020-02-19
1.12.3.0 2020-02-19
1.12.2.0 2020-02-18
1.12.1.0 2020-02-17
1.12.0.0 2020-02-14
1.11.17.1 2020-02-14
1.11.17.0 2020-02-13
1.11.16.0 2020-02-12
1.11.15.0 2020-02-11
1.11.14.0 2020-02-10
1.11.13.0 2020-02-07
1.11.12.0 2020-02-06
1.11.11.0 2020-02-05
1.11.10.0 2020-02-04
1.11.9.0 2020-01-24
1.11.8.0 2020-01-23
1.11.7.2 2020-01-23
1.11.7.1 2020-01-23
1.11.7.0 2020-01-21
1.11.6.0 2020-01-20
1.11.5.0 2020-01-17
1.11.4.0 2020-01-17
1.11.3.0 2020-01-15
1.11.2.1 2020-01-15
1.11.2.0 2020-01-14
1.11.1.1 2020-01-14
1.11.1.0 2020-01-13
1.11.0.1 2020-01-11
1.11.0.0 2020-01-10
1.10.50.3 2020-01-10
1.10.50.2 2020-01-10
1.10.50.1 2020-01-10
1.10.50.0 2020-01-09
1.10.49.1 2020-01-08
1.10.49.0 2020-01-08
1.10.48.0 2020-01-07
1.10.47.0 2020-01-06
1.10.46.0 2020-01-02
1.10.45.0 2019-12-23
1.10.44.0 2019-12-20
1.10.43.1 2019-12-20
1.10.43.0 2019-12-19
1.10.42.1 2019-12-19
1.10.42.0 2019-12-18
1.10.41.0 2019-12-18
1.10.40.2 2019-12-18
1.10.40.1 2019-12-17
1.10.40.0 2019-12-16
1.10.39.6 2019-12-16
1.10.39.5 2019-12-14
1.10.39.4 2019-12-14
1.10.39.3 2019-12-14
1.10.39.2 2019-12-14
1.10.39.1 2019-12-14
1.10.39.0 2019-12-13
1.10.38.2 2019-12-13
1.10.38.1 2019-12-13
1.10.38.0 2019-12-12
1.10.37.1 2019-12-12
1.10.37.0 2019-12-12
1.10.36.1 2019-12-12
1.10.36.0 2019-12-10
1.10.35.0 2019-12-09
1.10.34.1 2019-12-08
1.10.34 2019-12-06
1.10.33 2019-12-05
1.10.32 2019-12-04
1.10.31 2019-12-03
1.10.30 2019-12-03
1.10.28 2019-11-27
0.2.9 2019-11-26
0.2.8 2019-11-26
0.2.7 2019-11-22
0.2.6 2019-11-22
0.2.5 2019-11-20
0.2.2 2019-11-18
0.2.1 2019-11-15
0.2.0 2019-11-15
0.1.10 2019-11-11
0.1.9 2019-11-11
0.1.8 2019-11-10
0.1.7 2019-11-09
0.1.6 2019-11-09